[gentoo-commits] repo/gentoo:master commit in: app-emulation/fuse/

2022-06-28 Thread Marek Szuba
commit: c5813fd2500fbdbbed222ec610da6975d7baf1de
Author: Marek Szuba  gentoo  org>
AuthorDate: Wed Jun 29 06:52:29 2022 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Wed Jun 29 06:52:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5813fd2

app-emulation/fuse: filter out LTO flags

Closes: https://bugs.gentoo.org/854522
Signed-off-by: Marek Szuba  gentoo.org>

 app-emulation/fuse/fuse-1.6.0.ebuild | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/app-emulation/fuse/fuse-1.6.0.ebuild 
b/app-emulation/fuse/fuse-1.6.0.ebuild
index aec3885d7c5a..0cd318ba0934 100644
--- a/app-emulation/fuse/fuse-1.6.0.ebuild
+++ b/app-emulation/fuse/fuse-1.6.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-inherit autotools xdg
+inherit autotools flag-o-matic xdg
 
 DESCRIPTION="Free Unix Spectrum Emulator by Philip Kendall"
 HOMEPAGE="http://fuse-emulator.sourceforge.net";
@@ -66,6 +66,9 @@ _fuse_audio_driver() {
 src_prepare() {
xdg_src_prepare
eautoreconf
+
+   # Bug #854522
+   filter-lto
 }
 
 src_configure() {



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

2022-06-28 Thread Florian Schmaus
commit: 9fa13744b8265023142ad7050fa67cce67ce29fa
Author: Florian Schmaus  gentoo  org>
AuthorDate: Fri Jun 24 19:58:21 2022 +
Commit: Florian Schmaus  gentoo  org>
CommitDate: Wed Jun 29 06:45:21 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fa13744

java-vm-2.eclass: use "eselect java-vm update" if available

Note that IDEPEND="app-eselect/eselect-java" is not absolutely
perfect. This is for two reasons. First, IDEPEND is an EAPI 8 feature,
while the java-vm-2.eclass currently also supports older EAPIs. However,
in those older EAPIs there is no equivalent of IDEPEND. Furthermore,
even with EAPIs supporting IDEPEND, while the install-time dependencies
specified with IDEPEND are allowed to be called in pkg_preinst and
pkg_postinst, the Package Manger Specification (PMS) stats that for the
pkg_*rm phases, "ebuilds … must not rely on them being available" [1].
And the java-vm-2.eclass only calls "eselect java-vm update" in
pkg_postrm. Therefore, a PMS adhering package manager is able to unmerge
IDEPEND packages before any of the pkg_*rm phases are invoked.

However, declaring an IDEPEND on eselect-java is the next best thing we
can do. Also, a typical package manager will likely not pro-actively
remove IDEPEND dependencies, so those are available in the pkg_*rm
phases. And since there is no harm in stating the IDEPEND, we declare
it.

Thanks to Mike Gilbert (floppym) for valuable feedback.

1: PMS 2021-06-13 § 8.1 Dependency Classes - 
https://projects.gentoo.org/pms/8/pms.html#x1-720008.1

Closes: https://bugs.gentoo.org/853928
Signed-off-by: Florian Schmaus  gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/26069

 eclass/java-vm-2.eclass | 30 --
 1 file changed, 28 insertions(+), 2 deletions(-)

diff --git a/eclass/java-vm-2.eclass b/eclass/java-vm-2.eclass
index 8196b1cdc72a..ad814d7efd1a 100644
--- a/eclass/java-vm-2.eclass
+++ b/eclass/java-vm-2.eclass
@@ -25,6 +25,7 @@ RDEPEND="
 "
 DEPEND="${RDEPEND}"
 BDEPEND="app-arch/unzip"
+IDEPEND="app-eselect/eselect-java"
 
 if [[ ${EAPI} == 6 ]]; then
DEPEND+=" ${BDEPEND}"
@@ -88,14 +89,35 @@ java-vm-2_pkg_postinst() {
xdg_desktop_database_update
 }
 
+# @FUNCTION: has_eselect_java-vm_update
+# @INTERNAL
+# @DESCRIPTION:
+# Checks if an eselect-java version providing "eselect java-vm update"
+# is available.
+# @RETURN: 0 if >=app-eselect/eselect-java-0.5 is installed, 1 otherwise.
+has_eselect_java-vm_update() {
+   local has_version_args="-b"
+   if [[ ${EAPI} == 6 ]]; then
+   has_version_args="--host-root"
+   fi
+
+   has_version "${has_version_args}" ">=app-eselect/eselect-java-0.5"
+}
 
 # @FUNCTION: java-vm-2_pkg_prerm
 # @DESCRIPTION:
 # default pkg_prerm
 #
-# Warn user if removing system-vm.
+# Does nothing if eselect-java-0.5 or newer is available.  Otherwise,
+# warn user if removing system-vm.
 
 java-vm-2_pkg_prerm() {
+   if has_eselect_java-vm_update; then
+   # We will potentially switch to a new Java system VM in
+   # pkg_postrm().
+   return
+   fi
+
if [[ $(GENTOO_VM= java-config -f 2>/dev/null) == ${VMHANDLE} && -z 
${REPLACED_BY_VERSION} ]]; then
ewarn "It appears you are removing your system-vm! Please run"
ewarn "\"eselect java-vm list\" to list available VMs, then use"
@@ -108,10 +130,14 @@ java-vm-2_pkg_prerm() {
 # @DESCRIPTION:
 # default pkg_postrm
 #
-# Update mime database.
+# Invoke "eselect java-vm update" if eselect-java 0.5, or newer, is
+# available.  Also update the mime database.
 
 java-vm-2_pkg_postrm() {
xdg_desktop_database_update
+   if has_eselect_java-vm_update; then
+   eselect java-vm update
+   fi
 }
 
 



[gentoo-commits] repo/gentoo:master commit in: acct-group/nsd/, net-libs/libetpan/, dev-util/samurai/, ...

2022-06-28 Thread Joonas Niilola
commit: c11778deadb1a0ddca20a0c42eeb405e2d835c56
Author: Joonas Niilola  gentoo  org>
AuthorDate: Wed Jun 29 06:19:45 2022 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed Jun 29 06:29:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c11778de

*/*: reassign polynomial-c's packages

Signed-off-by: Joonas Niilola  gentoo.org>

 acct-group/at/metadata.xml| 4 
 acct-group/crontab/metadata.xml   | 5 +
 acct-group/gkrellmd/metadata.xml  | 5 +
 acct-group/icecast/metadata.xml   | 5 +
 acct-group/lightdm/metadata.xml   | 5 +
 acct-group/msmtpd/metadata.xml| 5 +
 acct-group/murmur/metadata.xml| 5 +
 acct-group/nsd/metadata.xml   | 5 +
 acct-group/pdnsd/metadata.xml | 5 +
 acct-group/roccat/metadata.xml| 5 +
 acct-group/uptimed/metadata.xml   | 5 +
 acct-group/vboxguest/metadata.xml | 5 +
 acct-group/vboxsf/metadata.xml| 5 +
 acct-group/vboxusers/metadata.xml | 5 +
 acct-user/at/metadata.xml | 4 
 acct-user/gkrellmd/metadata.xml   | 5 +
 acct-user/icecast/metadata.xml| 5 +
 acct-user/lightdm/metadata.xml| 5 +
 acct-user/murmur/metadata.xml | 5 +
 acct-user/nsd/metadata.xml| 5 +
 acct-user/pdnsd/metadata.xml  | 5 +
 acct-user/uptimed/metadata.xml| 5 +
 acct-user/vboxguest/metadata.xml  | 5 +
 app-admin/gkrellm/metadata.xml| 5 +
 app-admin/keepassxc/metadata.xml  | 5 +
 app-admin/monit/metadata.xml  | 4 
 app-admin/whowatch/metadata.xml   | 5 +
 app-arch/lziprecover/metadata.xml | 4 
 app-arch/pbzip2/metadata.xml  | 5 +
 app-crypt/gpa/metadata.xml| 5 +
 app-editors/nano/metadata.xml | 5 +
 app-editors/notepadqq/metadata.xml| 5 +
 app-emulation/virtualbox-additions/metadata.xml   | 5 +
 app-emulation/virtualbox-extpack-oracle/metadata.xml  | 5 +
 app-emulation/virtualbox-guest-additions/metadata.xml | 5 +
 app-emulation/virtualbox-modules/metadata.xml | 5 +
 app-emulation/virtualbox/metadata.xml | 5 +
 app-misc/g15composer/metadata.xml | 4 
 app-misc/g15daemon/metadata.xml   | 4 
 app-misc/g15macro/metadata.xml| 4 
 app-misc/g15message/metadata.xml  | 4 
 app-misc/g15stats/metadata.xml| 4 
 app-misc/mc/metadata.xml  | 4 
 app-misc/piper/metadata.xml   | 4 
 app-misc/razertool/metadata.xml   | 4 
 app-misc/reptyr/metadata.xml  | 4 
 app-misc/uptimed/metadata.xml | 5 +
 app-shells/fish/metadata.xml  | 4 
 app-shells/rush/metadata.xml  | 5 +
 app-shells/zsh/metadata.xml   | 5 +
 app-text/convmv/metadata.xml  | 5 +
 app-text/ding/metadata.xml| 5 +
 dev-libs/apr-util/metadata.xml| 5 +
 dev-libs/apr/metadata.xml | 5 +
 dev-libs/icu-le-hb/metadata.xml   | 4 
 dev-libs/libassuan/metadata.xml   | 5 +
 dev-libs/libbytesize/metadata.xml | 5 +
 dev-libs/libfilezilla/metadata.xml| 4 
 dev-libs/libg15/metadata.xml  | 4 
 dev-libs/libg15render/metadata.xml| 4 
 dev-libs/libgaminggear/metadata.xml   | 5 +
 dev-libs/libgnt/metadata.xml  | 5 +
 dev-libs/libgpg-error/metadata.xml| 5 +
 dev-libs/libinput/metadata.xml| 4 
 dev-libs/libjcat/metadata.xml | 4 
 dev-libs/libksba/metadata.xml | 5 +
 dev-libs/libp11/metadata.xml  | 5 +
 dev-libs/libratbag/metadata.xml   | 4 
 dev-libs/libxmlb/metadata.xml | 5 +
 dev-libs/volume_key/metadata.xml  | 5 +
 dev-python/pocketlint/metadata.xml| 5 +
 dev-util/geany/metadata.x

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

2022-06-28 Thread Joonas Niilola
commit: 09603f89bf600f533e18fbc4e5389f870bc3f82a
Author: Joonas Niilola  gentoo  org>
AuthorDate: Wed Jun 29 06:24:26 2022 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed Jun 29 06:29:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09603f89

dev-util/samurai: update maintainers

Signed-off-by: Joonas Niilola  gentoo.org>

 dev-util/samurai/metadata.xml | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/dev-util/samurai/metadata.xml b/dev-util/samurai/metadata.xml
index e34e6ba28c16..a9f67d7d81f5 100644
--- a/dev-util/samurai/metadata.xml
+++ b/dev-util/samurai/metadata.xml
@@ -1,9 +1,13 @@
 
 https://www.gentoo.org/dtd/metadata.dtd";>
 
-   
+   
or...@riseup.net

+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   

michaelforney/samurai




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

2022-06-28 Thread Michał Górny
commit: ba6e0717ac8457b3b5b78a24abbea6b96d6083a4
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 29 05:51:22 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 29 06:19:25 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba6e0717

dev-python/trove-classifiers: Bump to 2022.6.26

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

 dev-python/trove-classifiers/Manifest  |  1 +
 .../trove-classifiers-2022.6.26.ebuild | 34 ++
 2 files changed, 35 insertions(+)

diff --git a/dev-python/trove-classifiers/Manifest 
b/dev-python/trove-classifiers/Manifest
index ff70d51e74ac..4132c262b12f 100644
--- a/dev-python/trove-classifiers/Manifest
+++ b/dev-python/trove-classifiers/Manifest
@@ -1 +1,2 @@
 DIST trove-classifiers-2022.6.23.gh.tar.gz 14950 BLAKE2B 
7203b8edb6f8a8886371a60f3c273b02b7fe045230a3a0c89a7282a896e513535a47fe06834fd6e33b98c480695b69be524dea1402f463f3c82fc80ddf8ac320
 SHA512 
c2c186b5d13f626a43f29a1eff6ebf2f17f8240af554f27ffdf05b506d428dd59582e7357a85b62f94714e024ae98ea216487726526639371c24c6b46b96df4e
+DIST trove-classifiers-2022.6.26.gh.tar.gz 14966 BLAKE2B 
360a8a01d710456a7edf2f56ce5ca4645e0f5e79db09087a888556e6555a15fd6f6b0aa3112bf0f6c2652759fce93e76357775ca57e53615dd99c4f1b929303d
 SHA512 
1857d53e7731ada3ca811222bab2d0734da0e18fdf36dcada166bd15b1f397cf8575963d8432eb2d0de571646da6b0b18299af3bb7e44fb225586aa76f6de35f

diff --git a/dev-python/trove-classifiers/trove-classifiers-2022.6.26.ebuild 
b/dev-python/trove-classifiers/trove-classifiers-2022.6.26.ebuild
new file mode 100644
index ..964617661415
--- /dev/null
+++ b/dev-python/trove-classifiers/trove-classifiers-2022.6.26.ebuild
@@ -0,0 +1,34 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Canonical source for classifiers on PyPI (pypi.org)"
+HOMEPAGE="
+   https://github.com/pypa/trove-classifiers/
+   https://pypi.org/project/trove-classifiers/
+"
+SRC_URI="
+   https://github.com/pypa/trove-classifiers/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+BDEPEND="
+   dev-python/calver[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+   epytest
+   "${EPYTHON}" -m tests.lib || die
+}



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

2022-06-28 Thread Michał Górny
commit: d554c7006a2f24eb89d0ec8612f9ca08b1d5a9b2
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 29 05:29:11 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 29 06:19:23 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d554c700

dev-python/python-dbusmock: Bump to 0.28.1

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

 dev-python/python-dbusmock/Manifest|  1 +
 .../python-dbusmock/python-dbusmock-0.28.1.ebuild  | 40 ++
 2 files changed, 41 insertions(+)

diff --git a/dev-python/python-dbusmock/Manifest 
b/dev-python/python-dbusmock/Manifest
index 2066307b957f..09435e4f03d0 100644
--- a/dev-python/python-dbusmock/Manifest
+++ b/dev-python/python-dbusmock/Manifest
@@ -1,2 +1,3 @@
 DIST python-dbusmock-0.27.5.tar.gz 89775 BLAKE2B 
316bb1ae06c894702d54b7a54d0c422a877c50fb7e8aa4a1bb3c9ac342acdec8f6adaafea86afa5aa041414a283fdd284e27b58728efa234fb8bcbbf92b25f27
 SHA512 
6e5f5eddfc949c610b64a766434988c142397893e088b8522e6895e31383ec3c14d2f053f9aab17f00137e883a01bf95be35326f7ca97ee8c9780d6704e7d1dc
 DIST python-dbusmock-0.28.0.gh.tar.gz 85445 BLAKE2B 
65038699f11de8fd8c50937023c1da113964ea81f39ba151bddf9cb69021c33f3de67b9fe5f7ac5d0a484f324b705b83d462fd1ffbab642d827ef1a3d82460a4
 SHA512 
62db0e6e8292f0d6426ec6f13af9aada8175ea5d5e84bf4d3890f0c3897c0ea06295de0625ec6041a86bb688fad28d6da9a1b3310daafeae4e56d7a596a90092
+DIST python-dbusmock-0.28.1.gh.tar.gz 85927 BLAKE2B 
f513e571f7aa30f19a86eb12439028ef141016d0a2df8684bf92378081ce6f8675c6f2033ab2f2dd27f9687ae3de09e1c36127d3b9468ae5239f17eeff861bfd
 SHA512 
92fafa96f5c3dc216e25092a35a70775f1af257eb6ef3c3df00fa3ea062e1bf366f8c2113604ec1fc480d5586b0c1aeb72ce6d25447752b33591b15f637ca6ef

diff --git a/dev-python/python-dbusmock/python-dbusmock-0.28.1.ebuild 
b/dev-python/python-dbusmock/python-dbusmock-0.28.1.ebuild
new file mode 100644
index ..39f9ae8e9046
--- /dev/null
+++ b/dev-python/python-dbusmock/python-dbusmock-0.28.1.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} )
+PYTHON_REQ_USE="xml(+)"
+
+inherit distutils-r1
+
+DESCRIPTION="Easily create mock objects on D-Bus for software testing"
+HOMEPAGE="
+   https://github.com/martinpitt/python-dbusmock/
+   https://pypi.org/project/python-dbusmock/
+"
+SRC_URI="
+   
https://github.com/martinpitt/python-dbusmock/releases/download/${PV}/${P}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="LGPL-3+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+
+RDEPEND="
+   dev-python/dbus-python[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests unittest
+
+src_prepare() {
+   # needed for unittest discovery
+   > tests/__init__.py || die
+   # linter tests, fragile to newer linter versions
+   rm tests/test_code.py || die
+
+   distutils-r1_src_prepare
+}



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

2022-06-28 Thread Michał Górny
commit: 06be824aa41391be182276944a8a4ebed42a12e7
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 29 05:52:40 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 29 06:19:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06be824a

dev-python/pyproject-fmt: Bump to 0.3.4

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

 dev-python/pyproject-fmt/Manifest  |  1 +
 .../pyproject-fmt/pyproject-fmt-0.3.4.ebuild   | 38 ++
 2 files changed, 39 insertions(+)

diff --git a/dev-python/pyproject-fmt/Manifest 
b/dev-python/pyproject-fmt/Manifest
index 0b4338fc9ea1..f149d2313b5d 100644
--- a/dev-python/pyproject-fmt/Manifest
+++ b/dev-python/pyproject-fmt/Manifest
@@ -1 +1,2 @@
 DIST pyproject-fmt-0.3.3.gh.tar.gz 14399 BLAKE2B 
82af6d6c4424f83ed9a5539d64bfd517cf08df4bb14b7f1321a379a4d87d140f1518444b503731344e5fdbb4b94d92ce23605fe2a1cc978d26901eae98a31b8c
 SHA512 
49c4648e140b34a6d2f27cc01be7253693e79687f2ff8dbcae5ca3cc64c14f5945f942ffb42d1d286ff221e5aaed22dc1f9953216f49232ce311c4c18130754e
+DIST pyproject-fmt-0.3.4.gh.tar.gz 14400 BLAKE2B 
3ab116fe4d4f683eb3700ca2cb855744111b806514ef18f56cbe6628bfdb6935b813e852ff6ff64716959f1580e8817f485ddcdec6c463ecf5c8935912316528
 SHA512 
0e3adddfbe8afe3b9da85033ceea7c4e37f59bf48722a5897f6e7f2963cd95ba9eef7309c095f4b3fbd927a6486a058289cc3fa5f90c0108a75686b1b81d13e2

diff --git a/dev-python/pyproject-fmt/pyproject-fmt-0.3.4.ebuild 
b/dev-python/pyproject-fmt/pyproject-fmt-0.3.4.ebuild
new file mode 100644
index ..bf9e0c458bdd
--- /dev/null
+++ b/dev-python/pyproject-fmt/pyproject-fmt-0.3.4.ebuild
@@ -0,0 +1,38 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( pypy3 python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Format your pyproject.toml file"
+HOMEPAGE="
+   https://github.com/tox-dev/pyproject-fmt/
+   https://pypi.org/project/pyproject-fmt/
+"
+SRC_URI="
+   https://github.com/tox-dev/pyproject-fmt/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+   >=dev-python/packaging-21.3[${PYTHON_USEDEP}]
+   >=dev-python/tomlkit-0.10[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   dev-python/hatch-vcs[${PYTHON_USEDEP}]
+   test? (
+   >=dev-python/pytest-mock-3.7[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}



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

2022-06-28 Thread Michał Górny
commit: b44e9d67e8b52becc13616eec1d88d24ea88e9db
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 29 05:26:11 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 29 06:19:21 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b44e9d67

dev-python/google-auth: Bump to 2.9.0

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

 dev-python/google-auth/Manifest |  1 +
 dev-python/google-auth/google-auth-2.9.0.ebuild | 58 +
 2 files changed, 59 insertions(+)

diff --git a/dev-python/google-auth/Manifest b/dev-python/google-auth/Manifest
index 6ce08cee0402..49e1708e824d 100644
--- a/dev-python/google-auth/Manifest
+++ b/dev-python/google-auth/Manifest
@@ -1,3 +1,4 @@
 DIST google-auth-2.6.6.tar.gz 189789 BLAKE2B 
8adf725ac8678a07c6c35f641950c5da0f269e8556074b5832a08267cbb64237dda817c576b15fbb315fd0a018e30bca1fa1f5a0d1f85aaae4ab2bd58538b191
 SHA512 
bac6345bf142a8dc6acde0bec43a8fd78f76277740114a0557af88748a5ec2f509757e6099f570ed037b2265717f339fe319254a826793d0b16f1a7d227a6b09
 DIST google-auth-2.7.0.tar.gz 195638 BLAKE2B 
487047f75c3fabde929a451d009ebfcb89ef816cad07cd6fda7b436c69f6eedee6dad64780df743ea133b66aab72f75f0185263fd542eb1475d642d7a6e2e2b9
 SHA512 
ba506619b1392dcd85b71f9ea68dd3acadcb93c4017030d2d812d383c971e6917ed074e64b9a554db9879d61b229a1d35a041c487a517113652934a6849122e5
 DIST google-auth-2.8.0.tar.gz 199717 BLAKE2B 
9814b2967336622ef043721a21a4d4334ed59cd743e75a41e67fdb87aec00094a30d89c49b73144bfb9b2e8e88e4bb7141081df7ea1abf317aa9f516c9657e9f
 SHA512 
01096dfdf4ff59b95e32f8734771046ac11e12cadb72f2f4b9274c15c097aa951da3675660009ff23455c7814c4d7797e22b4b294c5d62c2dea5dd655855aec4
+DIST google-auth-2.9.0.tar.gz 205241 BLAKE2B 
3e33b3c404d0fbd8b4c0b02c6187103c5715dad0f8850b895c91cecca81c2b2adce1b6426eccb8fa5c94948b53978b8530c54c59749e54af5b9513ce23497f6a
 SHA512 
2bcdf7c80d588f8229808e35426cf07ff1e14e778deb315ed375cb2c17a7efcec848c3cd2aa1ab8cd9c8550cd1e79eba9345c84d44f513844dfe1928e42a189d

diff --git a/dev-python/google-auth/google-auth-2.9.0.ebuild 
b/dev-python/google-auth/google-auth-2.9.0.ebuild
new file mode 100644
index ..de5188c8fdb8
--- /dev/null
+++ b/dev-python/google-auth/google-auth-2.9.0.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Google Authentication Library"
+HOMEPAGE="
+   https://github.com/googleapis/google-auth-library-python/
+   https://pypi.org/project/google-auth/
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+RDEPEND="
+   =dev-python/pyasn1-0.1.7[${PYTHON_USEDEP}]
+   >=dev-python/pyasn1-modules-0.2.1[${PYTHON_USEDEP}]
+   >=dev-python/rsa-3.1.4[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+   !dev-python/namespace-google
+"
+BDEPEND="
+   test? (
+   dev-python/cryptography[${PYTHON_USEDEP}]
+   dev-python/flask[${PYTHON_USEDEP}]
+   dev-python/freezegun[${PYTHON_USEDEP}]
+   dev-python/grpcio[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/moto[${PYTHON_USEDEP}]
+   dev-python/pyopenssl[${PYTHON_USEDEP}]
+   dev-python/pytest-localserver[${PYTHON_USEDEP}]
+   dev-python/pyu2f[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/responses[${PYTHON_USEDEP}]
+   dev-python/urllib3[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_IGNORE=(
+   # these are compatibility tests with oauth2client
+   # disable them to unblock removal of that package
+   tests/test__oauth2client.py
+)
+
+python_compile() {
+   distutils-r1_python_compile
+   find "${BUILD_DIR}" -name '*.pth' -delete || die
+}



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

2022-06-28 Thread Michał Górny
commit: 0e25230074be4447f2471b8f44b7035cb68d923a
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 29 05:51:59 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 29 06:19:25 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e252300

dev-python/configupdater: Bump to 3.1.1

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

 dev-python/configupdater/Manifest  |  1 +
 .../configupdater/configupdater-3.1.1.ebuild   | 32 ++
 2 files changed, 33 insertions(+)

diff --git a/dev-python/configupdater/Manifest 
b/dev-python/configupdater/Manifest
index be50b3831097..526a5a05798a 100644
--- a/dev-python/configupdater/Manifest
+++ b/dev-python/configupdater/Manifest
@@ -1 +1,2 @@
+DIST configupdater-3.1.1.gh.tar.gz 138777 BLAKE2B 
9fef5815bc41903a65c2c53c6b9ff3d00d1f4efe65008c725afda8d12694be4d18810cbfc03b291246789d736f1a2933061f2683bfc62e9e1d72e2e4f159d772
 SHA512 
1e499f87d0ac3d75f32aafe532d7c83b4b86fbaa204fcdbaf7a3dcb5262d936fe027ee0b21d169ef69a0590edbe965a872390b14be274fbb1c893f2d4695b92c
 DIST configupdater-3.1.gh.tar.gz 138671 BLAKE2B 
48e349780e11ca26b4b15b44aa298058840cfcea47fc7b2e555f3ca743de1956a15255bfea2c5f96624e02e399bed99ae45f3422ab1660b8ae83087ddf6117e1
 SHA512 
89685a93f3bec907184d818b5adea4f87967df313fe4e4216aeef2c227fdf0b0f98757ec27da7f43adff6e2ee37020dd57b98569d5811c9dc7c3201852b27432

diff --git a/dev-python/configupdater/configupdater-3.1.1.ebuild 
b/dev-python/configupdater/configupdater-3.1.1.ebuild
new file mode 100644
index ..bb6d09e8a58f
--- /dev/null
+++ b/dev-python/configupdater/configupdater-3.1.1.ebuild
@@ -0,0 +1,32 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Parser like ConfigParser but for updating configuration files"
+HOMEPAGE="
+   https://github.com/pyscaffold/configupdater/
+   https://pypi.org/project/ConfigUpdater/
+"
+SRC_URI="
+   https://github.com/pyscaffold/configupdater/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT PSF-2 PYTHON"
+SLOT="0"
+KEYWORDS="~amd64"
+
+distutils_enable_tests pytest
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
+
+src_prepare() {
+   distutils-r1_src_prepare
+   sed -i -e '/--cov/d' setup.cfg || die
+}



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

2022-06-28 Thread Michał Górny
commit: 86062c80d1d16f4b35f670571ef7f2bda394247f
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 29 05:22:56 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 29 06:19:19 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86062c80

dev-python/botocore: Bump to 1.27.19

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

 dev-python/botocore/Manifest|  1 +
 dev-python/botocore/botocore-1.27.19.ebuild | 66 +
 2 files changed, 67 insertions(+)

diff --git a/dev-python/botocore/Manifest b/dev-python/botocore/Manifest
index 9224a7b1720a..14d3df4b0be5 100644
--- a/dev-python/botocore/Manifest
+++ b/dev-python/botocore/Manifest
@@ -5,4 +5,5 @@ DIST botocore-1.27.15.tar.gz 9134585 BLAKE2B 
33fcf026334e0be28b7f20b78e072d4eed8
 DIST botocore-1.27.16.tar.gz 9138117 BLAKE2B 
ed636cd031445b14f57282326836616dca626c27ff912b5a2014df83c5574264f773d9ab8aae2f01b55bb810d00233f1a4cceb0f746767247b5954bb8739b7be
 SHA512 
c4b1debe648cd3027fe409f4ec095a4b454050ec427e8a11e04bc1f82d452566d2168dd539d5dc687e46e612f3d47e218d99de9510156e19eac477ea3c0259d2
 DIST botocore-1.27.17.tar.gz 9130505 BLAKE2B 
04c6b37f3b42a0f9fb696b5213338b004418a68c754f5027ad447119fb20556dc49bd53f40fd9560ea3f5bdcf2afbe151dba68e901079baec770f9f223b1a894
 SHA512 
b1a145d3c97adfd4df40639da99e1c34087508be189d5818ee7176f20454f2897a6f518a14b4bfbf41cb169a17188bec467337c10d0ad511e223f0c1ff5b64ee
 DIST botocore-1.27.18.tar.gz 9129942 BLAKE2B 
61c06ec3ec8350cb9c43c5716faabe5035b74907fd4a94f9b007ec6e488ffb38a9d75d5b3372fcbbd26cb7f9599ba185cbcf2fb48f7e5900e0028832bef74187
 SHA512 
9eb700af06b1eca88df77ad46a54a73bbd198d36b055ea219c8948557bda7edd0307f48321c416c3128fe2baacc35aaea10f31c57b43511a512c6c7c46b0a6db
+DIST botocore-1.27.19.tar.gz 9132910 BLAKE2B 
a23d64ec934de03f7c31b1c89229d5054e689fd050a74db7467b31c79c38eb732286d4db747ca132fa9917be79abcac27b3423f9d0a0e9c9477f56c2ace3944e
 SHA512 
28ab3d94c8f3763b42bd36c97787ce8f86bd8958cfc1b63fd445713fcea523ed1be615a699d0476a3fa8798eff791791c6a466845b63d1454a6aeee6bf9425a6
 DIST botocore-1.27.7.tar.gz 9102259 BLAKE2B 
094ec463531f1dfd54ff32d0f44ebc39cdc0a6d4c3e19b49a25e25d9d13acdcd26c782c1d4819ea4f1cb8954a858aa6e997411785678700b7ca03cd8844527b5
 SHA512 
d4a1327f4314279548af00fbc6da2f9fc5f25f704da3f6ddfa90773878f28ac9f03556b00fa4c0207ec2e952eb716aa98c1c22abffbd51d82dc55d9e4ceeca5c

diff --git a/dev-python/botocore/botocore-1.27.19.ebuild 
b/dev-python/botocore/botocore-1.27.19.ebuild
new file mode 100644
index ..830c713f6036
--- /dev/null
+++ b/dev-python/botocore/botocore-1.27.19.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1 multiprocessing
+
+DESCRIPTION="Low-level, data-driven core of boto 3"
+HOMEPAGE="
+   https://github.com/boto/botocore/
+   https://pypi.org/project/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 ~riscv ~sparc ~x86 
~amd64-linux ~x86-linux"
+fi
+
+RDEPEND="
+   dev-python/six[${PYTHON_USEDEP}]
+   =dev-python/urllib3-1.25.4[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/jsonschema[${PYTHON_USEDEP}]
+   dev-python/pytest-xdist[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_sphinx docs/source \
+   'dev-python/guzzle_sphinx_theme'
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin deps
+   sed -i -e "s:>=.*':':" setup.py || die
+
+   # unbundle deps
+   rm -r botocore/vendored || die
+   find -name '*.py' -exec sed -i \
+   -e 's:from botocore[.]vendored import:import:' \
+   -e 's:from botocore[.]vendored[.]:from :' \
+   {} + || die
+
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # rely on bundled six
+   tests/functional/test_six_imports.py::test_no_bare_six_imports
+   tests/functional/test_six_threading.py::test_six_thread_safety
+   )
+
+   epytest tests/{functional,unit} -n "$(makeopts_jobs)"
+}



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

2022-06-28 Thread Michał Górny
commit: 0094c07f528695b79f419f154fb761c671a934a1
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 29 05:26:40 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 29 06:19:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0094c07f

dev-python/virtualenv: Bump to 20.15.1

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

 dev-python/virtualenv/Manifest  |   1 +
 dev-python/virtualenv/virtualenv-20.15.1.ebuild | 103 
 2 files changed, 104 insertions(+)

diff --git a/dev-python/virtualenv/Manifest b/dev-python/virtualenv/Manifest
index 90cf8bb31612..9d2edbf80190 100644
--- a/dev-python/virtualenv/Manifest
+++ b/dev-python/virtualenv/Manifest
@@ -1,2 +1,3 @@
 DIST virtualenv-20.14.1.tar.gz 12216889 BLAKE2B 
7d06b47629dcf4a60299b9b0a192478b20ef820b8a7516569e50b57b2df383781e7e14fd4beda14a3425164997e69c8ed922edb593f86eb3bd85e4ee3a9f2ac1
 SHA512 
149e78787db23eabd4238baa172bf023ddcf87d59284fdd090269acfa15991aab182f9e168851f88ef810d5c50dd7cdce69d132c46ebedb10080d65a308e63a1
 DIST virtualenv-20.15.0.tar.gz 13523195 BLAKE2B 
c5d4b1fd78998ccdc7a041d11e0fcb569bfd00151975170260e245726eee03b4ef1cf758d43175312e69e4b482f9ec17b4e93e6854c3bfeafa2304eef2688a20
 SHA512 
2e3cddae926f89ef986a85ddf592b38d53401212e974b65243b9f47290b653798ab2405920c28d3a7961aeb726f25ed6401e19661f1e9ce7afd195e87a0524ab
+DIST virtualenv-20.15.1.tar.gz 13523736 BLAKE2B 
4f8d491fae7c0c28ae349845c4c5ddd27e53b9007a427c8a36e66a427269b519829f1c351f028b63fe38b49e934f4e209bd2cf2e07363171f732c6b0a052a3bc
 SHA512 
244e3b091c8b049edbb07d808633fd44b3327200e1d38394814794773d05723ef535721ee163b382d23bc16572d55657b5c2544efd83494753746cc85116696a

diff --git a/dev-python/virtualenv/virtualenv-20.15.1.ebuild 
b/dev-python/virtualenv/virtualenv-20.15.1.ebuild
new file mode 100644
index ..f5652cdcd1be
--- /dev/null
+++ b/dev-python/virtualenv/virtualenv-20.15.1.ebuild
@@ -0,0 +1,103 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} pypy3 )
+
+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 ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+SLOT="0"
+
+RDEPEND="
+   >=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}]
+"
+# 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 EPYTEST_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 ]] && EPYTEST_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]'
+   
'tests/unit/create/test_creator.py::test_create_no_seed[venv-pypy3-posix-copies-global]'
+   
'tests/unit/create/test_creator.py::test_create_no_seed[root-venv-copies-isolated]'
+   
'tests/unit/create/test_creator.py::test_create_no_seed[root-venv-copies-global]'
+   
'tests/unit/create/test_creator.py::test_create_no_seed[venv-venv-copies-isolated]'
+   
'tests/unit/create/test_creator.py::test_create_no_seed[venv-venv-copies-global]'
+   
'tests/unit/create/test_creator.py::te

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

2022-06-28 Thread Michał Górny
commit: 54769e554fcaa45eda7590bff67cef0b3c50a114
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 29 05:45:20 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 29 06:19:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54769e55

dev-python/calver: Bump to 2022.06.26

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

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

diff --git a/dev-python/calver/Manifest b/dev-python/calver/Manifest
index 5af01431b30c..d4e67ca26def 100644
--- a/dev-python/calver/Manifest
+++ b/dev-python/calver/Manifest
@@ -1 +1,2 @@
 DIST calver-2021.7.30.gh.tar.gz 7058 BLAKE2B 
90cb8568bce2afcf3e086e038dc237440c5d20c05cc19b7d6966d16b55854810a627120dc870d77975676ca166eac0922443d19b85aeffdb51f3cf435848ef5d
 SHA512 
17c10b0f60ec4c8c582de660bd715d054c3478d8fdec88a6830396bad1d6147ce375a34c5ff57d244c8c2e337a6b382b6ee10673182a40bc14ad16a97405f181
+DIST calver-2022.06.26.gh.tar.gz 7601 BLAKE2B 
e4bea1dc8954b4f65003cb06dadebfa6a7ad0554d64c23e5339652955d2e4659ffc093b8d11d284e03bc74267059a10043a45dd1eb7717378fb22327d6409428
 SHA512 
4d436cead8930cae1a71eddef9f0ecd2881f8cb632c3814dc75390b061a909e7ca969a604a5fded1c66647947856d540e2180bd3ce4bed5087b4dbc9d5edb393

diff --git a/dev-python/calver/calver-2022.06.26.ebuild 
b/dev-python/calver/calver-2022.06.26.ebuild
new file mode 100644
index ..4ce266d2fb49
--- /dev/null
+++ b/dev-python/calver/calver-2022.06.26.ebuild
@@ -0,0 +1,31 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Setuptools extension for CalVer package versions"
+HOMEPAGE="
+   https://github.com/di/calver/
+   https://pypi.org/project/calver/
+"
+SRC_URI="
+   https://github.com/di/calver/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+BDEPEND="
+   test? (
+   dev-python/pretend[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest



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

2022-06-28 Thread Michał Górny
commit: 1c2b4b248e2a1cfdee2183f0976c1012f620d096
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 29 05:23:05 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 29 06:19:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c2b4b24

dev-python/boto3: Bump to 1.24.19

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

 dev-python/boto3/Manifest |  1 +
 dev-python/boto3/boto3-1.24.19.ebuild | 68 +++
 2 files changed, 69 insertions(+)

diff --git a/dev-python/boto3/Manifest b/dev-python/boto3/Manifest
index 8e07f7dbaabf..7ca8c5b6ff7a 100644
--- a/dev-python/boto3/Manifest
+++ b/dev-python/boto3/Manifest
@@ -5,4 +5,5 @@ DIST boto3-1.24.15.gh.tar.gz 510710 BLAKE2B 
9640c037d6bc95225b9dbb9fc8b33d65a425
 DIST boto3-1.24.16.gh.tar.gz 511182 BLAKE2B 
00180c2cee9499efb3093c517f776536a85972014c622ec87d327c0e1a628b1440a85ddb239431d7c647a459f8c55422136f61254cd192cd3ca8f68eb03270d9
 SHA512 
cc2d179ba3975fdfc1127565d352077529159cd97d120831629650af881600d022f8a55f4ccfb3c732be5814b58739178063042ca7a0e26f0163f47ba8dddb36
 DIST boto3-1.24.17.gh.tar.gz 511281 BLAKE2B 
577efc0ebfb39957e55bcaf7aa678cdf072eed885ab1055b15fc8ca2295fedd6d56fd2fb919913beedcdd335ff26e452bc5434283c9ca9d8f0135080e2aa1312
 SHA512 
a843146951eb2a5ad7dd31159d833806ae403014abf3e9a617f6457e3ecec1a0dc4c6ce6a87079c9112513cbd6a2ccd26542e5736eeea6c5723c7e39c660befa
 DIST boto3-1.24.18.gh.tar.gz 511407 BLAKE2B 
a723c58db4cf11a982aa5b779cd27870c96fc63d08dc733f5c7c70bcd027c4ec542c5f988bdab6dd35d9c72bd985b21473b6bc58604ef4ae84b7993de42e754c
 SHA512 
369200635e7c52761ea13f4755e8c105dca92259922e947d777b1400f69f8ed443ae6dae0df4f8c46cdf5493819be696ab4b200216d86285ac68ccc817ecd13e
+DIST boto3-1.24.19.gh.tar.gz 511808 BLAKE2B 
b59ddc7826f30833ca5b4ea5b71a2c1f19662cb108e93e4455908788d8357addf7edfdbe993b855fcd1ee063f4def7176376b08757d69745ff2ccaeea908f46d
 SHA512 
007ca70cf4510c6069d80fb885e6b4d4eb8724b333765b60c2cc283f01d1771e9238f61469e303e853045544c6ae2409fa171a3e72e29659f1893fbb9731c98e
 DIST boto3-1.24.7.gh.tar.gz 508670 BLAKE2B 
d526f6a4dc4c6126c61ca7c9074b4341c742f84a6e95b38cd8a450fb74df379cee44513e1be6bc7cd0c8f728598d0ecfc06240120a8da71f75f86371498f5233
 SHA512 
4d57e38c18138b950f93a234132ac1d31c9a29ad00ca5e1298517d6b16ff2849802ce6cfeb8de390c2eb25086043d45e0276a7a563707595649ca1905367be52

diff --git a/dev-python/boto3/boto3-1.24.19.ebuild 
b/dev-python/boto3/boto3-1.24.19.ebuild
new file mode 100644
index ..6edcc751d54b
--- /dev/null
+++ b/dev-python/boto3/boto3-1.24.19.ebuild
@@ -0,0 +1,68 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1 multiprocessing
+
+DESCRIPTION="The AWS SDK for Python"
+HOMEPAGE="
+   https://github.com/boto/boto3/
+   https://pypi.org/project/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/boto3/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+   "
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~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.6.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/pytest-xdist[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_sphinx docs/source \
+   'dev-python/guzzle_sphinx_theme'
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # don't lock versions to narrow ranges
+   sed -e '/botocore/ d' \
+   -e '/jmespath/ d' \
+   -e '/s3transfer/ d' \
+   -i setup.py || die
+
+   # do not rely on bundled deps in botocore (sic!)
+   find -name '*.py' -exec sed -i \
+   -e 's:from botocore[.]vendored import:import:' \
+   -e 's:from botocore[.]vendored[.]:from :' \
+   {} + || die
+
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   epytest tests/{functional,unit} -n "$(makeopts_jobs)"
+}



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

2022-06-28 Thread Michał Górny
commit: 179f8e9e00e789dfa8b0b705e68194af426091f3
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 29 05:23:16 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 29 06:19:21 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=179f8e9e

app-admin/awscli: Bump to 1.25.19

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

 app-admin/awscli/Manifest  |  1 +
 app-admin/awscli/awscli-1.25.19.ebuild | 71 ++
 2 files changed, 72 insertions(+)

diff --git a/app-admin/awscli/Manifest b/app-admin/awscli/Manifest
index 17d303b9dad4..288b37b8f120 100644
--- a/app-admin/awscli/Manifest
+++ b/app-admin/awscli/Manifest
@@ -5,4 +5,5 @@ DIST aws-cli-1.25.15.gh.tar.gz 2225254 BLAKE2B 
afc4ef97b0c8eebaba3874ab5291cda8b
 DIST aws-cli-1.25.16.gh.tar.gz 2225519 BLAKE2B 
5800f49afe526f29b76f74078431235ab302237cbb3d6977c902d218fd65fb1eb341534020f1b8c495eb1834d3ef4c87fec7b4dee6ac8ceff4a528ec9bbf045b
 SHA512 
4641ead6693a54d34dbd3426baaf8c389221d85aba950e21e1ba7ccbdc142633d0d4215598fe55865a90c98c4df8ea2eb78610fd0567ce49b82f32aac1941f3b
 DIST aws-cli-1.25.17.gh.tar.gz 2226115 BLAKE2B 
d07a9c7a8e13019fd728489d27465497ba31f53087ef09e5f816792267bcb58158fa0a7f71fc499d3e343b5b3a0da45cc3632f8c69345b8cd93ebc735f645672
 SHA512 
1a7f90e28d6702f9e73fe3a93e0d91e2c4ea3d93574f21a3ecde1148445fe6b5f98f217e2e61a1cbba50a07590f0ab0abd00390fb04cbb3db74dfff698224997
 DIST aws-cli-1.25.18.gh.tar.gz 2226354 BLAKE2B 
5dafc484fcb592bef9e1aa18ff21897bc93c2eda049e5dff64d706fc492c5778ccb818c4368b95ee7f326ad47ee59b7b230875d1ef6e63ed7997e1e761228fd9
 SHA512 
40a5f0d35956d8fadc8950e0498e9254126914172a26b092ad6cb874f32e9f36a790295687da30d3e9bc41e41672d1e1424ba91051d4e32c46e44ef89601b289
+DIST aws-cli-1.25.19.gh.tar.gz 2227148 BLAKE2B 
a39de70c887b6e036303cdfb9fa435674cd5beb2482c1c71efbdfd675addef72772e538c11850b93be9430d12ce5a7d3293f18bec1a3bd6fd9b4d0c675b7d307
 SHA512 
430cbc322a26031211fbdb8a9ec4ee810d50b78a80d50b5e8fa254f22fd5131b3b5fc791db10d27d0b85ccb82b4a2a74dac4f1a1f14299262668743417532ec0
 DIST aws-cli-1.25.7.gh.tar.gz 2223153 BLAKE2B 
fcadda94fd721135f94b1538c4b27e41108064f6fd32f324d5436138e3d1b0ffcab53fcc545b01c461365d55c4bfa2a05d90e94c875c929a3227efae76452415
 SHA512 
194adacab0df87d8e4f0cdc71bb956bef6dc8b2de2e7e4416c9c079ff2b7c2bce7584ac1049428d0bcb134368b39c37c04bc5e6a8fc7540c44c64f3934ccaf21

diff --git a/app-admin/awscli/awscli-1.25.19.ebuild 
b/app-admin/awscli/awscli-1.25.19.ebuild
new file mode 100644
index ..4154af977ee6
--- /dev/null
+++ b/app-admin/awscli/awscli-1.25.19.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit bash-completion-r1 distutils-r1 multiprocessing
+
+MY_P=aws-cli-${PV}
+DESCRIPTION="Universal Command Line Environment for AWS"
+HOMEPAGE="
+   https://github.com/aws/aws-cli/
+   https://pypi.org/project/awscli/
+"
+SRC_URI="
+   https://github.com/aws/aws-cli/archive/${PV}.tar.gz
+   -> ${MY_P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+# botocore is x.(y+2).z
+BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 2)).$(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.6.0[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/pytest-forked[${PYTHON_USEDEP}]
+   dev-python/pytest-xdist[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # do not rely on bundled deps in botocore (sic!)
+   find -name '*.py' -exec sed -i \
+   -e 's:from botocore[.]vendored import:import:' \
+   -e 's:from botocore[.]vendored[.]:from :' \
+   {} + || die
+   # strip overzealous upper bounds on requirements
+   sed -i -e 's:,<[0-9.]*::' -e 's:==:>=:' setup.py || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   # integration tests require AWS credentials and Internet access
+   epytest tests/{functional,unit} -n "$(makeopts_jobs)" --forked
+}
+
+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: dev-python/rencode/

2022-06-28 Thread Joonas Niilola
commit: 01e5ba32bd8f2148f14df64dbcc3708d62edc6ad
Author: Joonas Niilola  gentoo  org>
AuthorDate: Wed Jun 29 06:11:20 2022 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed Jun 29 06:11:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01e5ba32

dev-python/rencode: Stabilize 1.0.6-r3 amd64, #854924

Signed-off-by: Joonas Niilola  gentoo.org>

 dev-python/rencode/rencode-1.0.6-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/rencode/rencode-1.0.6-r3.ebuild 
b/dev-python/rencode/rencode-1.0.6-r3.ebuild
index fa051ddf6ece..9a72df4ef367 100644
--- a/dev-python/rencode/rencode-1.0.6-r3.ebuild
+++ b/dev-python/rencode/rencode-1.0.6-r3.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/aresch/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~sparc x86 ~amd64-linux ~x86-linux"
 
 BDEPEND="dev-python/cython[${PYTHON_USEDEP}]"
 



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

2022-06-28 Thread Joonas Niilola
commit: f3bdf7669af02e19668db4f94e03c29da4b8ab7a
Author: Joonas Niilola  gentoo  org>
AuthorDate: Wed Jun 29 05:59:56 2022 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed Jun 29 05:59:56 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3bdf766

dev-python/reedsolomon: Stabilize 1.5.4-r2 amd64, #854927

Signed-off-by: Joonas Niilola  gentoo.org>

 dev-python/reedsolomon/reedsolomon-1.5.4-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/reedsolomon/reedsolomon-1.5.4-r2.ebuild 
b/dev-python/reedsolomon/reedsolomon-1.5.4-r2.ebuild
index 5dc49b5abd16..aaf1728840ff 100644
--- a/dev-python/reedsolomon/reedsolomon-1.5.4-r2.ebuild
+++ b/dev-python/reedsolomon/reedsolomon-1.5.4-r2.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/tomerfiliba/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 x86"
+KEYWORDS="amd64 ~arm ~arm64 x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2022-06-28 Thread Joonas Niilola
commit: 149066f3a40cdb6a334a0e2564cb0ef331f8e994
Author: Joonas Niilola  gentoo  org>
AuthorDate: Wed Jun 29 05:46:10 2022 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed Jun 29 05:46:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=149066f3

mail-client/thunderbird-bin: add 91.11.0, drop 91.10.0

Signed-off-by: Joonas Niilola  gentoo.org>

 mail-client/thunderbird-bin/Manifest   | 130 ++---
 10.0.ebuild => thunderbird-bin-91.11.0.ebuild} |   4 +-
 2 files changed, 67 insertions(+), 67 deletions(-)

diff --git a/mail-client/thunderbird-bin/Manifest 
b/mail-client/thunderbird-bin/Manifest
index ec841a63b01c..e379b8359c0c 100644
--- a/mail-client/thunderbird-bin/Manifest
+++ b/mail-client/thunderbird-bin/Manifest
@@ -1,65 +1,65 @@
-DIST thunderbird-91.10.0-af.xpi 561895 BLAKE2B 
c794ce6b0e504f9d85ca954fa0d93cfd886e614ce6187f98555482297ebdc75132b3067f0e940fb4d2664a30aa71a74ff8d4bebb116df3706d48c290f213520b
 SHA512 
465c30a199e6d9f85f3c2b2306d91cc07822dc57752e750c527aefbc5e8da13c91e1df03dbe37d72c377fa99c6472c682a9b7b94550b3b8088d7b49e9e82585c
-DIST thunderbird-91.10.0-ar.xpi 665731 BLAKE2B 
b450a3563929686946ce5c74f49f9976ca69e5995a13af19893f7ec25cb64236207f805e4c99b02387d4eda32c46ad1fdeebfb59f835954a9c9a55a7db1a0b79
 SHA512 
f039df005d4bf66ba38491ac9986d6543cc6c8c5d7d1d2eb30f286b8652e0948406b7a1fa85422ed1dc059e3ba99dcf7dca0f8d54a92a0e7b6fe00d2964b8414
-DIST thunderbird-91.10.0-ast.xpi 580512 BLAKE2B 
57e31d67fc6c59c148cc8556df40a5d6173867fa6e7d8f1824be682cdc0d618b67c1365b87caea43adfb93994f1693bcdf070473453b068a59c055ec1c3607d4
 SHA512 
e92b2ea2ed9e4617cb1915f7baf32abc930fd571b8039c657f01b3cb4139bdb147f2e7718eadb8a7601cc1968c2daff4471624476b0b95ebca403ca75c846a39
-DIST thunderbird-91.10.0-be.xpi 695198 BLAKE2B 
4c1887fc67a932df49977a590dc976cc13dbeb478cfa46367d4e7daf420b8af1823f382a570db40a5ea32f1b3affe450e4aa4149f9dd7e52a1339b9b56a26954
 SHA512 
70d5029d8c0f6cd9b12db02f8000320c17c3d70c331d329e254e4007b004c8791941fdfd2825b4b2e3a36a3e0715e22bd883ebf332f6aa23efc62d0306ee94bb
-DIST thunderbird-91.10.0-bg.xpi 690996 BLAKE2B 
b2ed32416183b4c30865d43702e502a22f24d010d5a036ca5f6e11677e5c86bca823e2f0e2583a3103e2b9d9c2aee80896d9ba6b08ea92d3f1b79a9e2944d9f6
 SHA512 
1b7074e9e79182162e889c6fb9585328f9667d89764463bd95e821c38d62a02440702115d389cefde71bcdeff1016dd066b59b1f217950873d81ae5cfb42bb53
-DIST thunderbird-91.10.0-br.xpi 620588 BLAKE2B 
c0d6fdc6dd61a723194336b305ba949d61e6f82128da79d99e33f6d4227f4acd4bae1ff14302a67654f0ab6c828225c538ddfd1600cb7ecd2756c8d8f9b7e414
 SHA512 
119b0b62e9e26cd3f7483150052771b4227f202bf5ed6ebb28bd66c95755521b0cfb3330a2cba679ee1af48f28974875394ff40d24ad60f102f7d3ccb7ccd8d0
-DIST thunderbird-91.10.0-ca.xpi 645976 BLAKE2B 
3c5f35a4e46e40baf0bdb0bd14352a0f78f7c4a95c2d2a612dafda5338d7923926a0e36b894ff599bdaafb813118ade58f1830f3b0584572ab705dcf3edc10f7
 SHA512 
d1494f59dadc03da9300e4731f4eb3631a3bda1b6bd3783a2393d6cf376482c759e4d6ec89f5cffaed00481887157c2a5be353eb753dbb351d1bb3d69600a157
-DIST thunderbird-91.10.0-cak.xpi 652066 BLAKE2B 
de64bd3a01130053332f14a1bb4a42063b8fc4c38fe58ad0672b1a5c2e1931b6e7644f71977e6ba797d1840128c80db890ef3783dc43cdc35ca7c1c06ade3e66
 SHA512 
436ab9176e424fd44d8bbb9f55330b1f63e32820e263e7c11c8aa97682675c3b28c8c1ed72a374ec981b50ebf94739ac47815eacbf1691aadf4c6b8f5d4e1d8b
-DIST thunderbird-91.10.0-cs.xpi 711939 BLAKE2B 
2796105e518cfa93fff2a0d99d935407a9e626032b12cef65409424f02e2d5704d444b2ff6d1a8de91386c6b25ceb5f82eaaf2665841a153d5353ab9c9e88399
 SHA512 
0c167b073f86201ac090befacd518e3d01a578056b6ed5799b0d94d8c211ee016d7c7c782372b0cc752eced6363fdbe21acac4f7b31c72332968e14d5750b94f
-DIST thunderbird-91.10.0-cy.xpi 69 BLAKE2B 
d29e97144abea36368d360b29a8e4de1ffc9140f7a9e41dbbac4956950c497d8ace78e58a03c3ca59a161c3d044fea4897da08e3c20f7df40ff58b8057ce4c69
 SHA512 
3490393b5567f73d92e07b1cdac67ac87140b55626988970805297445d00288bd87f5d8e6af4ce1b0706dbeb94ac00af42af30c80db8bd76f724149661163714
-DIST thunderbird-91.10.0-da.xpi 674445 BLAKE2B 
087e2bf0ffb1dcf60c7bb786792c884262fd83ae7ad68c9748fd54a4c1b0bf995e563484e1a7b76571032cf58b23f92ab4de0b58bd1f160dc0e6446e0cfd73db
 SHA512 
582dcdc386a186b38d1e17bba3ee6c440aea552484a4414c9b8d01acc6d79f74bd5597482860e188de004556382516b3b08d41f22cff6fa338333416e17285ed
-DIST thunderbird-91.10.0-de.xpi 697527 BLAKE2B 
15f1906ae7497b2eb882a091dbd44eb2c8cfdaa44612f27229ccaee7578076301f71aab15e4907e6f9c303dfb5ac77fc9b18226cb3ea211ab9483f63dac14652
 SHA512 
5d4052ed64e8f2c76c040cff29f7a49fa9bebde758ad842463f5b83b7d8bf16ea5c6aa0da4872408f8ef36e9532118f801055450077a45f914302129fc669b20
-DIST thunderbird-91.10.0-dsb.xpi 724000 BLAKE2B 
2fed239b5304d1ca1a347638815f938d3a7bcb6cb347162716032434e25026b4781aa3e275b3c11d75287250b22e98d40a46ffcc6baaa07407e1e453c37bd83b
 SHA512 
f59c58904a68def999e044bd7e2f87baa25eae785d6ec41f225af09cada49e38930f4c0e59ac11a0462088ba7162825f638f93fe4bd1c29c018046495bf0be23
-DIST thunderbird-91.10.0-el.xpi 821181 BLAKE2B 
a8809eb67d05963

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

2022-06-28 Thread Ionen Wolkens
commit: c51a2927d2e9bcf2803771e32a95aac22a0f3a3b
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Wed Jun 29 04:07:03 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Wed Jun 29 04:17:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c51a2927

net-misc/yt-dlp: add 2022.6.29

Signed-off-by: Ionen Wolkens  gentoo.org>

 net-misc/yt-dlp/Manifest|  1 +
 net-misc/yt-dlp/yt-dlp-2022.6.29.ebuild | 64 +
 2 files changed, 65 insertions(+)

diff --git a/net-misc/yt-dlp/Manifest b/net-misc/yt-dlp/Manifest
index b4490211a700..78dc5f11fc7b 100644
--- a/net-misc/yt-dlp/Manifest
+++ b/net-misc/yt-dlp/Manifest
@@ -1,2 +1,3 @@
 DIST yt-dlp-2022.5.18.tar.gz 2277146 BLAKE2B 
95237fcb12aef9d849e5cc5603baeb5b8e6f416db2dad04d8ea7408b966dcd0d05ad3e276342fb9cc3551293a569b48d2b806c360e95c9c96ffb17dff4cbeb9a
 SHA512 
d0c11e6dba336124898e73234c5935386163af8a9dbbe3e2c38ec834ff631557a763e5224c30747dcffcf98364b95b7f1b6121c50ef91ed56653e2ce453548b5
 DIST yt-dlp-2022.6.22.1.tar.gz 2314891 BLAKE2B 
4c3e854f89281be9c8c301be0ebaf27434f04a6e26f7fe3bbb60e4d68d36605d5d2fce8ae9245c5e6421913bea90cbd4030d30babed81bdd9df56c3c73dfbcdc
 SHA512 
0a0a4b25e0a75774bc659770af7d83a307d2ff4a3eef11c02ca422c0f4920ba47e02350cd72a4c4a4903aa7f97879b979c755318d3b48def6be738e09d72c3c6
+DIST yt-dlp-2022.6.29.tar.gz 2321677 BLAKE2B 
c1c6e18af961c7d433fae432ecf38feb28bff315ad9a3949c431f35f46a469460ade8a44e23f699d248dee1088bd507981479ab009c3e8152508c730ff146683
 SHA512 
f6832e70a73a3b787af9a9e2c4219bd593d2eb0e4c37a0d5696a5a11413a7230f4ca5e480db43713477fba6eae076c600ec98f24adb5c651fa5fbb9fdd83ad45

diff --git a/net-misc/yt-dlp/yt-dlp-2022.6.29.ebuild 
b/net-misc/yt-dlp/yt-dlp-2022.6.29.ebuild
new file mode 100644
index ..775abf17078d
--- /dev/null
+++ b/net-misc/yt-dlp/yt-dlp-2022.6.29.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} )
+inherit bash-completion-r1 distutils-r1 optfeature wrapper
+
+DESCRIPTION="youtube-dl fork with additional features and fixes"
+HOMEPAGE="https://github.com/yt-dlp/yt-dlp/";
+SRC_URI="mirror://pypi/${P::1}/${PN}/${P}.tar.gz"
+
+LICENSE="Unlicense"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86 ~x64-macos"
+
+RDEPEND="
+   dev-python/pycryptodome[${PYTHON_USEDEP}]
+   !net-misc/youtube-dl[-yt-dlp(-)]"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   distutils-r1_src_prepare
+
+   # adjust requires for pycryptodome and optional dependencies (bug 
#828466)
+   sed -ri requirements.txt \
+   -e "s/^(pycryptodome)x/\1/" \
+   -e "/^(brotli.*|certifi|mutagen|websockets)/d" || die
+}
+
+python_test() {
+   epytest -m 'not download'
+}
+
+python_install_all() {
+   dodoc README.md Changelog.md supportedsites.md
+   doman yt-dlp.1
+
+   dobashcomp completions/bash/yt-dlp
+
+   insinto /usr/share/fish/vendor_completions.d
+   doins completions/fish/yt-dlp.fish
+
+   insinto /usr/share/zsh/site-functions
+   doins completions/zsh/_yt-dlp
+
+   rm -r "${ED}"/usr/share/doc/yt_dlp || die
+
+   make_wrapper youtube-dl "yt-dlp --compat-options youtube-dl"
+}
+
+pkg_postinst() {
+   optfeature "various features (merging tracks, streamed content)" 
media-video/ffmpeg
+   has_version media-video/atomicparsley || # allow fallback but don't 
advertise
+   optfeature "embedding metadata thumbnails in MP4/M4A files" 
media-libs/mutagen
+
+   if [[ ! ${REPLACING_VERSIONS} ]]; then
+   elog 'A wrapper using "yt-dlp --compat-options youtube-dl" was 
installed'
+   elog 'as "youtube-dl". This is strictly for compatibility and 
it is'
+   elog 'recommended to use "yt-dlp" directly, it may be removed 
in the future.'
+   fi
+}



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

2022-06-28 Thread Ionen Wolkens
commit: be9c8c4c00da764de64327121b6049204cf28c02
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Wed Jun 29 04:15:30 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Wed Jun 29 04:17:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be9c8c4c

net-misc/ytfzf: add 2.4.0

Signed-off-by: Ionen Wolkens  gentoo.org>

 net-misc/ytfzf/Manifest   |  1 +
 net-misc/ytfzf/ytfzf-2.4.0.ebuild | 60 +++
 2 files changed, 61 insertions(+)

diff --git a/net-misc/ytfzf/Manifest b/net-misc/ytfzf/Manifest
index d9e72e31f0f4..0dd7c8619a4c 100644
--- a/net-misc/ytfzf/Manifest
+++ b/net-misc/ytfzf/Manifest
@@ -1 +1,2 @@
 DIST ytfzf-2.3.tar.gz 3249215 BLAKE2B 
963442379ea324aa6f7b4077df417815ec1e1822d1598029efd397e2a29996ae92aa2f18e67ec6f7fea16a5804d3a7875cec625be1f5f49eb35c85dc84f3a894
 SHA512 
a282f578459ec53e725d1089a5b5efb78dcc66684ce572d0318f6bfd6e222b706418c77eeeca34d4015ed2bae1cb54de10edaab36522d6012c2ac421796ef34b
+DIST ytfzf-2.4.0.tar.gz 3253168 BLAKE2B 
e25bd13c01f5b035378dd6657358bc2ec67ff29f1db42fc8c07f0f820252efa4e6da6342265ea4107ec3179d317ac9742646a641a1c9e4e2a84360b39df6bf3d
 SHA512 
9b66d8b56bb8a35baf04a5d34614882f8302e2f543d12182188438c50a76cca1182d7ac3a4a7a3d80d7c924478fd3af7968701e5d5ab8531a9d6f4ed5b731ece

diff --git a/net-misc/ytfzf/ytfzf-2.4.0.ebuild 
b/net-misc/ytfzf/ytfzf-2.4.0.ebuild
new file mode 100644
index ..aabfab731b1b
--- /dev/null
+++ b/net-misc/ytfzf/ytfzf-2.4.0.ebuild
@@ -0,0 +1,60 @@
+# Copyright 2021-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit optfeature
+
+DESCRIPTION="Posix script to find and watch youtube videos from the terminal"
+HOMEPAGE="https://github.com/pystardust/ytfzf/";
+SRC_URI="https://github.com/pystardust/ytfzf/archive/refs/tags/v${PV}.tar.gz 
-> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="minimal"
+
+# fzf/mpv/yt-dlp "can" be optfeatures depending on configuration, but depend
+# on them so it works as expected out-of-the-box while allowing to disable.
+RDEPEND="
+   app-misc/jq
+   net-misc/curl[ssl]
+   virtual/awk
+   !minimal? (
+   app-shells/fzf
+   media-video/mpv[lua]
+   net-misc/yt-dlp
+   )"
+
+src_prepare() {
+   default
+
+   sed -i "/^: ...YTFZF_SYSTEM_ADDON_DIR/s|/usr/local|${EPREFIX}/usr|" 
ytfzf || die
+}
+
+src_compile() { :; }
+
+src_install() {
+   local emakeargs=(
+   DESTDIR="${D}"
+   PREFIX="${EPREFIX}"/usr
+   DOCDIR="${EPREFIX}"/usr/share/doc/${PF}
+   )
+
+   emake "${emakeargs[@]}" addons doc install
+   einstalldocs
+
+   rm -r "${ED}"/usr/share/licenses || die
+}
+
+pkg_postinst() {
+   optfeature "external menu support" x11-misc/dmenu
+   optfeature "in-terminal thumbnails on X11" media-gfx/ueberzug
+   optfeature "desktop notifications" x11-libs/libnotify
+
+   if [[ ! ${REPLACING_VERSIONS} ]]; then
+   elog "Note that ${PN} supports many methods to display 
menus/thumbnails."
+   elog "This ebuild primarily covers defaults and major features, 
additional"
+   elog "dependencies may be needed for others."
+   fi
+}



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

2022-06-28 Thread Stefan Strogin
commit: e90bd0f6a492a35ae4fa9d91b9ac70dfd254ad09
Author: Stefan Strogin  gentoo  org>
AuthorDate: Wed Jun 29 04:01:29 2022 +
Commit: Stefan Strogin  gentoo  org>
CommitDate: Wed Jun 29 04:02:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e90bd0f6

profiles/features/musl: mask net-im/element-desktop-bin

Closes: https://bugs.gentoo.org/832479
Signed-off-by: Stefan Strogin  gentoo.org>

 profiles/features/musl/package.mask | 4 
 1 file changed, 4 insertions(+)

diff --git a/profiles/features/musl/package.mask 
b/profiles/features/musl/package.mask
index ed1f9127826e..732e36cb6152 100644
--- a/profiles/features/musl/package.mask
+++ b/profiles/features/musl/package.mask
@@ -1,6 +1,10 @@
 # Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# Stefan Strogin  (2022-06-29)
+# Binary package linked against glibc
+net-im/element-desktop-bin
+
 # Florian Schmaus  (2022-06-05)
 # Binary package linked against glibc, bug #832932
 sys-block/hpssacli



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

2022-06-28 Thread Michał Górny
commit: 8e5c7efcce8c7460554e2a1de467ac616e82c724
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 29 03:53:32 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 29 03:56:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e5c7efc

dev-python/python-nbxmpp: Remove old

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

 dev-python/python-nbxmpp/Manifest  |  1 -
 .../python-nbxmpp/python-nbxmpp-3.0.2.ebuild   | 34 --
 2 files changed, 35 deletions(-)

diff --git a/dev-python/python-nbxmpp/Manifest 
b/dev-python/python-nbxmpp/Manifest
index d905f3e01f67..91244edb6923 100644
--- a/dev-python/python-nbxmpp/Manifest
+++ b/dev-python/python-nbxmpp/Manifest
@@ -1,3 +1,2 @@
 DIST python-nbxmpp-3.1.0.tar.bz2 128551 BLAKE2B 
bbff0bd92b12addb73e661136531df7629baa7936a1d52a86a17b59047681d30744dbc3618143a0b4ff5460bb64ad01a70b1bfb018f32bd78cfd9dc848f18668
 SHA512 
6676da4a21915305952118b9d35d91f3b420a23f1f3bc1fa22ee885face3f9b4474417f58e4a2c6446fec48ff632822ab83343e104df480d33d75f1b46cf8fec
 DIST python-nbxmpp-nbxmpp-2.0.6.tar.bz2 122203 BLAKE2B 
925604002f4363f1e0b72f05c13742f4652ba565a9faa48faf8d47688f480a7f1d7585c593b0dcf07bded8c4aa3a1d02e9697742a07b9e815daec062dfb93104
 SHA512 
a536b25c8a6298892a51adef4b64b75ffab88ce02fb08fc07ecd1cfe2bc794262d4d58a93248439723e6e0544485da7351bb98189b0e422a1f77b01c6f6d238e
-DIST python-nbxmpp-nbxmpp-3.0.2.tar.bz2 126796 BLAKE2B 
1a9c42db9358ac0d453ee7ae88dcc35900e6a68b0d158a3491e99f748d792dc6047a24e605c9538128ed4e84447e341289cfd8384affe8b0bf1b9853a5325e08
 SHA512 
04759631960110c2d60be29cf00f93c8d0079a883f2011c27b35a9846203cefe8c0c42a90d93ee3283cd400fde0d5a5748f5b21b35b5328f5465e95a1e3ba861

diff --git a/dev-python/python-nbxmpp/python-nbxmpp-3.0.2.ebuild 
b/dev-python/python-nbxmpp/python-nbxmpp-3.0.2.ebuild
deleted file mode 100644
index 22fe9afa15e6..
--- a/dev-python/python-nbxmpp/python-nbxmpp-3.0.2.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..10} )
-
-inherit distutils-r1
-
-MY_P=python-nbxmpp-nbxmpp-${PV}
-DESCRIPTION="Python library to use Jabber/XMPP networks in a non-blocking way"
-HOMEPAGE="
-   https://dev.gajim.org/gajim/python-nbxmpp/
-   https://pypi.org/project/nbxmpp/
-"
-SRC_URI="
-   
https://dev.gajim.org/gajim/python-nbxmpp/-/archive/nbxmpp-${PV}/${MY_P}.tar.bz2
-"
-S=${WORKDIR}/${MY_P}
-
-SLOT="0"
-LICENSE="GPL-3"
-KEYWORDS="amd64 ~arm64 ~riscv x86"
-
-RDEPEND="
-   dev-libs/gobject-introspection
-   net-libs/libsoup[introspection]
-   dev-python/idna[${PYTHON_USEDEP}]
-   dev-python/precis-i18n[${PYTHON_USEDEP}]
-   dev-python/pygobject[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests unittest



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

2022-06-28 Thread Michał Górny
commit: 8e9325f590096ae9d904e23fcd83e280125c38ce
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 29 03:53:48 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 29 03:56:16 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e9325f5

dev-python/python-keystoneclient: Remove old

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

 dev-python/python-keystoneclient/Manifest  |  1 -
 .../python-keystoneclient-4.4.0-r1.ebuild  | 52 --
 2 files changed, 53 deletions(-)

diff --git a/dev-python/python-keystoneclient/Manifest 
b/dev-python/python-keystoneclient/Manifest
index 237ccfe0219d..47559eff7516 100644
--- a/dev-python/python-keystoneclient/Manifest
+++ b/dev-python/python-keystoneclient/Manifest
@@ -1,2 +1 @@
-DIST python-keystoneclient-4.4.0.tar.gz 325003 BLAKE2B 
4c375ce3c3e0c5c97c20ef89fe240c8d36fa6f2cbd32adc91759cf4a94c95eea8b7a90a08be77322253adf8982f12523ec6cb49c4e0997245bc9dbd5f5d9c5ac
 SHA512 
04e601bd193ea6301cf6350618221f857ff7c43cda350368954417559892101aa47ff9e053255bc4c7ca5dd5bfa6ef724eeec49dfcf29c2296033d80a8aa0252
 DIST python-keystoneclient-4.5.0.tar.gz 325120 BLAKE2B 
4511cb381ebfc11afefef0dbb7b9962efd2bbb5ac7455386ef4e831459614dfd51570cfaa1be9672936a6ed45d58b9b29e8326830840e80ffdb758089cbab887
 SHA512 
d3a5034bd05843b733410d4c6fc2c271edb25c837b50ba801031b45a00c0632b4420f2f4dd24dd25e78bf71b5ae31e2ec6b303d85aa4ecea0a89a49b5c67533d

diff --git 
a/dev-python/python-keystoneclient/python-keystoneclient-4.4.0-r1.ebuild 
b/dev-python/python-keystoneclient/python-keystoneclient-4.4.0-r1.ebuild
deleted file mode 100644
index ac801e9b8d4d..
--- a/dev-python/python-keystoneclient/python-keystoneclient-4.4.0-r1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Client Library for OpenStack Identity"
-HOMEPAGE="https://www.openstack.org/";
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
-
-RDEPEND="
-   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
-   >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
-   >=dev-python/keystoneauth-3.4.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-config-5.2.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
-   >dev-python/oslo-serialization-2.19.1[${PYTHON_USEDEP}]
-   >=dev-python/oslo-utils-3.33.0[${PYTHON_USEDEP}]
-   >=dev-python/requests-2.14.2[${PYTHON_USEDEP}]
-   >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
-   >=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
-   test? (
-   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
-   >=dev-python/lxml-4.5.0[${PYTHON_USEDEP}]
-   >=dev-python/oauthlib-0.6.2[${PYTHON_USEDEP}]
-   >=dev-python/os-client-config-1.28.0
-   >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
-   >=dev-python/requests-mock-1.2.0[${PYTHON_USEDEP}]
-   >=dev-python/tempest-17.1.0[${PYTHON_USEDEP}]
-   >=dev-python/testresources-2.0.0[${PYTHON_USEDEP}]
-   >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}]
-   >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests unittest
-
-python_test() {
-   # functional tests require cloud instance access
-   eunittest keystoneclient/tests/unit
-}



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

2022-06-28 Thread Michał Górny
commit: 22cabe7aca73d56f802cc4f6f0c741b4d4374dee
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 29 03:54:05 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 29 03:56:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22cabe7a

dev-python/osc-lib: Remove old

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

 dev-python/osc-lib/Manifest |  1 -
 dev-python/osc-lib/osc-lib-2.5.0.ebuild | 47 -
 2 files changed, 48 deletions(-)

diff --git a/dev-python/osc-lib/Manifest b/dev-python/osc-lib/Manifest
index 21c09ae4e888..c399ba479bde 100644
--- a/dev-python/osc-lib/Manifest
+++ b/dev-python/osc-lib/Manifest
@@ -1,2 +1 @@
-DIST osc-lib-2.5.0.tar.gz 97942 BLAKE2B 
92c2d80463d966c96b3aa18edefc6044a8f20c21484a6ce52e81b57d7e1cf9ea4f3fc5d4a95f01a23c5480a4c4fa06c29d492d48a36f3b6a8df5608203d82045
 SHA512 
00351402b1048f3efaff2d21673c5dfc9cb41683a0ccb40defb6e8aeedd60271172e63fe25394f048dd4aed22a6bd185946d4d324b30ce111264fa6fd85acfd5
 DIST osc-lib-2.6.0.tar.gz 98452 BLAKE2B 
b22bcce4a0cdc787422f4fa2d63cae8a289801f5e04bbb2623f261017887e936d2514016ee38aa5b2e4f6e87f137f1d9f59a289b589cd0d6ccce21c54065ccd1
 SHA512 
b97935da923bbd802ba32a70a91084ca60377a0995b1b204053409c87865dda2a88e8bbf9adf3ed6fb05169448a9d1793a9ea00bc0199f17f86201989159621a

diff --git a/dev-python/osc-lib/osc-lib-2.5.0.ebuild 
b/dev-python/osc-lib/osc-lib-2.5.0.ebuild
deleted file mode 100644
index 2ffd12bd9455..
--- a/dev-python/osc-lib/osc-lib-2.5.0.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="A package of common support modules for writing OSC plugins"
-HOMEPAGE="https://github.com/openstack/osc-lib";
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux"
-
-RDEPEND="
-   >=dev-python/cliff-3.2.0[${PYTHON_USEDEP}]
-   >=dev-python/keystoneauth-3.14.0[${PYTHON_USEDEP}]
-   >=dev-python/openstacksdk-0.15.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
-   >=dev-python/oslo-utils-3.33.0[${PYTHON_USEDEP}]
-   >=dev-python/simplejson-3.5.1[${PYTHON_USEDEP}]
-   >=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
-   test? (
-   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
-   >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
-   >=dev-python/requests-mock-1.2.0[${PYTHON_USEDEP}]
-   >=dev-python/statsd-3.3.0[${PYTHON_USEDEP}]
-   >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}]
-   >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests unittest
-
-src_prepare() {
-   # need to skip all tests under TestTagHelps class
-   # checks exact help message, based on another unittest runner
-   sed -e '179,$s/test_add_tag_/_&/' -i osc_lib/tests/utils/test_tags.py 
|| die
-   distutils-r1_src_prepare
-}



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

2022-06-28 Thread Michał Górny
commit: 31bab0b91815f807a3721503d1810bf0f83d1be3
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 29 03:50:04 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 29 03:56:13 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31bab0b9

dev-python/requests-file: Remove old

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

 .../requests-file/requests-file-1.5.1-r1.ebuild| 23 --
 1 file changed, 23 deletions(-)

diff --git a/dev-python/requests-file/requests-file-1.5.1-r1.ebuild 
b/dev-python/requests-file/requests-file-1.5.1-r1.ebuild
deleted file mode 100644
index 887739b3d06a..
--- a/dev-python/requests-file/requests-file-1.5.1-r1.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# 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="File transport adapter for Requests"
-HOMEPAGE="https://pypi.org/project/requests-file/";
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-
-RDEPEND="
-   dev-python/requests[${PYTHON_USEDEP}]
-   dev-python/six[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest



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

2022-06-28 Thread Michał Górny
commit: f1f3673064abff8da0716c51590f833e60225847
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 29 03:53:13 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 29 03:56:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1f36730

dev-python/python-novaclient: Remove old

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

 dev-python/python-novaclient/Manifest  |  1 -
 .../python-novaclient-17.7.0.ebuild| 59 --
 2 files changed, 60 deletions(-)

diff --git a/dev-python/python-novaclient/Manifest 
b/dev-python/python-novaclient/Manifest
index 514925bc312a..34e6b13c2bd2 100644
--- a/dev-python/python-novaclient/Manifest
+++ b/dev-python/python-novaclient/Manifest
@@ -1,2 +1 @@
-DIST python-novaclient-17.7.0.tar.gz 335462 BLAKE2B 
bfd7853a5100df1d9a0e17f905c9a2d4ea0d13e1345438d42e4af21e348e78c3f4ddca6408f31fb164f4bf3b2770088118e24ec12edd1afb2a4c22b3b0461092
 SHA512 
3942088f2636d186434b7ae4184ee84f5e1e4862a526b33befae09219eb7d08ab02fed64589aa9eefd0ab263ea231969b0e4e59a0427eaae5daaa26516d92ffd
 DIST python-novaclient-18.0.0.tar.gz 335142 BLAKE2B 
0b76ce92897e16310892427efc9062d20d1316be61e7391eaf9aca618844c4420f963591d1aa773b2d1ae1785aaf63888de6aec5baabbbedb09e4937a14d24d2
 SHA512 
fe3c5ad591679329a77421a1ef520823855d0ba1a7aa077d92a8b01e2b8bdab814c8cc94b5f76c1e59d6c7e70355f6efebd7b3596a4d4f74966aaedc38deac4a

diff --git a/dev-python/python-novaclient/python-novaclient-17.7.0.ebuild 
b/dev-python/python-novaclient/python-novaclient-17.7.0.ebuild
deleted file mode 100644
index d277d815c735..
--- a/dev-python/python-novaclient/python-novaclient-17.7.0.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="A client for the OpenStack Nova API"
-HOMEPAGE="https://github.com/openstack/python-novaclient";
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
-
-RDEPEND="
-   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
-   >=dev-python/keystoneauth-3.5.0[${PYTHON_USEDEP}]
-   >=dev-python/iso8601-0.1.11[${PYTHON_USEDEP}]
-   >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
-   >dev-python/oslo-serialization-2.19.1[${PYTHON_USEDEP}]
-   >=dev-python/oslo-utils-3.33.0[${PYTHON_USEDEP}]
-   >=dev-python/prettytable-0.7.2[${PYTHON_USEDEP}]
-   >dev-python/requests-2.12.2[${PYTHON_USEDEP}]
-   >=dev-python/stevedore-2.0.1[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
-   test? (
-   dev-python/bandit[${PYTHON_USEDEP}]
-   dev-python/ddt[${PYTHON_USEDEP}]
-   dev-python/fixtures[${PYTHON_USEDEP}]
-   dev-python/python-keystoneclient[${PYTHON_USEDEP}]
-   dev-python/python-cinderclient[${PYTHON_USEDEP}]
-   dev-python/python-glanceclient[${PYTHON_USEDEP}]
-   dev-python/python-neutronclient[${PYTHON_USEDEP}]
-   dev-python/requests-mock[${PYTHON_USEDEP}]
-   dev-python/openstacksdk[${PYTHON_USEDEP}]
-   dev-python/testscenarios[${PYTHON_USEDEP}]
-   dev-python/testtools[${PYTHON_USEDEP}]
-   dev-python/tempest[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests unittest
-
-src_prepare() {
-   sed -e 's/test_osprofiler/_&/' -i novaclient/tests/unit/test_shell.py 
|| die
-   sed -e 's/novaclient\.tests\.unit\.//' -i 
novaclient/tests/unit/test_api_versions.py || die
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   # functional tests require cloud instance access
-   eunittest -b novaclient/tests/unit
-}



[gentoo-commits] repo/gentoo:master commit in: net-im/element-desktop-bin/

2022-06-28 Thread Stefan Strogin
commit: d3f34e8833b7544c2e9319e43ab3e86f4502e849
Author: Stefan Strogin  gentoo  org>
AuthorDate: Wed Jun 29 03:48:46 2022 +
Commit: Stefan Strogin  gentoo  org>
CommitDate: Wed Jun 29 03:48:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3f34e88

net-im/element-desktop-bin: upgrade 1.10.11 -> 1.10.15

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Stefan Strogin  gentoo.org>

 net-im/element-desktop-bin/Manifest | 2 +-
 ...nt-desktop-bin-1.10.11.ebuild => element-desktop-bin-1.10.15.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-im/element-desktop-bin/Manifest 
b/net-im/element-desktop-bin/Manifest
index f6a9c3346433..c236958eda29 100644
--- a/net-im/element-desktop-bin/Manifest
+++ b/net-im/element-desktop-bin/Manifest
@@ -1 +1 @@
-DIST element-desktop_1.10.11_amd64.deb 95957128 BLAKE2B 
9ca2f74b3d08847f347df2b6c7e4e2cc34e38d7a8ecf4a4f9e1f260330821a176455644ab95a2d267608fd9d1e6eec7b121aaf8f88a2ebf67ab4a1425f03
 SHA512 
553b681b1b4a857ed38e49d56113e5af0d51f37609f9fcd4c9251c3d6ffcfd9e262a433d39f017b0421849af10274d7c2ec93b11f2448110a1bd23d3fbc286fb
+DIST element-desktop_1.10.15_amd64.deb 77384226 BLAKE2B 
3681293b6838c5ee20024784d9348d8d213316b260e883bd3de2655a675702d41179498711203dd04f0c0bbabc1e83422d4294cc511f8ae59443f8fbdf1043e6
 SHA512 
57a81d8d89c850a0103414c1605cec04cbdebab7a7d9ad58363f56f3242a46acce2ce88ab324cba3c76273423e6247e49acb2e4d81e656e32a1b059f66bac6e6

diff --git a/net-im/element-desktop-bin/element-desktop-bin-1.10.11.ebuild 
b/net-im/element-desktop-bin/element-desktop-bin-1.10.15.ebuild
similarity index 100%
rename from net-im/element-desktop-bin/element-desktop-bin-1.10.11.ebuild
rename to net-im/element-desktop-bin/element-desktop-bin-1.10.15.ebuild



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

2022-06-28 Thread Aaron W. Swenson
commit: 44bd829faeee0073749e32d677677a4f871e2b33
Author: Aaron W. Swenson  gentoo  org>
AuthorDate: Wed Jun 29 02:54:34 2022 +
Commit: Aaron W. Swenson  gentoo  org>
CommitDate: Wed Jun 29 02:54:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44bd829f

dev-db/pspg: Cleanup

Signed-off-by: Aaron W. Swenson  gentoo.org>

 dev-db/pspg/Manifest |  3 ---
 dev-db/pspg/pspg-3.1.5-r1.ebuild | 19 ---
 dev-db/pspg/pspg-4.3.0-r1.ebuild | 19 ---
 dev-db/pspg/pspg-5.0.5.ebuild| 19 ---
 4 files changed, 60 deletions(-)

diff --git a/dev-db/pspg/Manifest b/dev-db/pspg/Manifest
index 4e869267dd20..32aa6ebed49d 100644
--- a/dev-db/pspg/Manifest
+++ b/dev-db/pspg/Manifest
@@ -1,4 +1 @@
-DIST pspg-3.1.5.tar.gz 1380515 BLAKE2B 
b9539347d1977a178468127df5f92f8b7be835b7e6edc49720131173b71b22e01b614bcde55e354d32a2ecf1665dcebd27502110786b7595411b5ec782391f01
 SHA512 
287d4794aebc867bf3c344c3747f1d058c1b93710dd0d86de66ae1e0d97961f4e3d511bc0f7df98c309bffc962aaf50b758faab1f8c6f0eb3374450e53ecdccb
-DIST pspg-4.3.0.tar.gz 1398789 BLAKE2B 
51669105e335669ad76f174f7e085954bb5bf65719c929b0153aaa53c1a48d3f6c642cdf20624042dcfe5d7ad43bf2e6c5b5aaa5263d100590fdfa8ae21e62f4
 SHA512 
947052ca480ff271712b4620d7cf6060a5a702f245417c5223d8dcd6a357f71d16bc5bc732f883e80c730d3b699534a5791fc58d37b6c05e40e71e8f814e2c23
-DIST pspg-5.0.5.tar.gz 1828909 BLAKE2B 
9e58735acbeeb42b7aa560d0b418b40ab461e1be2a429696cc07414d7e47e58c12511e6493ab95d16dd1b02b37921aac98acd99c9346dea8a95c55545a4c755f
 SHA512 
9e2a673d7721598b0058ca8738e973b4c6b2e967b6b6d6dffba6d6473760809dce01b0f086ff6fff4e16e10a4fe78f0551e0a42d78a66513eb898c2df7dc0dc8
 DIST pspg-5.5.4.tar.gz 2415002 BLAKE2B 
1b7712318069c5fe69afe5e7477aa2a415d007a1f41af866726b11e65073c507ed12a51de14fc39ee06df9ccbe2763472332f55dda49167547e6ba590850bb5b
 SHA512 
f13f4d7424d7b172a1fc5f963e7390a53f73f5c53ea4af7a9bed32dabc99f657e46cae550e8d5c7dd756b3496dd2ad665f3fd6551e54f9add1b3aef491709572

diff --git a/dev-db/pspg/pspg-3.1.5-r1.ebuild b/dev-db/pspg/pspg-3.1.5-r1.ebuild
deleted file mode 100644
index 58ec04498fc1..
--- a/dev-db/pspg/pspg-3.1.5-r1.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="A better pager for psql and mysql"
-HOMEPAGE="https://github.com/okbob/pspg";
-SRC_URI="https://github.com/okbob/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-DEPEND="sys-libs/ncurses:=
-dev-db/postgresql:=
-sys-libs/readline:="
-RDEPEND="${DEPEND}"
-
-RESTRICT="test"

diff --git a/dev-db/pspg/pspg-4.3.0-r1.ebuild b/dev-db/pspg/pspg-4.3.0-r1.ebuild
deleted file mode 100644
index 51c9c87a2f60..
--- a/dev-db/pspg/pspg-4.3.0-r1.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="A better pager for psql and mysql"
-HOMEPAGE="https://github.com/okbob/pspg";
-SRC_URI="https://github.com/okbob/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-DEPEND="sys-libs/ncurses:=
-dev-db/postgresql:=
-sys-libs/readline:="
-RDEPEND="${DEPEND}"
-
-RESTRICT="test"

diff --git a/dev-db/pspg/pspg-5.0.5.ebuild b/dev-db/pspg/pspg-5.0.5.ebuild
deleted file mode 100644
index cdb6dbe8621c..
--- a/dev-db/pspg/pspg-5.0.5.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="A better pager for psql and mysql"
-HOMEPAGE="https://github.com/okbob/pspg";
-SRC_URI="https://github.com/okbob/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-DEPEND="sys-libs/ncurses:=
-dev-db/postgresql:=
-sys-libs/readline:="
-RDEPEND="${DEPEND}"
-
-RESTRICT="test"



[gentoo-commits] repo/proj/guru:dev commit in: dev-java/gluegen/

2022-06-28 Thread Alessandro Barbieri
commit: e4b3923dcb15a59d83239c46f7ffdca04157738c
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Wed Jun 29 01:24:43 2022 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Wed Jun 29 01:24:43 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e4b3923d

dev-java/gluegen: move variables down

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

 dev-java/gluegen/gluegen-2.3.2.ebuild | 22 +++---
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/dev-java/gluegen/gluegen-2.3.2.ebuild 
b/dev-java/gluegen/gluegen-2.3.2.ebuild
index af18e61b6..37ec4bb34 100644
--- a/dev-java/gluegen/gluegen-2.3.2.ebuild
+++ b/dev-java/gluegen/gluegen-2.3.2.ebuild
@@ -3,18 +3,7 @@
 
 EAPI=8
 
-EANT_BUILD_TARGET="all.no_junit"
-EANT_BUILD_XML="make/build.xml"
-EANT_DOC_TARGET=""
-EANT_EXTRA_ARGS="-Dc.strip.libraries=false"
-EANT_GENTOO_CLASSPATH="antlr,ant-core,jsr305"
-EANT_GENTOO_CLASSPATH_EXTRA="${S}/build/${PN}{,-rt}.jar"
-EANT_NEEDS_TOOLS="yes"
-EANT_TEST_GENTOO_CLASSPATH="${EANT_GENTOO_CLASSPATH},junit-4"
-EANT_TEST_TARGET="junit.run"
-JAVA_ANT_REWRITE_CLASSPATH="yes"
 JAVA_PKG_IUSE="doc source test"
-WANT_ANT_TASKS="ant-antlr ant-contrib dev-java/cpptasks:0"
 
 inherit java-pkg-2 java-ant-2 toolchain-funcs
 
@@ -60,6 +49,17 @@ PATCHES=(
"${FILESDIR}/${P}-remove-static-lib.patch"
"${FILESDIR}/${P}-respect-flags.patch"
 )
+EANT_BUILD_TARGET="all.no_junit"
+EANT_BUILD_XML="make/build.xml"
+EANT_DOC_TARGET=""
+EANT_EXTRA_ARGS="-Dc.strip.libraries=false"
+EANT_GENTOO_CLASSPATH="antlr,ant-core,jsr305"
+EANT_GENTOO_CLASSPATH_EXTRA="${S}/build/${PN}{,-rt}.jar"
+EANT_NEEDS_TOOLS="yes"
+EANT_TEST_GENTOO_CLASSPATH="${EANT_GENTOO_CLASSPATH},junit-4"
+EANT_TEST_TARGET="junit.run"
+JAVA_ANT_REWRITE_CLASSPATH="yes"
+WANT_ANT_TASKS="ant-antlr ant-contrib dev-java/cpptasks:0"
 
 src_prepare() {
tc-export CC



[gentoo-commits] repo/proj/guru:dev commit in: dev-java/jogl/

2022-06-28 Thread Alessandro Barbieri
commit: 6cf3ebd1f2850a1ca5634f403965ca7e14874364
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Wed Jun 29 01:22:41 2022 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Wed Jun 29 01:22:41 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6cf3ebd1

dev-java/jogl: fixes

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

 dev-java/jogl/jogl-2.3.2.ebuild | 38 --
 1 file changed, 24 insertions(+), 14 deletions(-)

diff --git a/dev-java/jogl/jogl-2.3.2.ebuild b/dev-java/jogl/jogl-2.3.2.ebuild
index 849dae946..555e58ea7 100644
--- a/dev-java/jogl/jogl-2.3.2.ebuild
+++ b/dev-java/jogl/jogl-2.3.2.ebuild
@@ -3,16 +3,7 @@
 
 EAPI=8
 
-EANT_BUILD_TARGET="init build.nativewindow build.jogl build.newt 
build.oculusvr one.dir tag.build"
-EANT_BUILD_XML="make/build.xml"
-EANT_DOC_TARGET=""
-EANT_GENTOO_CLASSPATH="gluegen-${SLOT},antlr,ant-core,swt-3.7"
-EANT_GENTOO_CLASSPATH_EXTRA="${S}/build/${PN}/*.jar:${S}/build/nativewindow/*.jar"
-EANT_NEEDS_TOOLS="yes"
-JAVA_ANT_REWRITE_CLASSPATH="yes"
-JAVA_PKG_BSFIX_NAME+=" build-jogl.xml build-nativewindow.xml build-newt.xml"
 JAVA_PKG_IUSE="doc source"
-WANT_ANT_TASKS="ant-antlr ant-contrib dev-java/cpptasks:0"
 
 inherit java-pkg-2 java-ant-2
 
@@ -29,13 +20,13 @@ KEYWORDS="~amd64"
 IUSE="cg"
 
 CDEPEND="
-   ~dev-java/gluegen-${PV}:${SLOT}
dev-java/antlr:0
dev-java/ant-core:0
-   x11-libs/libX11
-   x11-libs/libXxf86vm
+   ~dev-java/gluegen-${PV}:${SLOT}
dev-java/swt:3.7
virtual/opengl
+   x11-libs/libX11
+   x11-libs/libXxf86vm
cg? ( media-gfx/nvidia-cg-toolkit )
 "
 RDEPEND="
@@ -46,6 +37,17 @@ DEPEND="
${CDEPEND}
>=virtual/jdk-1.8:*
 "
+BDEPEND="dev-vcs/git"
+
+EANT_BUILD_TARGET="init build.nativewindow build.jogl build.newt 
build.oculusvr one.dir tag.build"
+EANT_BUILD_XML="make/build.xml"
+EANT_DOC_TARGET=""
+EANT_GENTOO_CLASSPATH="gluegen-${SLOT},antlr,ant-core,swt-3.7"
+EANT_GENTOO_CLASSPATH_EXTRA="${S}/build/${PN}/*.jar:${S}/build/nativewindow/*.jar"
+EANT_NEEDS_TOOLS="yes"
+JAVA_ANT_REWRITE_CLASSPATH="yes"
+JAVA_PKG_BSFIX_NAME+=" build-jogl.xml build-nativewindow.xml build-newt.xml"
+WANT_ANT_TASKS="ant-antlr ant-contrib dev-java/cpptasks:0"
 
 # upstream has a crude way to call the junit tests, which cause a lot of 
trouble to pass
 # our test classpath...
@@ -53,8 +55,8 @@ RESTRICT="test"
 
 src_prepare() {
default
-   #we keep make/lib/plugin3/plugin3-public.jar
-   find -name 'make/lib/swt/*.jar' -delete -print || die
+   rm -r make/lib || die
+   java-pkg_clean
 
# Empty filesets are never out of date!
sed -i -e 's///' make/build*xml || 
die
@@ -65,6 +67,14 @@ src_prepare() {
EANT_EXTRA_ARGS+=" -Dgluegen-rt.jar=$(java-pkg_getjar gluegen-${SLOT} 
gluegen-rt.jar)"
 
use cg && EANT_EXTRA_ARGS+=" -Djogl.cg=1 -Dx11.cg.lib=/usr/lib"
+   export EANT_EXTRA_ARGS
+
+   #it want a git repo
+   git init || die
+   git config --global user.email "y...@example.com" || die
+   git config --global user.name "Your Name" || die
+   git add . || die
+   git commit -m 'init' || die
 }
 
 src_install() {



[gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-apcu/

2022-06-28 Thread Brian Evans
commit: 8bf82ab70e81e2852e7249dfc30b8d246020e866
Author: Brian Evans  gentoo  org>
AuthorDate: Wed Jun 29 01:24:14 2022 +
Commit: Brian Evans  gentoo  org>
CommitDate: Wed Jun 29 01:24:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bf82ab7

dev-php/pecl-apcu: Drop old PHP targets

Signed-off-by: Brian Evans  gentoo.org>

 dev-php/pecl-apcu/pecl-apcu-5.1.21.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-php/pecl-apcu/pecl-apcu-5.1.21.ebuild 
b/dev-php/pecl-apcu/pecl-apcu-5.1.21.ebuild
index 76efe265be57..8f7d2af61a28 100644
--- a/dev-php/pecl-apcu/pecl-apcu-5.1.21.ebuild
+++ b/dev-php/pecl-apcu/pecl-apcu-5.1.21.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -8,7 +8,7 @@ PHP_EXT_INI="yes"
 PHP_EXT_ZENDEXT="no"
 DOCS=( NOTICE README.md TECHNOTES.txt )
 
-USE_PHP="php7-2 php7-3 php7-4 php8-0 php8-1"
+USE_PHP="php7-4 php8-0 php8-1"
 
 inherit php-ext-pecl-r3
 



[gentoo-commits] repo/proj/guru:dev commit in: dev-java/jcuber/

2022-06-28 Thread Alessandro Barbieri
commit: 3e0ed7c02f2d624f7596a061957d81d665783d5c
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Wed Jun 29 00:37:53 2022 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Wed Jun 29 00:38:54 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3e0ed7c0

dev-java/jcuber: fix install phase

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

 dev-java/jcuber/{jcuber-4.7.ebuild => jcuber-4.7-r1.ebuild} | 10 --
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/dev-java/jcuber/jcuber-4.7.ebuild 
b/dev-java/jcuber/jcuber-4.7-r1.ebuild
similarity index 74%
rename from dev-java/jcuber/jcuber-4.7.ebuild
rename to dev-java/jcuber/jcuber-4.7-r1.ebuild
index 5b2c0cab0..bc05c7535 100644
--- a/dev-java/jcuber/jcuber-4.7.ebuild
+++ b/dev-java/jcuber/jcuber-4.7-r1.ebuild
@@ -42,8 +42,14 @@ src_compile() {
 }
 
 src_install() {
-   DESTDIR="${D}" emake install
-   mv "${ED}/usr/share/doc/${PN}/example" 
"${ED}/usr/share/doc/${PF}/examples" || die
+   MAKEOPTS="-j1" DESTDIR="${D}" emake install
+   docinto examples
+   dodoc -r "${ED}"/usr/share/doc/${PN}/example/*
+   docinto html/tools-dev
+   dodoc -r "${ED}"/usr/share/doc/${PF}/tools-dev/html/*
java-pkg_dojar "${ED}/usr/share/java/CubeReader.jar"
+
+   rm -r "${ED}/usr/share/doc/${PF}/tools-dev" || die
+   rm -r "${ED}/usr/share/doc/${PN}" || die
rm -r "${ED}/usr/share/java/CubeReader.jar" || die
 }



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

2022-06-28 Thread Sam James
commit: fb1519c9eed35176ae9c08d0092ec3e44f920c67
Author: Sam James  gentoo  org>
AuthorDate: Wed Jun 29 00:10:01 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jun 29 00:10:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb1519c9

dev-python/requests-file: Stabilize 1.5.1-r2 ALLARCHES, #854921

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

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

diff --git a/dev-python/requests-file/requests-file-1.5.1-r2.ebuild 
b/dev-python/requests-file/requests-file-1.5.1-r2.ebuild
index 363756b642b8..538f84179910 100644
--- a/dev-python/requests-file/requests-file-1.5.1-r2.ebuild
+++ b/dev-python/requests-file/requests-file-1.5.1-r2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 
 RDEPEND="
dev-python/requests[${PYTHON_USEDEP}]



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

2022-06-28 Thread Sam James
commit: e2d089e48991d07839ced092d49d8dd286913ea1
Author: Sam James  gentoo  org>
AuthorDate: Wed Jun 29 00:10:24 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jun 29 00:10:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2d089e4

dev-python/python-nbxmpp: Stabilize 3.1.0 ALLARCHES, #854933

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

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

diff --git a/dev-python/python-nbxmpp/python-nbxmpp-3.1.0.ebuild 
b/dev-python/python-nbxmpp/python-nbxmpp-3.1.0.ebuild
index 20ab63a80429..fafffe2d9512 100644
--- a/dev-python/python-nbxmpp/python-nbxmpp-3.1.0.ebuild
+++ b/dev-python/python-nbxmpp/python-nbxmpp-3.1.0.ebuild
@@ -19,7 +19,7 @@ SRC_URI="
 
 SLOT="0"
 LICENSE="GPL-3"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm64 ~riscv x86"
 
 RDEPEND="
dev-libs/gobject-introspection



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

2022-06-28 Thread Sam James
commit: 211dac0cc4bc49277eaf05c850399dd1564b7430
Author: Sam James  gentoo  org>
AuthorDate: Wed Jun 29 00:09:49 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jun 29 00:09:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=211dac0c

media-libs/portmidi: Stabilize 234-r1 x86, #854807

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

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

diff --git a/media-libs/portmidi/portmidi-234-r1.ebuild 
b/media-libs/portmidi/portmidi-234-r1.ebuild
index 443082bdbb21..0844f44b2322 100644
--- a/media-libs/portmidi/portmidi-234-r1.ebuild
+++ b/media-libs/portmidi/portmidi-234-r1.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://sourceforge/project/portmedia/${MY_P}.zip"
 
 LICENSE="MIT"
 SLOT="0"
-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="debug doc java python static-libs test-programs"
 
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"



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

2022-06-28 Thread Sam James
commit: 1b90c5599443e822b6c7fef11a557e74b3555f45
Author: Sam James  gentoo  org>
AuthorDate: Wed Jun 29 00:09:38 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jun 29 00:09:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b90c559

media-plugins/ams-lv2: Stabilize 1.2.2-r1 x86, #854801

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

 media-plugins/ams-lv2/ams-lv2-1.2.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/ams-lv2/ams-lv2-1.2.2-r1.ebuild 
b/media-plugins/ams-lv2/ams-lv2-1.2.2-r1.ebuild
index b695320fd5aa..9a5f5341bbaa 100644
--- a/media-plugins/ams-lv2/ams-lv2-1.2.2-r1.ebuild
+++ b/media-plugins/ams-lv2/ams-lv2-1.2.2-r1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/blablack/ams-lv2/archive/${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE=""
 
 RDEPEND="dev-cpp/gtkmm:2.4



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

2022-06-28 Thread Sam James
commit: 036e31d860ee6318b3c297fd3027137706c14696
Author: Sam James  gentoo  org>
AuthorDate: Wed Jun 29 00:09:43 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jun 29 00:09:43 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=036e31d8

media-libs/lvtk: Stabilize 1.2.0-r2 x86, #854804

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

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

diff --git a/media-libs/lvtk/lvtk-1.2.0-r2.ebuild 
b/media-libs/lvtk/lvtk-1.2.0-r2.ebuild
index ed83c4388978..25fca610488e 100644
--- a/media-libs/lvtk/lvtk-1.2.0-r2.ebuild
+++ b/media-libs/lvtk/lvtk-1.2.0-r2.ebuild
@@ -17,7 +17,7 @@ SRC_URI="https://github.com/lvtk/lvtk/archive/${PV}.tar.gz -> 
${P}.tar.gz
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="debug doc examples +gtk2 +tools"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 



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

2022-06-28 Thread Sam James
commit: a3945ace38af931518c9c079d18ee4d47442cf66
Author: Sam James  gentoo  org>
AuthorDate: Wed Jun 29 00:10:13 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jun 29 00:10:13 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3945ace

dev-python/reedsolomon: Stabilize 1.5.4-r2 x86, #854927

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

 dev-python/reedsolomon/reedsolomon-1.5.4-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/reedsolomon/reedsolomon-1.5.4-r2.ebuild 
b/dev-python/reedsolomon/reedsolomon-1.5.4-r2.ebuild
index d00545330c78..5dc49b5abd16 100644
--- a/dev-python/reedsolomon/reedsolomon-1.5.4-r2.ebuild
+++ b/dev-python/reedsolomon/reedsolomon-1.5.4-r2.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/tomerfiliba/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2022-06-28 Thread Sam James
commit: 3e4708b29d6c8460a0227237f7354edbb28640ed
Author: Sam James  gentoo  org>
AuthorDate: Wed Jun 29 00:10:18 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jun 29 00:10:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e4708b2

dev-python/python-novaclient: Stabilize 18.0.0 ALLARCHES, #854930

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

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

diff --git a/dev-python/python-novaclient/python-novaclient-18.0.0.ebuild 
b/dev-python/python-novaclient/python-novaclient-18.0.0.ebuild
index a3888aca7507..9d39e46619a1 100644
--- a/dev-python/python-novaclient/python-novaclient-18.0.0.ebuild
+++ b/dev-python/python-novaclient/python-novaclient-18.0.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"
 
 RDEPEND="
>dev-python/pbr-2.1.0[${PYTHON_USEDEP}]



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

2022-06-28 Thread Sam James
commit: 1648f438404af91cc849863a58948df0fc54f312
Author: Sam James  gentoo  org>
AuthorDate: Wed Jun 29 00:10:30 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jun 29 00:10:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1648f438

dev-python/osc-lib: Stabilize 2.6.0 ALLARCHES, #854942

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

 dev-python/osc-lib/osc-lib-2.6.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/osc-lib/osc-lib-2.6.0.ebuild 
b/dev-python/osc-lib/osc-lib-2.6.0.ebuild
index 7971a2fec01b..4b1581252d95 100644
--- a/dev-python/osc-lib/osc-lib-2.6.0.ebuild
+++ b/dev-python/osc-lib/osc-lib-2.6.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~arm64 ~riscv x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
>=dev-python/cliff-3.2.0[${PYTHON_USEDEP}]



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

2022-06-28 Thread Sam James
commit: ed89bd89175a30fa31ba37b0d316bad1e411474e
Author: Sam James  gentoo  org>
AuthorDate: Wed Jun 29 00:09:33 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jun 29 00:09:33 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed89bd89

media-sound/lash: Stabilize 0.5.4-r5 x86, #854789

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

 media-sound/lash/lash-0.5.4-r5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/lash/lash-0.5.4-r5.ebuild 
b/media-sound/lash/lash-0.5.4-r5.ebuild
index ac4fa0ffb6d3..8d4d2c12b7f1 100644
--- a/media-sound/lash/lash-0.5.4-r5.ebuild
+++ b/media-sound/lash/lash-0.5.4-r5.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://nongnu/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 arm arm64 ppc ppc64 ~riscv sparc ~x86"
+KEYWORDS="~amd64 arm arm64 ppc ppc64 ~riscv sparc x86"
 IUSE="alsa debug gtk python static-libs" # doc
 
 BDEPEND="



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

2022-06-28 Thread Sam James
commit: 511ec6618ad1f76652363edbb53065d8e8a3d817
Author: Sam James  gentoo  org>
AuthorDate: Wed Jun 29 00:10:07 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jun 29 00:10:07 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=511ec661

dev-python/rencode: Stabilize 1.0.6-r3 x86, #854924

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

 dev-python/rencode/rencode-1.0.6-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/rencode/rencode-1.0.6-r3.ebuild 
b/dev-python/rencode/rencode-1.0.6-r3.ebuild
index 03c76dd1dc85..fa051ddf6ece 100644
--- a/dev-python/rencode/rencode-1.0.6-r3.ebuild
+++ b/dev-python/rencode/rencode-1.0.6-r3.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/aresch/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~sparc x86 ~amd64-linux ~x86-linux"
 
 BDEPEND="dev-python/cython[${PYTHON_USEDEP}]"
 



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

2022-06-28 Thread Sam James
commit: d758b86ddb8be928423ec5ea30f54f669070cb1a
Author: Sam James  gentoo  org>
AuthorDate: Wed Jun 29 00:10:27 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jun 29 00:10:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d758b86d

dev-python/python-keystoneclient: Stabilize 4.5.0 ALLARCHES, #854936

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

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

diff --git 
a/dev-python/python-keystoneclient/python-keystoneclient-4.5.0.ebuild 
b/dev-python/python-keystoneclient/python-keystoneclient-4.5.0.ebuild
index 1d319bef1a1a..97d6d25ea891 100644
--- a/dev-python/python-keystoneclient/python-keystoneclient-4.5.0.ebuild
+++ b/dev-python/python-keystoneclient/python-keystoneclient-4.5.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"
 
 RDEPEND="
>dev-python/pbr-2.1.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-php/igbinary/

2022-06-28 Thread Sam James
commit: 7661f378cee44282ced360569703407bce2c43ee
Author: Sam James  gentoo  org>
AuthorDate: Wed Jun 29 00:09:52 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jun 29 00:09:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7661f378

dev-php/igbinary: Stabilize 3.2.7 x86, #854849

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

 dev-php/igbinary/igbinary-3.2.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/igbinary/igbinary-3.2.7.ebuild 
b/dev-php/igbinary/igbinary-3.2.7.ebuild
index 663e3efcb46b..b92609cb6eb0 100644
--- a/dev-php/igbinary/igbinary-3.2.7.ebuild
+++ b/dev-php/igbinary/igbinary-3.2.7.ebuild
@@ -12,7 +12,7 @@ USE_PHP="php7-3 php7-4 php8-0 php8-1"
 
 inherit php-ext-source-r3
 
-KEYWORDS="~amd64 arm ~arm64 ~x86"
+KEYWORDS="~amd64 arm ~arm64 x86"
 
 DESCRIPTION="A fast drop-in replacement for the standard PHP serialize"
 HOMEPAGE="https://github.com/igbinary/igbinary";



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

2022-06-28 Thread Sam James
commit: 4237aff222a1f435f3cd335ddfcdda9513290d28
Author: Sam James  gentoo  org>
AuthorDate: Wed Jun 29 00:07:53 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jun 29 00:08:02 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4237aff2

profiles: mask broken OpenSSL versions

I should've pre-emptively masked these before to explain to avoid
someone bumping them.

See: e7b9a095de5e6f78668385223fa6ccd9fdeb36ae
See: ac22f739ccb5a81016f42859ec489d9fdbc416dd
See: e509d05a877800358c778520f149e51c978ca0f4
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index c454d1c3be13..1e9b1d33bf8c 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -33,6 +33,15 @@
 
 #--- END OF EXAMPLES ---
 
+# Sam James  (2022-06-29)
+# Pre-emptively mask broken upstream versions.
+# 1. openssl 1.1.1o fails tests 
(https://github.com/openssl/openssl/issues/18619)
+# 2. openssl 3.0.4 has a buffer overflow w/ AVX512 
(https://github.com/openssl/openssl/issues/18625)
+# Gentoo isn't vulnerable to the original CVE which caused these releases
+# (CVE-2022-2068) as we have our own rehash script.
+=dev-libs/openssl-1.1.1p
+=dev-libs/openssl-3.0.4
+
 # Piotr Karbowski  (2022-06-26)
 # Abandoned upstream, depends on API that no longer exists.
 # Removal on 2022-07-26.



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

2022-06-28 Thread Sam James
commit: ac22f739ccb5a81016f42859ec489d9fdbc416dd
Author: Sam James  gentoo  org>
AuthorDate: Wed Jun 29 00:01:53 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jun 29 00:01:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac22f739

Revert "dev-libs/openssl: Add REQUIRED_USE for tests"

This reverts commit 47566b1990e0c860841eb9b53b16b3d033a2cce3.

This is a hack which avoids the real issue - doesn't mention
the bug upstream which I reported that explains why we need
this. I don't think we want to keep this workaround in.

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

 dev-libs/openssl/openssl-1.1.1p.ebuild | 2 --
 1 file changed, 2 deletions(-)

diff --git a/dev-libs/openssl/openssl-1.1.1p.ebuild 
b/dev-libs/openssl/openssl-1.1.1p.ebuild
index 21020a80a28c..90f1683c106f 100644
--- a/dev-libs/openssl/openssl-1.1.1p.ebuild
+++ b/dev-libs/openssl/openssl-1.1.1p.ebuild
@@ -38,8 +38,6 @@ PDEPEND="app-misc/ca-certificates"
 # force upgrade to prevent broken login, bug #696950
 RDEPEND+=" !

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

2022-06-28 Thread Sam James
commit: e509d05a877800358c778520f149e51c978ca0f4
Author: Sam James  gentoo  org>
AuthorDate: Wed Jun 29 00:01:16 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jun 29 00:01:16 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e509d05a

Revert "dev-libs/openssl: add 3.0.4"

This reverts commit 0b821769c686087817a412b9f6f47ad03603491b.

This doesn't include the AVX512 overflow patch and
we'd discussed not bumping it on IRC. But I should've
pre-emptively masked / added a note in the ebuild.

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

 dev-libs/openssl/Manifest |   2 -
 dev-libs/openssl/openssl-3.0.4.ebuild | 323 --
 2 files changed, 325 deletions(-)

diff --git a/dev-libs/openssl/Manifest b/dev-libs/openssl/Manifest
index 86edfb8addcb..fd4aba44df2c 100644
--- a/dev-libs/openssl/Manifest
+++ b/dev-libs/openssl/Manifest
@@ -13,5 +13,3 @@ DIST openssl-3.0.2.tar.gz.asc 488 BLAKE2B 
2f6482114271c4f512159fa159486a3b347063
 DIST openssl-3.0.3-test-fixes-expiry.patch.xz 29056 BLAKE2B 
11be776b9c4baec770d81ff180581d7d8292261f32ebfcb2cfd399d684cef1b9e7b4575d906f23e8a61d853eafb178e1b0e01d9324dbe598c876c0ef74bcf5e8
 SHA512 
23bc571dfca453deb4f1812aea5fc1bcf1c27358d8638a66ce7f359a698b09a35bdc86e01db36aa5e59b37cc7e36f0ced6f1463b383fb0d904aada69f5d5cb04
 DIST openssl-3.0.3.tar.gz 15058905 BLAKE2B 
8141d13dbea2f1febdd4e46aa404e9f3bac51e1fdc0c9b0df8bf3bf6852e18b09201a2a8cbee99f72e8d6de660834093449b7a14a3fbdda8511286ca3b6743e7
 SHA512 
949472025211fabdaf2564122f0a9a3baef0facb6373e90cf6c4485164a50898050b179722d0b358c4d8cf1787384ea30d5fd03b98757634631d3e8978509b1a
 DIST openssl-3.0.3.tar.gz.asc 488 BLAKE2B 
3f31e3a73706b69683220e05b1b4ddc75dc3e7e12652dca711e4aa0eb3c023ef736aee9ade15172d7f28e1e1af03e86d4854ec6c3d167cad42882f483c5e56d4
 SHA512 
04afe65c6af1ae43a9967462383a6a4f567f5acff19ec1952cd6fce2dc3c3d4dfb3cb54126562724c148f40dcb8abf727282d35730bbf36f82b5c6bacace
-DIST openssl-3.0.4.tar.gz 15069605 BLAKE2B 
e8ef09d74aa128fee0ddc347458a41cde65af07a6e6836889a0230cd7989e46b5d10a4930eb7a63c0cf93485914ec33665d14637b6c27fd442c0e9becb2d2a86
 SHA512 
478cd801dc4787688e6d9062969ae738c24f869bb186f717ad3be54ae8f2630e5cd845c504efd3405ea1ecda07ebee00014cc6ef7bca9585a6240cf89d516557
-DIST openssl-3.0.4.tar.gz.asc 488 BLAKE2B 
54f652ae78c6f39aef970fd7372808c876d37a823cc31431d770db67caf11342d1045992e393242d4c73253e4e16640dd9bd56203864394e907976918909e5dc
 SHA512 
c30af3cda92b06cff864ed33c17d8dcb8c7d429ed8419f96d19d3049dfaa268c73ec7753815a134b069ae7f4ea20fb4bcdd04f86d33628592ce4500777494c85

diff --git a/dev-libs/openssl/openssl-3.0.4.ebuild 
b/dev-libs/openssl/openssl-3.0.4.ebuild
deleted file mode 100644
index ede15424a910..
--- a/dev-libs/openssl/openssl-3.0.4.ebuild
+++ /dev/null
@@ -1,323 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/openssl.org.asc
-inherit edo flag-o-matic linux-info toolchain-funcs multilib-minimal 
multiprocessing verify-sig
-
-DESCRIPTION="Robust, full-featured Open Source Toolkit for the Transport Layer 
Security (TLS)"
-HOMEPAGE="https://www.openssl.org/";
-
-MY_P=${P/_/-}
-
-if [[ ${PV} ==  ]] ; then
-   EGIT_REPO_URI="https://github.com/openssl/openssl.git";
-
-   inherit git-r3
-else
-   SRC_URI="mirror://openssl/source/${MY_P}.tar.gz
-   verify-sig? ( mirror://openssl/source/${MY_P}.tar.gz.asc )"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~x86-linux"
-fi
-
-S="${WORKDIR}"/${MY_P}
-
-LICENSE="Apache-2.0"
-SLOT="0/3" # .so version of libssl/libcrypto
-IUSE="+asm cpu_flags_x86_sse2 fips ktls rfc3779 sctp static-libs test 
tls-compression vanilla verify-sig weak-ssl-ciphers"
-RESTRICT="!test? ( test )"
-
-COMMON_DEPEND="
-   >=app-misc/c_rehash-1.7-r1
-   tls-compression? ( 
>=sys-libs/zlib-1.2.8-r1[static-libs(+)?,${MULTILIB_USEDEP}] )
-"
-BDEPEND="
-   >=dev-lang/perl-5
-   sctp? ( >=net-misc/lksctp-tools-1.0.12 )
-   test? (
-   sys-apps/diffutils
-   sys-devel/bc
-   sys-process/procps
-   )
-   verify-sig? ( sec-keys/openpgp-keys-openssl )"
-
-DEPEND="${COMMON_DEPEND}"
-RDEPEND="${COMMON_DEPEND}"
-PDEPEND="app-misc/ca-certificates"
-
-REQUIRED_USE="test? ( rfc3779 )"
-
-MULTILIB_WRAPPED_HEADERS=(
-   /usr/include/openssl/configuration.h
-)
-
-pkg_setup() {
-   if use ktls ; then
-   if kernel_is -lt 4 18 ; then
-   ewarn "Kernel implementation of TLS (USE=ktls) requires 
kernel >=4.18!"
-   else
-   CONFIG_CHECK="~TLS ~TLS_DEVICE"
-   ERROR_TLS="You will be unable to offload TLS to kernel 
because CONFIG_TLS is not set!"
-   ERROR_TLS_DEVICE="You will be unable to offload TLS to 
kernel because CONFIG_TL

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

2022-06-28 Thread Sam James
commit: e7b9a095de5e6f78668385223fa6ccd9fdeb36ae
Author: Sam James  gentoo  org>
AuthorDate: Wed Jun 29 00:02:17 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jun 29 00:02:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7b9a095

Revert "dev-libs/openssl: add 1.1.1p"

This reverts commit eb0b67201d70d0def107d9db7f78844815113274.

Given the previous test issue and we're not vulnerable to the rehash
script CVE anyway (we use our own), I don't think we want to bump to it yet.

We'd discussed not bumping it on IRC. But I should've
pre-emptively masked / added a note in the ebuild.

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

 dev-libs/openssl/Manifest  |   2 -
 dev-libs/openssl/openssl-1.1.1p.ebuild | 336 -
 2 files changed, 338 deletions(-)

diff --git a/dev-libs/openssl/Manifest b/dev-libs/openssl/Manifest
index fd4aba44df2c..3984e90d7345 100644
--- a/dev-libs/openssl/Manifest
+++ b/dev-libs/openssl/Manifest
@@ -6,8 +6,6 @@ DIST openssl-1.1.1n.tar.gz.asc 488 BLAKE2B 
8fc18fdc884473dc4c243499cc3528691a9ec
 DIST openssl-1.1.1o-test-fixes-expiry.patch.xz 6180 BLAKE2B 
23ef36d7bd05c98f7fab6de25681a53fa7a558d114548836b6cd90a57c4f4e45dc9fb622936053608b463320605b7df60db2d2caf3811b249f6ead3791a1c081
 SHA512 
577aec97fb31cd9efe3b30d82c560d3e7da57ae52c4de0f86e951b777a673830baaadcc5eb366c523024d37405531c6d32de26bbbc1e77df15c7822c72e937e6
 DIST openssl-1.1.1o.tar.gz 9856386 BLAKE2B 
5bd355fd17adf43ba4e3bf1a8036ceb724edd4f4ab80dc25aecc3d2647372e9db2bc12e2b89791fc4b6f7fd95a7b68e00490d09ca6518d25ab990ee27798e641
 SHA512 
75b2f1499cb4640229eb6cd35d85cbff2e19db17b959ac4d04b60f1b395b73567f9003521452a0fcfeea9b31b26de0a7bccf476ecf9caae02298f3647cfb7e23
 DIST openssl-1.1.1o.tar.gz.asc 488 BLAKE2B 
a03a967e7e2124d1a76ad7765e2f48065f40d32ba102a433be603ee8f86b26a2d246dcb97a95bd694ef3005889ce4f1951f76d39fe1d683f92da1aa3023e9c2d
 SHA512 
da6d88de7c1cd807b6089d50f8bb102c317c0b45ca26e517e3e400c5c65f787d94a1ee522af76279e93790a7fb491348cf25ffcfd66ecb9a9d35209328cb221e
-DIST openssl-1.1.1p.tar.gz 9860217 BLAKE2B 
4354753a5e52393c9cc4569954c2cac6d89a1e204fa4f9ca00a60492782d29f8952fb92664cdbb3576c6443d3cb2eacebea51db584738589f3598b40df579b12
 SHA512 
203470b1cd37bdbfabfec5ef37fc97c991d9943f070c988316f6396b09dae7cea16ac884bd8646dbf7dd1ed40ebde6bdfa5700beee2d714d07c97cc70b4e48d9
-DIST openssl-1.1.1p.tar.gz.asc 488 BLAKE2B 
e68c8a4c992c2448b48428137f61f91fb89e4814f6e80c5525cea695bcf898326eca729f31b953fbd7ff51b448004101ca78abfbd3138ec2389596faa3eafc2f
 SHA512 
c85d65df1ed0f1ae87b799d794ea43e32c8ecaf85caf6e36fbbd4a890ef1d47710380d3846296e0124898680be66113a959ad974e0448bc00d1253794dc48972
 DIST openssl-3.0.2.tar.gz 15038141 BLAKE2B 
140c4c80a0cad89cb0059fef6a4cd421460e6af9a3973f7a3eb5e39f64c0d44794d46e7a869e5235fced139f2249351e37a9ee5ebaa17f2708d63141ebebf919
 SHA512 
f986850d5be908b4d6b5fd7091bc4652d7378c9bccebfbc5becd7753843c04c1eb61a1749c432139d263dfac33df0b1f6c773664b485cad47542266823a4eb03
 DIST openssl-3.0.2.tar.gz.asc 488 BLAKE2B 
2f6482114271c4f512159fa159486a3b3470637d770cd1614fda004918d06ed9ab562e655d1580d2ebb05745ec72987488c2161b72d078017cc157003d4205da
 SHA512 
4303391a58107c76ad9b05510f5bfc95f687f4cb2f9ff5b03fb262ba99b573423ab83f0437471199954496799b343191b889ad9ef8fabdd7ee4ec3ec9b5f1d81
 DIST openssl-3.0.3-test-fixes-expiry.patch.xz 29056 BLAKE2B 
11be776b9c4baec770d81ff180581d7d8292261f32ebfcb2cfd399d684cef1b9e7b4575d906f23e8a61d853eafb178e1b0e01d9324dbe598c876c0ef74bcf5e8
 SHA512 
23bc571dfca453deb4f1812aea5fc1bcf1c27358d8638a66ce7f359a698b09a35bdc86e01db36aa5e59b37cc7e36f0ced6f1463b383fb0d904aada69f5d5cb04

diff --git a/dev-libs/openssl/openssl-1.1.1p.ebuild 
b/dev-libs/openssl/openssl-1.1.1p.ebuild
deleted file mode 100644
index 90f1683c106f..
--- a/dev-libs/openssl/openssl-1.1.1p.ebuild
+++ /dev/null
@@ -1,336 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/openssl.org.asc
-inherit edo flag-o-matic toolchain-funcs multilib-minimal verify-sig
-
-MY_P=${P/_/-}
-DESCRIPTION="Full-strength general purpose cryptography library (including SSL 
and TLS)"
-HOMEPAGE="https://www.openssl.org/";
-SRC_URI="mirror://openssl/source/${MY_P}.tar.gz
-   verify-sig? ( mirror://openssl/source/${MY_P}.tar.gz.asc )"
-S="${WORKDIR}/${MY_P}"
-
-LICENSE="openssl"
-SLOT="0/1.1" # .so version of libssl/libcrypto
-if [[ ${PV} != *_pre* ]] ; then
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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 ~x86-winnt"
-fi
-IUSE="+asm rfc3779 sctp cpu_flags_x86_sse2 sslv3 static-libs test 
tls-compression tls-heartbeat vanilla verify-sig weak-ssl-ciphers"
-RESTRICT="!test? ( test )"
-
-RDEPEND=">=app-misc/c_rehash-1.7-r1
-   tls-compression

[gentoo-commits] proj/tinderbox-cluster:master commit in: buildbot_gentoo_ci/steps/

2022-06-28 Thread Magnus Granberg
commit: c556e56ad98d3e81fac06417661fd7edf2c1c9fb
Author: Magnus Granberg  gentoo  org>
AuthorDate: Tue Jun 28 23:26:22 2022 +
Commit: Magnus Granberg  gentoo  org>
CommitDate: Tue Jun 28 23:26:22 2022 +
URL:
https://gitweb.gentoo.org/proj/tinderbox-cluster.git/commit/?id=c556e56a

Change emerge retrys to 5 from 3

Signed-off-by: Magnus Granberg  gentoo.org>

 buildbot_gentoo_ci/steps/builders.py | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/buildbot_gentoo_ci/steps/builders.py 
b/buildbot_gentoo_ci/steps/builders.py
index fa11290..dcd54c2 100644
--- a/buildbot_gentoo_ci/steps/builders.py
+++ b/buildbot_gentoo_ci/steps/builders.py
@@ -18,7 +18,7 @@ from buildbot.process.results import SKIPPED
 from buildbot.plugins import steps
 
 #FIXME: should be set in config
-hosturl = 'http://77.110.8.67:8000'
+hosturl = 'http://90.231.13.235:8000'
 
 def PersOutputOfEmerge(rc, stdout, stderr):
 emerge_output = {}
@@ -856,7 +856,8 @@ class CheckEmergeLogs(BuildStep):
 if self.step == 'pre-build':
 print(emerge_output)
 # this should be set in the config
-if self.getProperty('rerun') <= 3:
+retrays = 5
+if self.getProperty('rerun') <= retrays:
 # when we need to change use. we could rerun pre-build with
 # --autounmask-use=y --autounmask-write=y --autounmask-only=y
 # but we use --binpkg--respect-use=y in EMERGE_DEFAULT_OPTS



[gentoo-commits] repo/proj/guru:dev commit in: app-doc/ford/

2022-06-28 Thread Sergey Torokhov
commit: 3890811fec322af84e04d71421b637adaef67015
Author: Sergey Torokhov  yandex  ru>
AuthorDate: Tue Jun 28 21:45:08 2022 +
Commit: Sergey Torokhov  yandex  ru>
CommitDate: Tue Jun 28 21:45:08 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3890811f

app-doc/ford: 6.1.12 version bump

Signed-off-by: Sergey Torokhov  yandex.ru>

 app-doc/ford/Manifest   |  1 +
 app-doc/ford/ford-6.1.12.ebuild | 48 +
 2 files changed, 49 insertions(+)

diff --git a/app-doc/ford/Manifest b/app-doc/ford/Manifest
index 24e043b62..7bad6fcbc 100644
--- a/app-doc/ford/Manifest
+++ b/app-doc/ford/Manifest
@@ -1,2 +1,3 @@
 DIST FORD-6.1.10.tar.gz 5847455 BLAKE2B 
b575be88434b129289c5098fc3da0216190fa2a953a4ed2bfcc1275a22cc37d8c096dad6fb45ff2606a87ffa179ce31b172ff0a641cf40444f151b30c2cb3bc0
 SHA512 
2116bb28a3d678216d3b61d53955ef6f199e50d2286491d0d9e867a2f8d53a8c7b5a1cace1671390380a21bdaa86814a3d9625d3919bdce03a22b25b02e06757
 DIST FORD-6.1.11.tar.gz 5848224 BLAKE2B 
f8092b678ab1621f3d295e77b8a308d2f4787baa77b989a0dc07a9b23c0723945a97bca81bda879d7929b8910eb49b635bd052304b3b6d1ba25f8dbb552b676e
 SHA512 
325e8c05b5df6435c164adf24871d9743d2927d862010b005ba87dafd0e44cf1f52dae50d1b2bec5a5f39f935859286e0c9ba5156b24843bc58dc1335c5e1913
+DIST FORD-6.1.12.tar.gz 5849020 BLAKE2B 
e72937b1930cd774abc444c5a87371525b494caf7dc60f26b6bbae562abb1406fba725c82b4de3b7353251a17bd8c2b4e725e008699a492cce5b7b3e05ca98a4
 SHA512 
8aed12eb0471db4c92b955509ede9d44d9cf1e8c906fbe32089f473b148d9b368256c23b56b8ce7dcef19dddecb555d649404a847e0318f0749b234347c55cce

diff --git a/app-doc/ford/ford-6.1.12.ebuild b/app-doc/ford/ford-6.1.12.ebuild
new file mode 100644
index 0..66ccc5ab8
--- /dev/null
+++ b/app-doc/ford/ford-6.1.12.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1 toolchain-funcs
+
+MY_PN="FORD"
+DESCRIPTION="FORD, automatic documentation generator for modern Fortran 
programs"
+HOMEPAGE="https://github.com/Fortran-FOSS-Programmers/ford";
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+RDEPEND="
+   dev-python/beautifulsoup4[${PYTHON_USEDEP}]
+   dev-python/graphviz[${PYTHON_USEDEP}]
+   dev-python/jinja[${PYTHON_USEDEP}]
+   dev-python/markdown[${PYTHON_USEDEP}]
+   dev-python/markdown-include[${PYTHON_USEDEP}]
+   dev-python/pygments[${PYTHON_USEDEP}]
+   dev-python/python-markdown-math[${PYTHON_USEDEP}]
+   dev-python/tqdm[${PYTHON_USEDEP}]
+   dev-python/toposort[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+
+DOCS=( CHANGELOG.md README.md README.rst )
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   default
+   sed -i -e 's/"cpp /"'"$(tc-getCPP)"' /' ford/__init__.py || die # bug: 
839300
+}
+
+python_test(){
+   # The 'test/test_projects' tests use subprocess, i.e. require FORD to 
be installed.
+   distutils_install_for_testing
+   distutils-r1_python_test
+}



[gentoo-commits] proj/kde:master commit in: kde-plasma/kpipewire/

2022-06-28 Thread Andreas Sturmlechner
commit: 23554bda20f048347526e7bcb2fcb04b707ba9b9
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Jun 28 21:06:55 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jun 28 21:06:55 2022 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=23554bda

kde-plasma/kpipewire: New package, required by plasma-desktop

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

 kde-plasma/kpipewire/kpipewire-.ebuild | 41 ++
 kde-plasma/kpipewire/metadata.xml  | 11 
 2 files changed, 52 insertions(+)

diff --git a/kde-plasma/kpipewire/kpipewire-.ebuild 
b/kde-plasma/kpipewire/kpipewire-.ebuild
new file mode 100644
index 00..2cb282ec74
--- /dev/null
+++ b/kde-plasma/kpipewire/kpipewire-.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+ECM_TEST="true"
+KFMIN=
+QTMIN=5.15.5
+inherit ecm kde.org
+
+DESCRIPTION="Components relating to Flatpak pipewire use in Plasma"
+
+LICENSE="LGPL-2.1+"
+SLOT="5"
+KEYWORDS=""
+IUSE=""
+
+COMMON_DEPEND="
+   dev-libs/wayland
+   >=dev-qt/qtdbus-${QTMIN}:5
+   >=dev-qt/qtdeclarative-${QTMIN}:5
+   >=dev-qt/qtgui-${QTMIN}:5
+   >=dev-qt/qtwayland-${QTMIN}:5
+   >=kde-frameworks/kcoreaddons-${KFMIN}:5
+   >=kde-frameworks/ki18n-${KFMIN}:5
+   >=kde-frameworks/kwayland-${KFMIN}:5
+   media-libs/libepoxy
+   media-libs/libglvnd
+   media-video/ffmpeg:=
+   >=media-video/pipewire-0.3:=
+   x11-libs/libdrm
+"
+DEPEND="${COMMON_DEPEND}
+   dev-libs/plasma-wayland-protocols
+"
+RDEPEND="${COMMON_DEPEND}
+   >=dev-qt/qtquickcontrols2-${QTMIN}:5
+   >=kde-frameworks/kirigami-${KFMIN}:5
+   x11-themes/sound-theme-freedesktop
+"
+BDEPEND=">=dev-qt/qtwaylandscanner-${QTMIN}:5"

diff --git a/kde-plasma/kpipewire/metadata.xml 
b/kde-plasma/kpipewire/metadata.xml
new file mode 100644
index 00..d925f24397
--- /dev/null
+++ b/kde-plasma/kpipewire/metadata.xml
@@ -0,0 +1,11 @@
+
+https://www.gentoo.org/dtd/metadata.dtd";>
+
+   
+   k...@gentoo.org
+   Gentoo KDE Project
+   
+   
+   https://bugs.kde.org/
+   
+



[gentoo-commits] proj/kde:master commit in: kde-plasma/plasma-desktop/

2022-06-28 Thread Andreas Sturmlechner
commit: 7cacab8ee4e01f37956e58f177fe931912e175df
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Jun 28 21:27:57 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jun 28 21:28:10 2022 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=7cacab8e

kde-plasma/plasma-desktop: Add new dependency

Upstream commit 2bc13c89fce7a86a12d33b1bfc96f38f971be498

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

 kde-plasma/plasma-desktop/plasma-desktop-.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kde-plasma/plasma-desktop/plasma-desktop-.ebuild 
b/kde-plasma/plasma-desktop/plasma-desktop-.ebuild
index 0a4681797a..9c1c38664a 100644
--- a/kde-plasma/plasma-desktop/plasma-desktop-.ebuild
+++ b/kde-plasma/plasma-desktop/plasma-desktop-.ebuild
@@ -110,6 +110,7 @@ RDEPEND="${COMMON_DEPEND}
>=kde-frameworks/kirigami-${KFMIN}:5
>=kde-frameworks/qqc2-desktop-style-${KFMIN}:5
>=kde-plasma/kde-cli-tools-${PVCUT}:5
+   >=kde-plasma/kpipewire-${PVCUT}:5
>=kde-plasma/oxygen-${PVCUT}:5
sys-apps/util-linux
x11-apps/setxkbmap



[gentoo-commits] proj/kde:master commit in: kde-plasma/plasma-desktop/

2022-06-28 Thread Andreas Sturmlechner
commit: bc3dd15a963e3fdd1cd7ba2bace856d66d981c9e
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Jun 28 21:25:17 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jun 28 21:25:17 2022 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=bc3dd15a

kde-plasma/plasma-desktop: Bump override-include-dirs to v2

Closes: https://bugs.gentoo.org/848771
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-plasma/plasma-desktop/plasma-desktop-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-plasma/plasma-desktop/plasma-desktop-.ebuild 
b/kde-plasma/plasma-desktop/plasma-desktop-.ebuild
index 0d041b8886..0a4681797a 100644
--- a/kde-plasma/plasma-desktop/plasma-desktop-.ebuild
+++ b/kde-plasma/plasma-desktop/plasma-desktop-.ebuild
@@ -12,7 +12,7 @@ VIRTUALX_REQUIRED="test"
 inherit ecm kde.org optfeature
 
 DESCRIPTION="KDE Plasma desktop"
-XORGHDRS="${PN}-override-include-dirs-1"
+XORGHDRS="${PN}-override-include-dirs-2"
 SRC_URI+=" https://dev.gentoo.org/~asturm/distfiles/${XORGHDRS}.tar.xz";
 
 LICENSE="GPL-2" # TODO: CHECK



[gentoo-commits] repo/proj/guru:dev commit in: media-gfx/WebPlotDigitizer-bin/

2022-06-28 Thread Sergey Torokhov
commit: 67dcf18458b7742f0adfa7e57bfba1f08bc20359
Author: Sergey Torokhov  yandex  ru>
AuthorDate: Tue Jun 28 21:22:45 2022 +
Commit: Sergey Torokhov  yandex  ru>
CommitDate: Tue Jun 28 21:22:45 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=67dcf184

media-gfx/WebPlotDigitizer-bin: fix QA not respect CFLAGS/LDFLAGS

Closes: https://bugs.gentoo.org/853004
Closes: https://bugs.gentoo.org/853001

Signed-off-by: Sergey Torokhov  yandex.ru>

 media-gfx/WebPlotDigitizer-bin/WebPlotDigitizer-bin-4.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/WebPlotDigitizer-bin/WebPlotDigitizer-bin-4.5.ebuild 
b/media-gfx/WebPlotDigitizer-bin/WebPlotDigitizer-bin-4.5.ebuild
index 934930217..a5ad401e4 100644
--- a/media-gfx/WebPlotDigitizer-bin/WebPlotDigitizer-bin-4.5.ebuild
+++ b/media-gfx/WebPlotDigitizer-bin/WebPlotDigitizer-bin-4.5.ebuild
@@ -39,7 +39,7 @@ S="${WORKDIR}/${MY_PN}-${PV}-linux-x64"
 
 QA_FLAGS_IGNORED="
/opt/${P}/chrome-sandbox
-   /opt/${P}/libvulkan.so*
+   /opt/${P}/libvulkan.*
 "
 
 ## It seems media-libs/alsa-lib is required by chrome-sandbox.



[gentoo-commits] repo/proj/guru:dev commit in: media-gfx/WebPlotDigitizer-bin/

2022-06-28 Thread Sergey Torokhov
commit: 03ca14aa9b82f16713648969233760808e39a42f
Author: Sergey Torokhov  yandex  ru>
AuthorDate: Tue Jun 28 20:53:59 2022 +
Commit: Sergey Torokhov  yandex  ru>
CommitDate: Tue Jun 28 20:53:59 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=03ca14aa

media-gfx/WebPlotDigitizer-bin: fix QA unresolved SONAME dependencies

Closes: https://bugs.gentoo.org/853007

Signed-off-by: Sergey Torokhov  yandex.ru>

 media-gfx/WebPlotDigitizer-bin/WebPlotDigitizer-bin-4.5.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/media-gfx/WebPlotDigitizer-bin/WebPlotDigitizer-bin-4.5.ebuild 
b/media-gfx/WebPlotDigitizer-bin/WebPlotDigitizer-bin-4.5.ebuild
index 7c7d35a99..934930217 100644
--- a/media-gfx/WebPlotDigitizer-bin/WebPlotDigitizer-bin-4.5.ebuild
+++ b/media-gfx/WebPlotDigitizer-bin/WebPlotDigitizer-bin-4.5.ebuild
@@ -45,7 +45,8 @@ QA_FLAGS_IGNORED="
 ## It seems media-libs/alsa-lib is required by chrome-sandbox.
 ## Actually this library isn't required to work.
 QA_SONAME="
-   /usr/lib*/libasound.so.2
+   /usr/lib.*/libasound.so.2
+   /usr/lib.*/libxkbcommon.so.0
 "
 
 src_install() {



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

2022-06-28 Thread Maciej Barć
commit: ce6c054200b64ef3c19251efd8236e915cd99d5b
Author: Maciej Barć  gentoo  org>
AuthorDate: Tue Jun 28 21:00:26 2022 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Tue Jun 28 21:03:07 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce6c0542

net-misc/gallery-dl: bump to 1.22.3

Signed-off-by: Maciej Barć  gentoo.org>

 net-misc/gallery-dl/Manifest |  1 +
 net-misc/gallery-dl/gallery-dl-1.22.3.ebuild | 38 
 2 files changed, 39 insertions(+)

diff --git a/net-misc/gallery-dl/Manifest b/net-misc/gallery-dl/Manifest
index 44c9aeb9909b..c890a0fc0ea4 100644
--- a/net-misc/gallery-dl/Manifest
+++ b/net-misc/gallery-dl/Manifest
@@ -2,3 +2,4 @@ DIST gallery-dl-1.21.1.tar.gz 432380 BLAKE2B 
58267dad8af16cb8b03bc7532e934e15c51
 DIST gallery-dl-1.21.2.tar.gz 434114 BLAKE2B 
2f1335d0745c3fd3de95f9f3005fc67f079fec16925b7ac8fb3f2e9c8521139e56bf18675e15e7e0edbad2889cd7fa895552e8b40d9f1cf6bc555894c8d1da48
 SHA512 
11615ebb3cab5a6d9e042a94cf802f3781af6166eb199ac22f70a0d3351299bdc82dda212a3a363c323e0edb6707355fe9b6f3d89a851037a8f6ebc12894558f
 DIST gallery-dl-1.22.1.tar.gz 459120 BLAKE2B 
2a3fcfcd10f9446ffdbcb44b920bbf962befcf8c338f7b48447d541e9f1c32a42ae7ac50b578fe8bce6039f3556d55d1fb0161689e0efbea6af9586668f4f488
 SHA512 
a277f70003603631a17081703fa1003791b106500422dabb406d20aaa80c71dcf3bfa8697ae8436025184e1a7115378a71b2a7e61eaa6b85195b4a3e5ba08ea6
 DIST gallery-dl-1.22.2.gh.tar.gz 463977 BLAKE2B 
f84837eaa0bdeccf7a63267c08657dc2fcbb17c218a10ed4b16d8b086f4aabca6097cb4161058b76796e96fa5fc57c8cde2a2f0387a28413cc6b6eab7a3f429b
 SHA512 
b3a9790beed25a362a573b33dfaa18739072503d264044953b97e661e22c4850bfff04803e65f39b6ea9a077d3ffaa96a3c859f580f25890938e4f187c13a527
+DIST gallery-dl-1.22.3.gh.tar.gz 464060 BLAKE2B 
6e9543675bb8118a73f81d1dffdfb20e91b385799a1bd9bbf2b5df331a384e55c4a503d5ac9e2f96e6d9d0f34913a4dcbb078c2b0044f9a418e8504e3b835cf9
 SHA512 
d544218f05a5ffb7eae83aa42bbc916d1b44233a50d11eed7d463c23718edaa144326dd8a88ca317f7fe0e8e1c737d5afc52e4db6d264be1cd3b63dbbfd76755

diff --git a/net-misc/gallery-dl/gallery-dl-1.22.3.ebuild 
b/net-misc/gallery-dl/gallery-dl-1.22.3.ebuild
new file mode 100644
index ..60c3846252ce
--- /dev/null
+++ b/net-misc/gallery-dl/gallery-dl-1.22.3.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_REQ_USE="sqlite,ssl,xml"
+
+inherit distutils-r1 optfeature
+
+DESCRIPTION="Download image galleries and collections from several image 
hosting sites"
+HOMEPAGE="https://github.com/mikf/gallery-dl";
+
+if [[ ${PV} ==  ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/mikf/${PN}.git";
+else
+   SRC_URI="https://github.com/mikf/${PN}/archive/v${PV}.tar.gz -> 
${P}.gh.tar.gz"
+   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+# tests require network access
+RESTRICT="test"
+
+RDEPEND=">=dev-python/requests-2.11.0[${PYTHON_USEDEP}]"
+
+distutils_enable_tests setup.py
+
+python_compile_all() {
+   emake PYTHON=${EPYTHON} data/completion/{,_}gallery-dl man
+}
+
+pkg_postinst() {
+   optfeature "Pixiv Ugoira to WebM conversion" media-video/ffmpeg
+   optfeature "video downloads" net-misc/youtube-dl
+}



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

2022-06-28 Thread Maciej Barć
commit: 3d855fbc249e1b1adb0c2925ac90132ea46e0573
Author: Maciej Barć  gentoo  org>
AuthorDate: Tue Jun 28 21:00:47 2022 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Tue Jun 28 21:03:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d855fbc

net-misc/gallery-dl: drop old 1.22.1

Signed-off-by: Maciej Barć  gentoo.org>

 net-misc/gallery-dl/Manifest |  1 -
 net-misc/gallery-dl/gallery-dl-1.22.1.ebuild | 38 
 2 files changed, 39 deletions(-)

diff --git a/net-misc/gallery-dl/Manifest b/net-misc/gallery-dl/Manifest
index c890a0fc0ea4..2b69c97b4040 100644
--- a/net-misc/gallery-dl/Manifest
+++ b/net-misc/gallery-dl/Manifest
@@ -1,5 +1,4 @@
 DIST gallery-dl-1.21.1.tar.gz 432380 BLAKE2B 
58267dad8af16cb8b03bc7532e934e15c510f8ac36a92cfbf4cf48791634973fa68dc0c1fae8968a5df1a340833980ef032c8c47fc2b2ae4c7b9018bf2d6b197
 SHA512 
6725937e81ef0ff6b3ad2718f51eb7be09ce364584b16be6031e5608f6b58b366aa96cf0616974147d4ec101825cdedbed8c8790970040f4f80e955847772901
 DIST gallery-dl-1.21.2.tar.gz 434114 BLAKE2B 
2f1335d0745c3fd3de95f9f3005fc67f079fec16925b7ac8fb3f2e9c8521139e56bf18675e15e7e0edbad2889cd7fa895552e8b40d9f1cf6bc555894c8d1da48
 SHA512 
11615ebb3cab5a6d9e042a94cf802f3781af6166eb199ac22f70a0d3351299bdc82dda212a3a363c323e0edb6707355fe9b6f3d89a851037a8f6ebc12894558f
-DIST gallery-dl-1.22.1.tar.gz 459120 BLAKE2B 
2a3fcfcd10f9446ffdbcb44b920bbf962befcf8c338f7b48447d541e9f1c32a42ae7ac50b578fe8bce6039f3556d55d1fb0161689e0efbea6af9586668f4f488
 SHA512 
a277f70003603631a17081703fa1003791b106500422dabb406d20aaa80c71dcf3bfa8697ae8436025184e1a7115378a71b2a7e61eaa6b85195b4a3e5ba08ea6
 DIST gallery-dl-1.22.2.gh.tar.gz 463977 BLAKE2B 
f84837eaa0bdeccf7a63267c08657dc2fcbb17c218a10ed4b16d8b086f4aabca6097cb4161058b76796e96fa5fc57c8cde2a2f0387a28413cc6b6eab7a3f429b
 SHA512 
b3a9790beed25a362a573b33dfaa18739072503d264044953b97e661e22c4850bfff04803e65f39b6ea9a077d3ffaa96a3c859f580f25890938e4f187c13a527
 DIST gallery-dl-1.22.3.gh.tar.gz 464060 BLAKE2B 
6e9543675bb8118a73f81d1dffdfb20e91b385799a1bd9bbf2b5df331a384e55c4a503d5ac9e2f96e6d9d0f34913a4dcbb078c2b0044f9a418e8504e3b835cf9
 SHA512 
d544218f05a5ffb7eae83aa42bbc916d1b44233a50d11eed7d463c23718edaa144326dd8a88ca317f7fe0e8e1c737d5afc52e4db6d264be1cd3b63dbbfd76755

diff --git a/net-misc/gallery-dl/gallery-dl-1.22.1.ebuild 
b/net-misc/gallery-dl/gallery-dl-1.22.1.ebuild
deleted file mode 100644
index d424151deeb1..
--- a/net-misc/gallery-dl/gallery-dl-1.22.1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-PYTHON_REQ_USE="sqlite,ssl,xml"
-
-inherit distutils-r1 optfeature
-
-DESCRIPTION="Download image galleries and collections from several image 
hosting sites"
-HOMEPAGE="https://github.com/mikf/gallery-dl";
-
-if [[ ${PV} ==  ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/mikf/${PN}.git";
-else
-   SRC_URI="https://github.com/mikf/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-# tests require network access
-RESTRICT="test"
-
-RDEPEND=">=dev-python/requests-2.11.0[${PYTHON_USEDEP}]"
-
-distutils_enable_tests setup.py
-
-python_compile_all() {
-   emake PYTHON=${EPYTHON} data/completion/{,_}gallery-dl man
-}
-
-pkg_postinst() {
-   optfeature "Pixiv Ugoira to WebM conversion" media-video/ffmpeg
-   optfeature "video downloads" net-misc/youtube-dl
-}



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

2022-06-28 Thread Patrick McLean
commit: 12d79320dae923860ffe41801367df8336ac931c
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Thu Jun 23 19:10:17 2022 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Tue Jun 28 20:57:43 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12d79320

app-admin/salt: remove unused patch

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/26061
Signed-off-by: Patrick McLean  gentoo.org>

 app-admin/salt/files/salt-3000.9-tests.patch | 12 
 1 file changed, 12 deletions(-)

diff --git a/app-admin/salt/files/salt-3000.9-tests.patch 
b/app-admin/salt/files/salt-3000.9-tests.patch
deleted file mode 100644
index 9b7a1786e72a..
--- a/app-admin/salt/files/salt-3000.9-tests.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff --git a/tests/unit/modules/test_cmdmod.py 
b/tests/unit/modules/test_cmdmod.py
-index 2d88706b49..ec8b623f5b 100644
 a/tests/unit/modules/test_cmdmod.py
-+++ b/tests/unit/modules/test_cmdmod.py
-@@ -509,6 +509,7 @@ class CMDMODTestCase(TestCase, LoaderModuleMockMixin):
- self.assertEqual(ret['stdout'],
-  salt.utils.stringutils.to_unicode(stdout))
- 
-+@skipIf(True, "Not happy in sandbox")
- def test_run_all_output_loglevel_debug(self):
- '''
- Test that specifying debug for loglevel



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

2022-06-28 Thread Patrick McLean
commit: 4e8c7046559181a80bcc8da48aacec5c61312839
Author: Patrick McLean  gentoo  org>
AuthorDate: Tue Jun 28 20:47:07 2022 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Tue Jun 28 20:47:19 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e8c7046

net-firewall/nftlb: add 1.0.6, drop 1.0

Signed-off-by: Patrick McLean  gentoo.org>

 net-firewall/nftlb/Manifest | 2 +-
 net-firewall/nftlb/{nftlb-1.0.ebuild => nftlb-1.0.6.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-firewall/nftlb/Manifest b/net-firewall/nftlb/Manifest
index 908c936546ac..4440ce50ef18 100644
--- a/net-firewall/nftlb/Manifest
+++ b/net-firewall/nftlb/Manifest
@@ -1,2 +1,2 @@
 DIST nftlb-1.0.4.tar.gz 199236 BLAKE2B 
457fc617af75513330b7c6730a3ee67061d5df4d1faf74a0d57ffaa7ef003e882136a9e0300fe61f1f0235ef752a5d695cfdf9a5e1cecf9b57553d4c9151bfd6
 SHA512 
89b0dba85029236f55289818c7b7ec6fe6e2e1f33003fc7fb9fa3ae763b96395827ba9d8134aa4ac80f8be0da6e17be132e9293b46c9264d9c49062e4db6688a
-DIST nftlb-1.0.tar.gz 195057 BLAKE2B 
b8237b7ba6f6f61dde726d53b63f2488bf38646984b252317ba0f47727ae91e5f4d58c32c0f0d609b134124efd29fdce2b9c10a981a3892220dac78c84946f48
 SHA512 
f93db34e4372d8f16e99650f3ade62908ce65722fadd521c6d698ab81b24502f6d82e1945b06b166876ebeb39e1907c97a40776ddf985b035b883e93f62e8766
+DIST nftlb-1.0.6.tar.gz 201767 BLAKE2B 
d81607ad88c88f3cf97124bf2db6ad8b210fe8f60d72661094dfbbbfc66c4b911985944f08b5483ceec420850b18cb0fe3a8fd6fa7fb76fa4da456870367cecd
 SHA512 
63fa1e9b5fbd18e5c852adb2415dcd6e24bad899fe647641ea6e8dbca4b7c2808c939bdf5f7700a586304f3126088bb74a0fce79c72e8bc92df1e7a9c111feca

diff --git a/net-firewall/nftlb/nftlb-1.0.ebuild 
b/net-firewall/nftlb/nftlb-1.0.6.ebuild
similarity index 100%
rename from net-firewall/nftlb/nftlb-1.0.ebuild
rename to net-firewall/nftlb/nftlb-1.0.6.ebuild



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

2022-06-28 Thread Andreas Sturmlechner
commit: c2ee0a12de8cc34fcfce2be0b670d6e26284f34c
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Jun 28 20:37:17 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jun 28 20:37:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2ee0a12

dev-qt/qtimageformats: Backport 5.15.6 Jasper 3 fix

jp2: use correct buffer_size for jas_stream_memopen
QTBUG: https://bugreports.qt.io/browse/QTBUG-104398
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 .../qtimageformats/qtimageformats-5.15.5-r1.ebuild | 32 ++
 1 file changed, 32 insertions(+)

diff --git a/dev-qt/qtimageformats/qtimageformats-5.15.5-r1.ebuild 
b/dev-qt/qtimageformats/qtimageformats-5.15.5-r1.ebuild
new file mode 100644
index ..0926524f47a9
--- /dev/null
+++ b/dev-qt/qtimageformats/qtimageformats-5.15.5-r1.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+QT5_KDEPATCHSET_REV=1
+inherit qt5-build
+
+DESCRIPTION="Additional format plugins for the Qt image I/O system"
+
+if [[ ${QT5_BUILD_TYPE} == release ]]; then
+   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc64 ~riscv ~sparc ~x86"
+fi
+
+IUSE="mng"
+
+DEPEND="
+   =dev-qt/qtcore-${QT5_PV}*
+   =dev-qt/qtgui-${QT5_PV}*
+   media-libs/libwebp:=
+   media-libs/tiff:0
+   mng? ( media-libs/libmng:= )
+"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+   sed -e 's/qtConfig(jasper)/false:/' \
+   -i src/plugins/imageformats/imageformats.pro || die
+   qt_use_disable_config mng mng src/plugins/imageformats/imageformats.pro
+
+   qt5-build_src_configure
+}



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

2022-06-28 Thread Andreas Sturmlechner
commit: 89b22860d2c638a7f61e7df6580f9b962e91d4b1
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Jun 28 20:39:12 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Tue Jun 28 20:39:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89b22860

dev-qt/qtimageformats: Drop 5.15.5 (r0)

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

 dev-qt/qtimageformats/Manifest |  2 +-
 .../qtimageformats/qtimageformats-5.15.5-r1.ebuild |  2 +-
 dev-qt/qtimageformats/qtimageformats-5.15.5.ebuild | 32 --
 3 files changed, 2 insertions(+), 34 deletions(-)

diff --git a/dev-qt/qtimageformats/Manifest b/dev-qt/qtimageformats/Manifest
index 2556f6f46930..0004db6905e7 100644
--- a/dev-qt/qtimageformats/Manifest
+++ b/dev-qt/qtimageformats/Manifest
@@ -1,5 +1,5 @@
 DIST qtimageformats-5.15.4-gentoo-kde-1.tar.xz 1588 BLAKE2B 
f73941b56aad237eda0a4bd34979c8b32ec4c76511cb4f2850ba47fdf5a06bea180e155256f2e7bd5591d4fc0b84b5a2bffb8f326e75bb1c5d0a3ab7d874cd4a
 SHA512 
f4a6dde562dea96f0c6db2e859f3e4566f842d887908eb389ace0aeb0c60b02a65b4c14030b05039322745d4140e979240ef2bd2dcf6c0284c44d6fa4e51686e
 DIST qtimageformats-5.15.4-gentoo-kde-2.tar.xz 2032 BLAKE2B 
7953a793fa24815a2f602e9472a664eff159497ac4bd2e01c356a015b7d0b5d92d83606ddec5396b2bb2c893ee20f0f8c5d2c5820a522f1c0e20bd94deeed500
 SHA512 
e9b6886ac33f9bca09fdef4de2fc28fedcea9d168d8a8c0f708c20d4cf14bc58cc583edca85e1a04e596a2a4ebcb98520ad1fc196ce6113d446a184d8def285d
-DIST qtimageformats-5.15.5-gentoo-kde-1.tar.xz 2028 BLAKE2B 
c24a48cb06b5d32fc92636131f23b773754aad8fe2c9aa44a316ed23282c56cc5e258e2218c90a2c513c31c391bddaa3b128458fcfaee6ccd96acc4ae8a22665
 SHA512 
e50a1f4bcf0c359109934c197f6e4f6bd2142b4b066c8158aa34765058d96a82a213ecc45614fc37ac622c73d798d2dd5522df5691289b8aebac74c0b5796987
+DIST qtimageformats-5.15.5-gentoo-kde-2.tar.xz 2596 BLAKE2B 
c09bea5234b433d33f6307fbdf93f1ccd6b2b848dc34891afa17599028c2ec2d9b5dd3a1c3dcd0dd601bbbaaf350a6c17440e9083c05ea91ec3b31a02f7a
 SHA512 
df30c604f167cda8e819af7461b11386701e3ea7357244d5525e1fa3c7a6391c21736acb1576b913b8965ff4e90ebf0b85f2e9bae419da0ac2bc8d9f5d423b18
 DIST qtimageformats-everywhere-opensource-src-5.15.4.tar.xz 1830288 BLAKE2B 
7eebd51fe37d7fb33b78bb176a15cd943f0350307774f62c2a6635f5a603578819201402dd065f99dd01546c4d8d1e5e2fedaafa822656f7c5aa894a60dd17ca
 SHA512 
388a9ceebdca6d32f606615af37233f2d8394856d067c9a80486b88ad5714eac90263cd6555a3efd9c1b5fdcc27431b7f99eed6fc02760b1a9974515bfe70274
 DIST qtimageformats-everywhere-opensource-src-5.15.5.tar.xz 1829872 BLAKE2B 
7b240291e6076537daa9bc3b87f13f3285f19a4638de5b5db44a2b55275fbe843dc974226e999cd90e6bf902b43fbcd25f052619f291fa36807830a26c10cd52
 SHA512 
50a68bbe83fac710f21f05f3c0637beff17de00f9309aab2ceb27cfe7a178a1a56b0906f357584eef3188d7b89504591c924a9d4988a7321fb18a72271bb2dfd

diff --git a/dev-qt/qtimageformats/qtimageformats-5.15.5-r1.ebuild 
b/dev-qt/qtimageformats/qtimageformats-5.15.5-r1.ebuild
index 0926524f47a9..c6cee7fd360c 100644
--- a/dev-qt/qtimageformats/qtimageformats-5.15.5-r1.ebuild
+++ b/dev-qt/qtimageformats/qtimageformats-5.15.5-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-QT5_KDEPATCHSET_REV=1
+QT5_KDEPATCHSET_REV=2
 inherit qt5-build
 
 DESCRIPTION="Additional format plugins for the Qt image I/O system"

diff --git a/dev-qt/qtimageformats/qtimageformats-5.15.5.ebuild 
b/dev-qt/qtimageformats/qtimageformats-5.15.5.ebuild
deleted file mode 100644
index 0926524f47a9..
--- a/dev-qt/qtimageformats/qtimageformats-5.15.5.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-QT5_KDEPATCHSET_REV=1
-inherit qt5-build
-
-DESCRIPTION="Additional format plugins for the Qt image I/O system"
-
-if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc64 ~riscv ~sparc ~x86"
-fi
-
-IUSE="mng"
-
-DEPEND="
-   =dev-qt/qtcore-${QT5_PV}*
-   =dev-qt/qtgui-${QT5_PV}*
-   media-libs/libwebp:=
-   media-libs/tiff:0
-   mng? ( media-libs/libmng:= )
-"
-RDEPEND="${DEPEND}"
-
-src_configure() {
-   sed -e 's/qtConfig(jasper)/false:/' \
-   -i src/plugins/imageformats/imageformats.pro || die
-   qt_use_disable_config mng mng src/plugins/imageformats/imageformats.pro
-
-   qt5-build_src_configure
-}



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

2022-06-28 Thread Alfredo Tupone
commit: 7f58c4413ccdd8ae48734e4f860926a2dcd2d9c2
Author: Alfredo Tupone  gentoo  org>
AuthorDate: Tue Jun 28 20:24:51 2022 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Tue Jun 28 20:24:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f58c441

dev-ml/labltk: fix build without ocamlopt

Closes: https://bugs.gentoo.org/850439
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Alfredo Tupone  gentoo.org>

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

diff --git a/dev-ml/labltk/labltk-8.06.12.ebuild 
b/dev-ml/labltk/labltk-8.06.12.ebuild
index 28c00c72150f..3042cc64e298 100644
--- a/dev-ml/labltk/labltk-8.06.12.ebuild
+++ b/dev-ml/labltk/labltk-8.06.12.ebuild
@@ -37,7 +37,7 @@ src_configure() {
 }
 
 src_compile() {
-   emake -j1
+   emake -j1 all
use ocamlopt && emake -j1 opt
 }
 



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

2022-06-28 Thread Conrad Kostecki
commit: b4d9af5ab7b05c599af5bd7c37a3c17876bb1ab8
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Tue Jun 28 20:01:26 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jun 28 20:10:00 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4d9af5a

sys-apps/cpuid: add 20220620

Signed-off-by: Conrad Kostecki  gentoo.org>

 sys-apps/cpuid/Manifest|  1 +
 sys-apps/cpuid/cpuid-20220620.ebuild   | 35 
 sys-apps/cpuid/files/cpuid-20220620-makefile.patch | 37 ++
 3 files changed, 73 insertions(+)

diff --git a/sys-apps/cpuid/Manifest b/sys-apps/cpuid/Manifest
index bb7da4475442..519d498c327a 100644
--- a/sys-apps/cpuid/Manifest
+++ b/sys-apps/cpuid/Manifest
@@ -1 +1,2 @@
 DIST cpuid-20220224.src.tar.gz 130706 BLAKE2B 
78e0d8296ffafa6eb5a668561bb5c1834c8cffd020f0c052438381f72cddbfe8e85c3e4d662c6aff5224a0b147cd5e20cbce2240f791f2c857c4f584c87b4359
 SHA512 
7cf41d2429d442b4dfd5d369e394c11916352e16fc56852ea4af71945192903482bc45c38367ff5ae3f8d386ffc65cc61a9b0bec4594589a057557daf54d8562
+DIST cpuid-20220620.src.tar.gz 134487 BLAKE2B 
37bf5bbeed47d762f093a568e18ac06b32b4c8c4d763656c5310c78b949c60aaf4e874b15485af15be1e31c389692a0ab277a95a0dcb0b66a7dbece50a52
 SHA512 
e06db43fb12efa1d112267993754965b8a2b07c914766a46a0fe6fdcf023606cfb132eac575726ad9ed7d0e6fc53d728a6d3d3d7abf2f484f002825c791da7b9

diff --git a/sys-apps/cpuid/cpuid-20220620.ebuild 
b/sys-apps/cpuid/cpuid-20220620.ebuild
new file mode 100644
index ..0f77190b474c
--- /dev/null
+++ b/sys-apps/cpuid/cpuid-20220620.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+DESCRIPTION="Linux tool to dump x86 CPUID information about the CPUs"
+HOMEPAGE="http://www.etallen.com/cpuid.html";
+SRC_URI="http://www.etallen.com/${PN}/${P}.src.tar.gz";
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~x86"
+
+BDEPEND="
+   app-arch/gzip
+   dev-lang/perl
+"
+
+DOCS=( "ChangeLog" "FUTURE" )
+
+PATCHES=( "${FILESDIR}/${PN}-20220620-makefile.patch" )
+
+src_prepare() {
+   default
+
+   tc-export CC
+}
+
+src_install() {
+   emake BUILDROOT="${ED}" install
+
+   einstalldocs
+}

diff --git a/sys-apps/cpuid/files/cpuid-20220620-makefile.patch 
b/sys-apps/cpuid/files/cpuid-20220620-makefile.patch
new file mode 100644
index ..301ba988f7c1
--- /dev/null
+++ b/sys-apps/cpuid/files/cpuid-20220620-makefile.patch
@@ -0,0 +1,37 @@
+--- a/Makefile
 b/Makefile
+@@ -1,11 +1,11 @@
+-CFLAGS+=-g
++CFLAGS+=
+ CPPFLAGS?=
+ LDFLAGS?=
+ ifneq (,$(findstring arch=i386,$(CFLAGS)))
+ CISA=-m32
+ endif
+ CFL=$(CPPFLAGS) $(CFLAGS) $(CISA) -Wall -W -Wshadow -Wcast-align 
-Wredundant-decls -Wbad-function-cast -Wcast-qual -Wwrite-strings 
-Waggregate-return -Wstrict-prototypes -Wmissing-prototypes 
-Wimplicit-fallthrough -Wunused-parameter -Wundef -D_FILE_OFFSET_BITS=64 
-DVERSION=$(VERSION)
+-INSTALL_STRIP=-s
++INSTALL_STRIP=
+ 
+ PACKAGE=cpuid
+ VERSION=20220620
+@@ -40,7 +40,7 @@
+ 
+ BUILDROOT=$(DESTDIR)
+ 
+-default: $(PROG) $(PROG).man.gz cpuinfo2cpuid cpuinfo2cpuid.man.gz
++default: $(PROG) cpuinfo2cpuid
+ 
+ $(PROG): cpuid.c Makefile
+   $(CC) $(CFL) $(LDFLAGS) -o $@ cpuid.c
+@@ -56,9 +56,9 @@
+ 
+ install: $(PROG) $(PROG).man.gz cpuinfo2cpuid cpuinfo2cpuid.man.gz
+   install -D $(INSTALL_STRIP) -m 755 $(PROG) $(BUILDROOT)/usr/bin/$(PROG)
+-  install -D -m 444 $(PROG).man.gz   
$(BUILDROOT)/usr/share/man/man1/$(PROG).1.gz
++  install -D -m 444 $(PROG).man   
$(BUILDROOT)/usr/share/man/man1/$(PROG).1
+   install -D -m 755 cpuinfo2cpuid
$(BUILDROOT)/usr/bin/cpuinfo2cpuid
+-  install -D -m 444 cpuinfo2cpuid.man.gz 
$(BUILDROOT)/usr/share/man/man1/cpuinfo2cpuid.1.gz
++  install -D -m 444 cpuinfo2cpuid.man 
$(BUILDROOT)/usr/share/man/man1/cpuinfo2cpuid.1
+ 
+ clean:
+   rm -f $(PROG) $(PROG).i386 $(PROG).x86_64



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

2022-06-28 Thread Conrad Kostecki
commit: 820531d2c59c0eb68fefd708bc370897ba481392
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Tue Jun 28 20:12:18 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jun 28 20:12:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=820531d2

x11-misc/dunst: add 1.9.0

Signed-off-by: Conrad Kostecki  gentoo.org>

 x11-misc/dunst/Manifest   |  1 +
 x11-misc/dunst/dunst-1.9.0.ebuild | 79 +++
 2 files changed, 80 insertions(+)

diff --git a/x11-misc/dunst/Manifest b/x11-misc/dunst/Manifest
index fa2968213d5c..b7c6a5098e40 100644
--- a/x11-misc/dunst/Manifest
+++ b/x11-misc/dunst/Manifest
@@ -1 +1,2 @@
 DIST dunst-1.8.1.tar.gz 4603941 BLAKE2B 
c694503087425a69eecd40e4e50c5cfe5e5d3e9525d259b04dacd7e2bc05ff188aad14a331c41e6ecdd91b7c43d87d5902662b8a510675f3450da7097b7da1e9
 SHA512 
bd8605844eacb24ec1beafbd62be1defa8ff9f6fc2e93a4746acaba483e86d0fa3937045c20dbba71c46310102d8878c8ec987a3081328b02a09d7f9fde974d9
+DIST dunst-1.9.0.tar.gz 4609222 BLAKE2B 
4879122e342c1e518bca079bacd4ae769fd7da41db681230613c61531e62df94223757372c428c06710afd843200dcb78883d352f4e25098f0672b5c89ab0d87
 SHA512 
e43c960561d1f804c1d8f73f9376b33f61bf1ba5c5d0579c9875ef96da6522e214d5b74166ca3375dff1b4b0291b611b2d9ac1fb41fa8722db04c21e898824d1

diff --git a/x11-misc/dunst/dunst-1.9.0.ebuild 
b/x11-misc/dunst/dunst-1.9.0.ebuild
new file mode 100644
index ..e3f5d7b97fd2
--- /dev/null
+++ b/x11-misc/dunst/dunst-1.9.0.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit systemd toolchain-funcs
+
+DESCRIPTION="Lightweight replacement for common notification daemons"
+HOMEPAGE="https://dunst-project.org/ https://github.com/dunst-project/dunst";
+SRC_URI="https://github.com/dunst-project/dunst/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+IUSE="wayland"
+
+DEPEND="
+   dev-libs/glib:2
+   sys-apps/dbus
+   x11-libs/cairo[X,glib]
+   x11-libs/gdk-pixbuf:2
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXScrnSaver
+   x11-libs/libXinerama
+   x11-libs/libXrandr
+   x11-libs/libnotify
+   x11-libs/pango[X]
+   x11-misc/xdg-utils
+   wayland? ( dev-libs/wayland )
+"
+
+RDEPEND="${DEPEND}"
+
+BDEPEND="
+   dev-lang/perl
+   virtual/pkgconfig
+   wayland? ( dev-libs/wayland-protocols )
+"
+
+src_prepare() {
+   default
+
+   # Respect users CFLAGS
+   sed -e 's/-Os//' -i config.mk || die
+
+   # Use correct path for dbus and system unit
+   sed -e "s|##PREFIX##|${EPREFIX}/usr|" -i dunst.systemd.service.in || die
+   sed -e "s|##PREFIX##|${EPREFIX}/usr|" -i org.knopwob.dunst.service.in 
|| die
+}
+
+src_configure() {
+   tc-export CC PKG_CONFIG
+
+   default
+}
+
+src_compile() {
+   local myemakeargs=(
+   SYSCONFDIR="${EPREFIX}/etc/xdg"
+   SYSTEMD="0"
+   WAYLAND="$(usex wayland 1 0)"
+   )
+
+   emake "${myemakeargs[@]}"
+}
+
+src_install() {
+   local myemakeargs=(
+   PREFIX="${ED}/usr"
+   SYSCONFDIR="${ED}/etc/xdg"
+   SYSTEMD="0"
+   WAYLAND="$(usex wayland 1 0)"
+   )
+
+   emake "${myemakeargs[@]}" install
+
+   systemd_newuserunit dunst.systemd.service.in dunst.service
+}



[gentoo-commits] repo/gentoo:master commit in: dev-libs/intel-compute-runtime/, dev-libs/intel-compute-runtime/files/

2022-06-28 Thread Conrad Kostecki
commit: 17ce27a5e6dc97311ddd178fabccea3141b1ca95
Author: Randall T. Vasquez  icloud  com>
AuthorDate: Tue Jun 28 17:06:27 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Tue Jun 28 19:59:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17ce27a5

dev-libs/intel-compute-runtime: add patch to remove `-D_FORTIFY_SOURCE=2` 
configuration from build process

Signed-off-by: Randall T. Vasquez  icloud.com>
Closes: https://github.com/gentoo/gentoo/pull/26119
Signed-off-by: Conrad Kostecki  gentoo.org>

 ...-runtime-22.24.23453-remove-fortify-sources.patch | 20 
 .../intel-compute-runtime-22.24.23453.ebuild |  6 +++---
 .../intel-compute-runtime-22.25.23529.ebuild |  6 +++---
 3 files changed, 26 insertions(+), 6 deletions(-)

diff --git 
a/dev-libs/intel-compute-runtime/files/intel-compute-runtime-22.24.23453-remove-fortify-sources.patch
 
b/dev-libs/intel-compute-runtime/files/intel-compute-runtime-22.24.23453-remove-fortify-sources.patch
new file mode 100644
index ..dc0ab96dde0c
--- /dev/null
+++ 
b/dev-libs/intel-compute-runtime/files/intel-compute-runtime-22.24.23453-remove-fortify-sources.patch
@@ -0,0 +1,20 @@
+diff --git a/compute-runtime-22.24.23453/CMakeLists.txt 
b/compute-runtime-22.24.23453/CMakeLists.txt
+index f227808..83075f9 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -702,7 +702,6 @@ if("${CMAKE_BUILD_TYPE}" STREQUAL "Release")
+   else()
+ if(${CMAKE_CXX_COMPILER_ID} STREQUAL "Clang")
+   set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fstack-protector-strong")
+-  set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -O2 -D_FORTIFY_SOURCE=2")
+   set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wformat -Wformat-security")
+ else()
+   # gcc, g++ only
+@@ -711,7 +710,6 @@ if("${CMAKE_BUILD_TYPE}" STREQUAL "Release")
+   else()
+ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fstack-protector-strong")
+   endif()
+-  set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -O2 -D_FORTIFY_SOURCE=2")
+   set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wformat -Wformat-security")
+   set(CMAKE_SHARED_LINKER_FLAGS_RELEASE 
"${CMAKE_SHARED_LINKER_FLAGS_RELEASE} -Wl,-z,noexecstack")
+   set(CMAKE_SHARED_LINKER_FLAGS_RELEASE 
"${CMAKE_SHARED_LINKER_FLAGS_RELEASE} -Wl,-z,relro")

diff --git 
a/dev-libs/intel-compute-runtime/intel-compute-runtime-22.24.23453.ebuild 
b/dev-libs/intel-compute-runtime/intel-compute-runtime-22.24.23453.ebuild
index bdc8a84baf08..077189e165cf 100644
--- a/dev-libs/intel-compute-runtime/intel-compute-runtime-22.24.23453.ebuild
+++ b/dev-libs/intel-compute-runtime/intel-compute-runtime-22.24.23453.ebuild
@@ -41,11 +41,11 @@ BDEPEND="virtual/pkgconfig"
 
 DOCS=( "README.md" "FAQ.md" )
 
-src_prepare() {
-   default
+PATCHES=( "${FILESDIR}/${PN}-22.24.23453-remove-fortify-sources.patch" )
 
+src_prepare() {
# Remove '-Werror' from default
-   set -e '/Werror/d' -i CMakeLists.txt || die
+   sed -e '/Werror/d' -i CMakeLists.txt || die
 
cmake_src_prepare
 }

diff --git 
a/dev-libs/intel-compute-runtime/intel-compute-runtime-22.25.23529.ebuild 
b/dev-libs/intel-compute-runtime/intel-compute-runtime-22.25.23529.ebuild
index bdc8a84baf08..077189e165cf 100644
--- a/dev-libs/intel-compute-runtime/intel-compute-runtime-22.25.23529.ebuild
+++ b/dev-libs/intel-compute-runtime/intel-compute-runtime-22.25.23529.ebuild
@@ -41,11 +41,11 @@ BDEPEND="virtual/pkgconfig"
 
 DOCS=( "README.md" "FAQ.md" )
 
-src_prepare() {
-   default
+PATCHES=( "${FILESDIR}/${PN}-22.24.23453-remove-fortify-sources.patch" )
 
+src_prepare() {
# Remove '-Werror' from default
-   set -e '/Werror/d' -i CMakeLists.txt || die
+   sed -e '/Werror/d' -i CMakeLists.txt || die
 
cmake_src_prepare
 }



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

2022-06-28 Thread Michał Górny
commit: 516540114dbcabfd1d7a0617950ca77bc4cb4894
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun 28 19:41:43 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun 28 19:42:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51654011

dev-python/keystoneauth: Remove old

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

 dev-python/keystoneauth/Manifest  |  1 -
 dev-python/keystoneauth/keystoneauth-4.5.0.ebuild | 62 ---
 2 files changed, 63 deletions(-)

diff --git a/dev-python/keystoneauth/Manifest b/dev-python/keystoneauth/Manifest
index 0629976d5c18..85f0bd315c85 100644
--- a/dev-python/keystoneauth/Manifest
+++ b/dev-python/keystoneauth/Manifest
@@ -1,2 +1 @@
-DIST keystoneauth1-4.5.0.tar.gz 266418 BLAKE2B 
cd56e6d62e185ded667b2e9a53478e65fdea7eea203e3598193b34137297a5b75e315433882a08d16f360936208eb55c6d4e5c80e64161f1ce00db2633e59d7a
 SHA512 
eebf9f15624d4544351b26e80af4023dab3a60ad2848b14c1cf6ab4deab50d2c9812747f3e737aacd9e49eacaff3960d8cb1432067d2648d7d2552fdad907457
 DIST keystoneauth1-4.6.0.tar.gz 267019 BLAKE2B 
ad1df2ce6f88ca03f1c9cde6bd84014fc7afedb3fb2375bc95461bab466f82464393e20919e4e506bce2cdbf1283ef53777c7ab3e92e2195b21d95459814f408
 SHA512 
fe6fbb0e47fb3608b0653362da0d19bdcb7055f9d043c776d487a2f6af76bda1cc1d8a2b87a771cafb54d0cd349695618428ed7dd93aba273d3d455b4175cbc8

diff --git a/dev-python/keystoneauth/keystoneauth-4.5.0.ebuild 
b/dev-python/keystoneauth/keystoneauth-4.5.0.ebuild
deleted file mode 100644
index af58d970b6dd..
--- a/dev-python/keystoneauth/keystoneauth-4.5.0.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="This package contains tools for authenticating to an 
OpenStack-based cloud"
-HOMEPAGE="https://github.com/openstack/keystoneauth";
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}1/${PN}1-${PV}.tar.gz"
-S="${WORKDIR}/${PN}1-${PV}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 x86"
-
-CDEPEND="
-   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
-"
-RDEPEND="
-   ${CDEPEND}
-   >=dev-python/iso8601-0.1.11[${PYTHON_USEDEP}]
-   >=dev-python/requests-2.14.2[${PYTHON_USEDEP}]
-   >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
-   >=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}]
-   >=dev-python/os-service-types-1.2.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   ${CDEPEND}
-   test? (
-   >=dev-python/betamax-0.7.0[${PYTHON_USEDEP}]
-   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
-   >=dev-python/lxml-4.2.0[${PYTHON_USEDEP}]
-   >=dev-python/oauthlib-0.6.2[${PYTHON_USEDEP}]
-   >=dev-python/oslo-config-5.2.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-utils-3.33.0[${PYTHON_USEDEP}]
-   >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
-   >=dev-python/pyyaml-3.12[${PYTHON_USEDEP}]
-   >=dev-python/requests-kerberos-0.8.0[${PYTHON_USEDEP}]
-   >=dev-python/requests-mock-1.2.0[${PYTHON_USEDEP}]
-   >=dev-python/testresources-2.0.0[${PYTHON_USEDEP}]
-   >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests unittest
-
-src_prepare() {
-   # relies on specific test runner name
-   sed -i -e 's:run\.py:unittest_or_fail.py:' \
-   keystoneauth1/tests/unit/test_session.py || die
-   # remove the test that requires hacking
-   rm keystoneauth1/tests/unit/test_hacking_checks.py || die
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   eunittest -b
-}



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

2022-06-28 Thread Michał Górny
commit: b5163663c24effa6e24feb3c14af2a11a9e9df83
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun 28 19:40:00 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun 28 19:42:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5163663

dev-python/retrying: Remove old

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

 dev-python/retrying/retrying-1.3.3.ebuild | 20 
 1 file changed, 20 deletions(-)

diff --git a/dev-python/retrying/retrying-1.3.3.ebuild 
b/dev-python/retrying/retrying-1.3.3.ebuild
deleted file mode 100644
index a62d08a1890e..
--- a/dev-python/retrying/retrying-1.3.3.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..10} pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="General-purpose retrying library"
-HOMEPAGE="https://github.com/rholder/retrying";
-SRC_URI="https://github.com/rholder/retrying/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 
sparc x86"
-
-RDEPEND=">=dev-python/six-1.7.0[${PYTHON_USEDEP}]"
-
-distutils_enable_tests unittest



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

2022-06-28 Thread Michał Górny
commit: dc49708b8190070298884cd4b098bba73bbbcb88
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun 28 19:41:32 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun 28 19:42:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc49708b

dev-python/retry-decorator: Remove old

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

 .../retry-decorator/retry-decorator-1.1.1.ebuild  | 19 ---
 1 file changed, 19 deletions(-)

diff --git a/dev-python/retry-decorator/retry-decorator-1.1.1.ebuild 
b/dev-python/retry-decorator/retry-decorator-1.1.1.ebuild
deleted file mode 100644
index 8d6cb60a8ce0..
--- a/dev-python/retry-decorator/retry-decorator-1.1.1.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..10} )
-inherit distutils-r1
-
-DESCRIPTION="Decorator for retrying when exceptions occur"
-HOMEPAGE="https://github.com/pnpnpn/retry-decorator";
-SRC_URI="https://github.com/pnpnpn/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm ~riscv x86"
-
-DOCS=( README.rst )
-
-distutils_enable_tests pytest



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

2022-06-28 Thread Michał Górny
commit: b9259050cc5a4f2ff7c973015c94faebf23df218
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun 28 19:40:59 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun 28 19:42:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9259050

dev-python/python-glanceclient: Remove old

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

 dev-python/python-glanceclient/Manifest|  1 -
 .../python-glanceclient-3.6.0.ebuild   | 48 --
 2 files changed, 49 deletions(-)

diff --git a/dev-python/python-glanceclient/Manifest 
b/dev-python/python-glanceclient/Manifest
index f01ec4cb9ff4..5883d766a1ca 100644
--- a/dev-python/python-glanceclient/Manifest
+++ b/dev-python/python-glanceclient/Manifest
@@ -1,2 +1 @@
-DIST python-glanceclient-3.6.0.tar.gz 202581 BLAKE2B 
20bf5ee863cc3d319cc7b670f4a218c9b84b49c392f7a7756636a93643ddf81781f808d6d966ca1982246b66b7963354c433239f554eb2aa0291bd1d57da2e79
 SHA512 
7bcf08386cfe6d4787dd8e6616907814a53fcc35bdac1818aef7ba094dcd37dfda43a1451d55f22d175f400f8680801d1a43508c5d85ce39f15164b71a5d
 DIST python-glanceclient-4.0.0.tar.gz 202815 BLAKE2B 
a1d6dc46ca77c67bd42e6603b36652cc2ad9464b172b0bea778aa87130a6ed68613dda68db1ad5215e6d2ea34b9ecd96bc0ce853b94fc137b80aa7c85763622e
 SHA512 
31ce9ee865ba543674a9ccc0267f1e02308e444bedfe1728ed59c20abe77cd7936b059c5adb0a8f73e5bf999c5ac5a34ac3cafe2e695718535ead786916e2414

diff --git a/dev-python/python-glanceclient/python-glanceclient-3.6.0.ebuild 
b/dev-python/python-glanceclient/python-glanceclient-3.6.0.ebuild
deleted file mode 100644
index 02139d725b25..
--- a/dev-python/python-glanceclient/python-glanceclient-3.6.0.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="A client for the OpenStack Glance API"
-HOMEPAGE="https://github.com/openstack/python-glanceclient";
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 x86"
-
-RDEPEND="
-   >=dev-python/keystoneauth-3.6.2[${PYTHON_USEDEP}]
-   >=dev-python/oslo-utils-3.33.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
-   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
-   >=dev-python/prettytable-0.7.1[${PYTHON_USEDEP}]
-   >=dev-python/pyopenssl-17.1.0[${PYTHON_USEDEP}]
-   >=dev-python/requests-2.14.2[${PYTHON_USEDEP}]
-   >=dev-python/warlock-1.2.0[${PYTHON_USEDEP}]
-   =dev-python/wrapt-1.7.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
-   test? (
-   dev-python/ddt[${PYTHON_USEDEP}]
-   dev-python/fixtures[${PYTHON_USEDEP}]
-   dev-python/requests-mock[${PYTHON_USEDEP}]
-   dev-python/tempest[${PYTHON_USEDEP}]
-   dev-python/testscenarios[${PYTHON_USEDEP}]
-   dev-python/testtools[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests unittest
-
-python_test() {
-   # functional tests require cloud instance access
-   eunittest -b glanceclient/tests/unit
-}



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

2022-06-28 Thread Michał Górny
commit: 1b8399a77663d9268a021082d963865307323e09
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun 28 19:40:40 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun 28 19:42:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b8399a7

dev-python/openstacksdk: Remove old

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

 dev-python/openstacksdk/Manifest   |  1 -
 .../openstacksdk/openstacksdk-0.61.0-r1.ebuild | 85 --
 2 files changed, 86 deletions(-)

diff --git a/dev-python/openstacksdk/Manifest b/dev-python/openstacksdk/Manifest
index 540c9cd1e105..437bb82b1e56 100644
--- a/dev-python/openstacksdk/Manifest
+++ b/dev-python/openstacksdk/Manifest
@@ -1,2 +1 @@
-DIST openstacksdk-0.61.0.tar.gz 1029483 BLAKE2B 
5add768f12bc42562bcdaddf0379e1f59af80b34c5a7f808aaa7469788a685b093b47a4c2a8a771f6cf426f6ac11e188fca0843aaa5173266f3c69a0ac69c4f9
 SHA512 
6f02486b9de8c540cf43f49f55b67dede34a24a96229d42b43aa215f6286566579f726b53732a9b3b952cee5df1fa8d3cf2f6ccc7c0ca7f9a1a96888640ff734
 DIST openstacksdk-0.99.0.tar.gz 1060314 BLAKE2B 
0c8f641e301ba4fb8ca83e651f85f8ba98aa73904b2e94b15b17d99354aace5b73ba243c4e624e4c53dd7fb1deb147801aee93233f1fe019a0068873530bdb37
 SHA512 
5e15f29002231dbad15e7a2dadaa97e64ed191389d259222880a7e40984d6fbcd9d1602a041164e4f819141417d108a179171b4c1430947dc5c5e9cdc5409aea

diff --git a/dev-python/openstacksdk/openstacksdk-0.61.0-r1.ebuild 
b/dev-python/openstacksdk/openstacksdk-0.61.0-r1.ebuild
deleted file mode 100644
index 52ad9fbcf7da..
--- a/dev-python/openstacksdk/openstacksdk-0.61.0-r1.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="A collection of libraries for building applications to work with 
OpenStack"
-HOMEPAGE="https://github.com/openstack/openstacksdk/";
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 x86"
-
-CDEPEND="
-   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
-"
-RDEPEND="
-   ${CDEPEND}
-   >=dev-python/pyyaml-3.13[${PYTHON_USEDEP}]
-   >=dev-python/appdirs-1.3.0[${PYTHON_USEDEP}]
-   >=dev-python/requestsexceptions-1.2.0[${PYTHON_USEDEP}]
-   >dev-python/jsonpatch-1.20[${PYTHON_USEDEP}]
-   >=dev-python/os-service-types-1.7.0[${PYTHON_USEDEP}]
-   >=dev-python/keystoneauth-3.18.0[${PYTHON_USEDEP}]
-   >=dev-python/munch-2.1.0[${PYTHON_USEDEP}]
-   >=dev-python/decorator-4.4.1[${PYTHON_USEDEP}]
-   >=dev-python/jmespath-0.9.0[${PYTHON_USEDEP}]
-   >=dev-python/iso8601-0.1.11[${PYTHON_USEDEP}]
-   >=dev-python/netifaces-0.10.4[${PYTHON_USEDEP}]
-   >=dev-python/dogpile-cache-0.6.5[${PYTHON_USEDEP}]
-   >=dev-python/cryptography-2.7.0[${PYTHON_USEDEP}]
-   dev-python/importlib_metadata[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   ${CDEPEND}
-   test? (
-   >=dev-python/ddt-1.0.1[${PYTHON_USEDEP}]
-   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
-   >=dev-python/jsonschema-3.2.0[${PYTHON_USEDEP}]
-   >=dev-python/prometheus_client-0.4.2[${PYTHON_USEDEP}]
-   >=dev-python/oslo-config-6.1.0[${PYTHON_USEDEP}]
-   >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
-   >=dev-python/requests-mock-1.2.0[${PYTHON_USEDEP}]
-   >=dev-python/statsd-3.3.0[${PYTHON_USEDEP}]
-   >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}]
-   >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests unittest
-
-src_prepare() {
-   # Internet?
-   sed -e 's:test_create_dynamic_large_object:_&:' \
-   -i openstack/tests/unit/cloud/test_object.py || die
-
-   # TODO
-   sed -e 's:test_generate_form:_&:' \
-   -e 's:test_create_static_large_object:_&:' \
-   -e 's:test_object_segment_retries:_&:' \
-   -e 's:test_object_segment_retry_failure:_&:' \
-   -e 's:test_slo_manifest_retry:_&:' \
-   -i openstack/tests/unit/cloud/test_object.py || die
-
-   # unhappy about paths due to test runner
-   sed -e 's:test_method_not_supported:_&:' \
-   -i openstack/tests/unit/test_exceptions.py || die
-   sed -e 's:test_repr:_&:' \
-   -i openstack/tests/unit/test_resource.py || die
-
-   # requires hacking
-   rm openstack/tests/unit/test_hacking.py || die
-
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   # functional tests require cloud instance access
-   eunittest -b openstack/tests/unit
-}



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

2022-06-28 Thread Joonas Niilola
commit: 89fbfbad7a014f439373e8d1467caa344b41d9dd
Author: Joonas Niilola  gentoo  org>
AuthorDate: Tue Jun 28 19:40:49 2022 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Tue Jun 28 19:40:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89fbfbad

www-client/firefox: add 102.0

Signed-off-by: Joonas Niilola  gentoo.org>

 www-client/firefox/Manifest |   99 +++
 www-client/firefox/firefox-102.0.ebuild | 1293 +++
 2 files changed, 1392 insertions(+)

diff --git a/www-client/firefox/Manifest b/www-client/firefox/Manifest
index 380ccdcce582..a2943ee0594e 100644
--- a/www-client/firefox/Manifest
+++ b/www-client/firefox/Manifest
@@ -97,6 +97,105 @@ DIST firefox-101.0.1-xh.xpi 418659 BLAKE2B 
520914da5263161b9f9480e455b584cc48f42
 DIST firefox-101.0.1-zh-CN.xpi 567077 BLAKE2B 
d15b9f6881ac0198c90024fb8dbc3b1370b0e3858857732e49d72991aea2ff7b943c5c40fd2488230e857d0b9d41d25746691ce5ac86b90127a543e3a697b1c7
 SHA512 
848462ae18da62d79aa6163dcb0e53adb4ac0fe031a80dd1f3a0b943102060548682f8921b02431df552fd817bbd246bac5663e091762eb1ec040308f34fe639
 DIST firefox-101.0.1-zh-TW.xpi 567655 BLAKE2B 
f6a05838f02d95ad9ce8d2bde6b3f1b0c106fc11dbbd17000dcd4bf4c799a1f822f538bdc5667ac1bc87de34ce576dbd2e462d7dc6170a04f19f6fa3ee214116
 SHA512 
22fa87260421895813f5b3269e8a320d24b4477bad5c6108d0b68f80afeaaea2d90d367c436a49d643523a00bffbdf4c570c7d5544d3e6f1977a1c5b0473b3b5
 DIST firefox-101.0.1.source.tar.xz 486021240 BLAKE2B 
8dce0083dc1fa7d9f04b1a87a02e6e171e19b18ddeab210a12940a4e582e8420aebaafb2fbbfcbfcadc36c2004a61b4a3a24b630838b3a7f146945ea735ec045
 SHA512 
435a7f6013582933e75c41e554a45beda30b5affd7d3ed7d2876026609ba7f17b2c20b507d9d0c9ce2379e335ec09b021257ba30ac55fabf02dca54b03ea70b4
+DIST firefox-102-patches-01j.tar.xz 32712 BLAKE2B 
533c4a7ec9453dc12baf6dea1db8d988e3028d2824a52fc9124676db3bcadf814323f737b6ef17a33f2d618afea27dd9f45bc1ed011ca75f1be1c6415e118d87
 SHA512 
f0fbf378e103335d8a0afe6780f779ed33396bd2ab25000dac7f63a8409822ecbcef7ccb87560e97c495af332231f89d2aa0e39f2a151ee080853c2935b68e09
+DIST firefox-102.0-ach.xpi 443114 BLAKE2B 
3084bf0515a7b0d744f28b2308e79302462861c890cf7eec40129e1b251fe9392412178a99b69a3ee1b479608f7687cf25dc7156916deecafee895a0867c8f9e
 SHA512 
7eca63717fc6022332f77c5a2567b1b09f3ad2a94016e664487115d4ae326f1658b2834de01ca11969525b9d952256f66cf0a738d73548b485fb3432307f5267
+DIST firefox-102.0-af.xpi 408457 BLAKE2B 
010b537aa482d4d2fe3b35ac8f07bf77e095501243b5e1395ee7a7c153db8a881af4e7eb3e57d9ca0ab274561a6a4ceb2b1fb167c2ef791cfb53c9829e014897
 SHA512 
705986d46b495e038cd6d4cc1a4f30f6ec1d5419cf840be459405e6aa505ede00960ff345d089bad68f53837d7f38d7a571c1e99728cf56b20c1b0fdba1753c5
+DIST firefox-102.0-an.xpi 486991 BLAKE2B 
0e97c8aa2a96fb690378b555f115be30d0270d0fd064b3a78bc1fc1596e61c1b73656627630600ef35132dc83cc62bf96a269a49998484017fa41f394fa2b2de
 SHA512 
2e682c8f58e475354b6e7f23462fef647bc779250290d6a1b7353304a045511e9dc7061b006dacefe5385da9ff622af4a71e988e45d3691a4a8f23c881bf4182
+DIST firefox-102.0-ar.xpi 550924 BLAKE2B 
50d30d3c228177dcb9d38c4dd0cfe93c19038a3da7ac1053c6aee478eee978d51b0fa07eea7c8c9679f21bb93353162203b6c61ae56940039f6d71528e01dcb2
 SHA512 
355e1a9935613cc2a54ef9d5010625f3735ca2d22bb65448e95322d9c438ec0e8d459464b444eb1a38b0ad55af354b3a3af863aa72c096bdf5560ed7ba5cf29d
+DIST firefox-102.0-ast.xpi 483305 BLAKE2B 
cf69b322c3bd47b4ac778d0d7442ef89f6e7b2abe29e4118b30e8c8cfa8c5e459658647d8c29bab0fa7eb8a735f1ed12bb05a1002c19bc2d7fe0802be3be1081
 SHA512 
4a1fde7a7cf6f57e214047b52885068bb5ad3b8e9495f3663f3bf1d70f9a05a7d8f4f406c9515e7ff92dd66317130f7a64a588b1b3b9c6d8cb9c5f418573e00e
+DIST firefox-102.0-az.xpi 474703 BLAKE2B 
7cf8edcb045f84264afea502cf3699c3115ca320a67d3bf99bcb5db0f266537b6c0673f1f78faa002c66d8a1821a526415bfc1d4e962a62ee1d52935870a79bf
 SHA512 
52b5633860bcc877610a4730fc4aecaf7957bd1a78acbd0b20df035e04e8a3dc6462ad390a5442893a9019b123a8f89efde039ac0cf07234bf16f40fee2652e5
+DIST firefox-102.0-be.xpi 613475 BLAKE2B 
15efa83b7b017d55cea322adf2f45c55ef30b06bc2063aaceafb15e34a81beee50fea4d25f96f36ffadd102ac431d378a5fa517fcacfa4e008b598d9675d
 SHA512 
a65d3d358ca23483c1b709e04becde02f7a962434acaa4b4cf2acd32b997f77145ecc4e59a4c507450e843dd2fc6410e96bb9a6d3e18c9943763e79602df0932
+DIST firefox-102.0-bg.xpi 563633 BLAKE2B 
b60e6b768a5fa5a581e8227f5e76eb74f58bdac35f9e178461d65cb2c4bec5962a150853428aee0121e7433a57811e15feef9cc82c3aa461fd121c11810d7739
 SHA512 
34d389d1afbb0072d91861f1715f4626ef849645f18397fa8d52efff19d9f9250e5548fdcadc529df3f46cf66499d2e620f2bf888f92aa6df6fa828347a0cb4a
+DIST firefox-102.0-bn.xpi 565247 BLAKE2B 
1af5bdc0f815ea3b0b868407769ebf6fa879cea2478f64956d06da31b5464c32ac6148fc366d965d960da62ab6f74e13f1bf490807106122f0273f7f79ba281a
 SHA512 
78790e6bf4a367fcddb4af6bb83e279b807a5c6395dd4ea9da4cdcdbc5f9d6999a700852be9dd440106831a8c8c4899e21d1315210195c3d23bb0e064d4c1e2c
+DIST firefox-102.0-br.xpi 521034 BLAKE2B 
88e620bef0a6f15c36023ca231dc07ea1a5fceff583c2abd19491313acb3e909cf9da8b

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

2022-06-28 Thread Arthur Zamarin
commit: cedcbc1103ce379b9593548afa26c276cb2f
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Jun 28 19:33:50 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Jun 28 19:33:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cedcbc11

media-libs/portmidi: Stabilize 234-r1 sparc, #854807

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

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

diff --git a/media-libs/portmidi/portmidi-234-r1.ebuild 
b/media-libs/portmidi/portmidi-234-r1.ebuild
index c7b2079ad1eb..443082bdbb21 100644
--- a/media-libs/portmidi/portmidi-234-r1.ebuild
+++ b/media-libs/portmidi/portmidi-234-r1.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://sourceforge/project/portmedia/${MY_P}.zip"
 
 LICENSE="MIT"
 SLOT="0"
-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="debug doc java python static-libs test-programs"
 
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"



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

2022-06-28 Thread Arthur Zamarin
commit: 5b42b13f303463cc38f1f8e7038a4ab917368fec
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Jun 28 19:33:14 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Jun 28 19:33:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b42b13f

media-sound/lash: Stabilize 0.5.4-r5 sparc, #854789

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

 media-sound/lash/lash-0.5.4-r5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/lash/lash-0.5.4-r5.ebuild 
b/media-sound/lash/lash-0.5.4-r5.ebuild
index 0df647174d76..ac4fa0ffb6d3 100644
--- a/media-sound/lash/lash-0.5.4-r5.ebuild
+++ b/media-sound/lash/lash-0.5.4-r5.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://nongnu/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 arm arm64 ppc ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 arm arm64 ppc ppc64 ~riscv sparc ~x86"
 IUSE="alsa debug gtk python static-libs" # doc
 
 BDEPEND="



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

2022-06-28 Thread Arthur Zamarin
commit: ea75b282ffac9f09a7eabb6ab4dab05dd0a5e4c8
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Jun 28 19:29:58 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Jun 28 19:29:58 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea75b282

dev-python/keystoneauth: Stabilize 4.6.0 ALLARCHES, #854951

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

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

diff --git a/dev-python/keystoneauth/keystoneauth-4.6.0.ebuild 
b/dev-python/keystoneauth/keystoneauth-4.6.0.ebuild
index ced69f35280b..642b81d5869f 100644
--- a/dev-python/keystoneauth/keystoneauth-4.6.0.ebuild
+++ b/dev-python/keystoneauth/keystoneauth-4.6.0.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}/${PN}1-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm arm64 ~riscv x86"
 
 CDEPEND="
>dev-python/pbr-2.1.0[${PYTHON_USEDEP}]



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

2022-06-28 Thread Arthur Zamarin
commit: 1a4193c8515002c786e6b7d9afdb7a37ec43bbfc
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Jun 28 19:28:42 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Jun 28 19:28:42 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a4193c8

dev-python/retry-decorator: Stabilize 1.1.1-r1 ALLARCHES, #854915

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

 dev-python/retry-decorator/retry-decorator-1.1.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/retry-decorator/retry-decorator-1.1.1-r1.ebuild 
b/dev-python/retry-decorator/retry-decorator-1.1.1-r1.ebuild
index bdd65098108d..4df00fb12433 100644
--- a/dev-python/retry-decorator/retry-decorator-1.1.1-r1.ebuild
+++ b/dev-python/retry-decorator/retry-decorator-1.1.1-r1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/pnpnpn/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~riscv ~x86"
+KEYWORDS="amd64 arm ~riscv x86"
 
 DOCS=( README.rst )
 



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

2022-06-28 Thread Arthur Zamarin
commit: de3ceea123412679ba48bf8bc7f95314e329ce7f
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Jun 28 19:27:07 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Jun 28 19:27:07 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de3ceea1

media-libs/fontconfig: Stabilize 2.14.0-r1 arm, #854384

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

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

diff --git a/media-libs/fontconfig/fontconfig-2.14.0-r1.ebuild 
b/media-libs/fontconfig/fontconfig-2.14.0-r1.ebuild
index 69ea498c3ba3..49b2629b5331 100644
--- a/media-libs/fontconfig/fontconfig-2.14.0-r1.ebuild
+++ b/media-libs/fontconfig/fontconfig-2.14.0-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://fontconfig.org/release/${P}.tar.xz";
 LICENSE="MIT"
 SLOT="1.0"
 if ! [[ $(ver_cut 3) -ge 90 ]] ; then
-   KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~loong ~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 ~x86-winnt"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~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 ~x86-winnt"
 fi
 IUSE="doc static-libs test"
 RESTRICT="!test? ( test )"



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

2022-06-28 Thread Arthur Zamarin
commit: deb922f8f47cd2b2ef8a2809c638976345615fd9
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Jun 28 19:27:07 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Jun 28 19:27:07 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=deb922f8

app-eselect/eselect-fontconfig: Stabilize 20220403 arm, #854384

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

 app-eselect/eselect-fontconfig/eselect-fontconfig-20220403.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-fontconfig/eselect-fontconfig-20220403.ebuild 
b/app-eselect/eselect-fontconfig/eselect-fontconfig-20220403.ebuild
index f1e006af181b..c63d09f45d74 100644
--- a/app-eselect/eselect-fontconfig/eselect-fontconfig-20220403.ebuild
+++ b/app-eselect/eselect-fontconfig/eselect-fontconfig-20220403.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/fontconfig.esel
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~loong ~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 ~loong ~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=">=app-admin/eselect-1.2.3"
 



[gentoo-commits] repo/gentoo:master commit in: dev-php/igbinary/

2022-06-28 Thread Arthur Zamarin
commit: cb18bfea9f3bd7572abb61bee407263984178cb9
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Jun 28 19:25:22 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Jun 28 19:25:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb18bfea

dev-php/igbinary: Stabilize 3.2.7 arm, #854849

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

 dev-php/igbinary/igbinary-3.2.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/igbinary/igbinary-3.2.7.ebuild 
b/dev-php/igbinary/igbinary-3.2.7.ebuild
index 3d0019054b9a..663e3efcb46b 100644
--- a/dev-php/igbinary/igbinary-3.2.7.ebuild
+++ b/dev-php/igbinary/igbinary-3.2.7.ebuild
@@ -12,7 +12,7 @@ USE_PHP="php7-3 php7-4 php8-0 php8-1"
 
 inherit php-ext-source-r3
 
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~x86"
 
 DESCRIPTION="A fast drop-in replacement for the standard PHP serialize"
 HOMEPAGE="https://github.com/igbinary/igbinary";



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

2022-06-28 Thread Arthur Zamarin
commit: 6f15a5eab852b0c2c9245002937735fe6c993da7
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Jun 28 19:25:21 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Jun 28 19:25:21 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f15a5ea

media-sound/lash: Stabilize 0.5.4-r5 arm64, #854789

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

 media-sound/lash/lash-0.5.4-r5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/lash/lash-0.5.4-r5.ebuild 
b/media-sound/lash/lash-0.5.4-r5.ebuild
index 023d4100110f..0df647174d76 100644
--- a/media-sound/lash/lash-0.5.4-r5.ebuild
+++ b/media-sound/lash/lash-0.5.4-r5.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://nongnu/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ppc ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 arm arm64 ppc ppc64 ~riscv ~sparc ~x86"
 IUSE="alsa debug gtk python static-libs" # doc
 
 BDEPEND="



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

2022-06-28 Thread Arthur Zamarin
commit: 0c2b04170ac46f3c4d3616ac0abe4cf8efd66cea
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Jun 28 19:16:50 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Jun 28 19:16:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c2b0417

dev-python/python-glanceclient: Stabilize 4.0.0 ALLARCHES, #854939

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

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

diff --git a/dev-python/python-glanceclient/python-glanceclient-4.0.0.ebuild 
b/dev-python/python-glanceclient/python-glanceclient-4.0.0.ebuild
index 448af8dee379..ee5d6545a356 100644
--- a/dev-python/python-glanceclient/python-glanceclient-4.0.0.ebuild
+++ b/dev-python/python-glanceclient/python-glanceclient-4.0.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm arm64 ~riscv x86"
 
 RDEPEND="
>=dev-python/keystoneauth-3.6.2[${PYTHON_USEDEP}]



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

2022-06-28 Thread Arthur Zamarin
commit: 5f2f1c12db2c4af3a8f62a011f85ad384cf843af
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Jun 28 19:15:56 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Jun 28 19:15:56 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f2f1c12

media-sound/lash: Stabilize 0.5.4-r5 arm, #854789

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

 media-sound/lash/lash-0.5.4-r5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/lash/lash-0.5.4-r5.ebuild 
b/media-sound/lash/lash-0.5.4-r5.ebuild
index d355389d6652..023d4100110f 100644
--- a/media-sound/lash/lash-0.5.4-r5.ebuild
+++ b/media-sound/lash/lash-0.5.4-r5.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://nongnu/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ppc ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 arm ~arm64 ppc ppc64 ~riscv ~sparc ~x86"
 IUSE="alsa debug gtk python static-libs" # doc
 
 BDEPEND="



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

2022-06-28 Thread Arthur Zamarin
commit: b9aea16f1adf1a19b262fec9f806a9473ee6a028
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Jun 28 19:09:58 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Jun 28 19:09:58 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9aea16f

dev-python/openstacksdk: Stabilize 0.99.0 ALLARCHES, #854945

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

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

diff --git a/dev-python/openstacksdk/openstacksdk-0.99.0.ebuild 
b/dev-python/openstacksdk/openstacksdk-0.99.0.ebuild
index 90bd9115ce25..c93382d4051c 100644
--- a/dev-python/openstacksdk/openstacksdk-0.99.0.ebuild
+++ b/dev-python/openstacksdk/openstacksdk-0.99.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm arm64 ~riscv x86"
 
 CDEPEND="
>dev-python/pbr-2.1.0[${PYTHON_USEDEP}]



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

2022-06-28 Thread Arthur Zamarin
commit: a3c893683f67cb55d5ca3db5a386c97704ac8f6b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Jun 28 19:09:57 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Jun 28 19:09:57 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3c89368

media-libs/portmidi: Stabilize 234-r1 arm, #854807

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

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

diff --git a/media-libs/portmidi/portmidi-234-r1.ebuild 
b/media-libs/portmidi/portmidi-234-r1.ebuild
index 0961f89d7c8b..c7b2079ad1eb 100644
--- a/media-libs/portmidi/portmidi-234-r1.ebuild
+++ b/media-libs/portmidi/portmidi-234-r1.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://sourceforge/project/portmedia/${MY_P}.zip"
 
 LICENSE="MIT"
 SLOT="0"
-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="debug doc java python static-libs test-programs"
 
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"



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

2022-06-28 Thread Arthur Zamarin
commit: 691e421a0493efdc5b58133d92bcbf4b61f5c869
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Jun 28 19:09:46 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Jun 28 19:09:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=691e421a

net-libs/libmicrohttpd: Stabilize 0.9.75 sparc, #854309

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

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

diff --git a/net-libs/libmicrohttpd/libmicrohttpd-0.9.75.ebuild 
b/net-libs/libmicrohttpd/libmicrohttpd-0.9.75.ebuild
index f7c251600f8a..243eae4d18ea 100644
--- a/net-libs/libmicrohttpd/libmicrohttpd-0.9.75.ebuild
+++ b/net-libs/libmicrohttpd/libmicrohttpd-0.9.75.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}"/${MY_P}
 
 LICENSE="LGPL-2.1+"
 SLOT="0/12"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 ~sparc x86"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
 IUSE="+epoll ssl static-libs test +thread-names"
 RESTRICT="!test? ( test )"
 



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

2022-06-28 Thread Arthur Zamarin
commit: e4d84aab13092c622832309d73bfddeca0e7f320
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Jun 28 19:08:20 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Jun 28 19:08:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4d84aab

app-eselect/eselect-fontconfig: Stabilize 20220403 sparc, #854384

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

 app-eselect/eselect-fontconfig/eselect-fontconfig-20220403.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-fontconfig/eselect-fontconfig-20220403.ebuild 
b/app-eselect/eselect-fontconfig/eselect-fontconfig-20220403.ebuild
index 86448b67e0a9..f1e006af181b 100644
--- a/app-eselect/eselect-fontconfig/eselect-fontconfig-20220403.ebuild
+++ b/app-eselect/eselect-fontconfig/eselect-fontconfig-20220403.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/fontconfig.esel
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~loong ~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 ~loong ~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=">=app-admin/eselect-1.2.3"
 



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

2022-06-28 Thread Arthur Zamarin
commit: 6fb4e8f374c656191cad949147e95cb5f338543e
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Jun 28 19:08:19 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Jun 28 19:08:19 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fb4e8f3

media-libs/fontconfig: Stabilize 2.14.0-r1 sparc, #854384

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

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

diff --git a/media-libs/fontconfig/fontconfig-2.14.0-r1.ebuild 
b/media-libs/fontconfig/fontconfig-2.14.0-r1.ebuild
index 8f9c8f70e887..69ea498c3ba3 100644
--- a/media-libs/fontconfig/fontconfig-2.14.0-r1.ebuild
+++ b/media-libs/fontconfig/fontconfig-2.14.0-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://fontconfig.org/release/${P}.tar.xz";
 LICENSE="MIT"
 SLOT="1.0"
 if ! [[ $(ver_cut 3) -ge 90 ]] ; then
-   KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~loong ~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 ~x86-winnt"
+   KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~loong ~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 ~x86-winnt"
 fi
 IUSE="doc static-libs test"
 RESTRICT="!test? ( test )"



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

2022-06-28 Thread Arthur Zamarin
commit: ee7877d697a916643639b21a5648d1e44a79a41a
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Jun 28 19:07:23 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Jun 28 19:07:23 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee7877d6

media-libs/tiff: Stabilize 4.4.0 arm64, #854828

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

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

diff --git a/media-libs/tiff/tiff-4.4.0.ebuild 
b/media-libs/tiff/tiff-4.4.0.ebuild
index 9a6e872dfb02..e4e1f07b41c9 100644
--- a/media-libs/tiff/tiff-4.4.0.ebuild
+++ b/media-libs/tiff/tiff-4.4.0.ebuild
@@ -23,7 +23,7 @@ S="${WORKDIR}/${PN}-$(ver_cut 1-3)"
 LICENSE="libtiff"
 SLOT="0"
 if [[ ${PV} != *_rc* ]] ; then
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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 ~loong ~m68k ~mips ~ppc 
ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 IUSE="+cxx jbig jpeg lzma static-libs test webp zlib zstd"
 RESTRICT="!test? ( test )"



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

2022-06-28 Thread Arthur Zamarin
commit: 2e25dd980f2fa343813203ef486d8a4846386337
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Jun 28 19:06:06 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Jun 28 19:06:06 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e25dd98

dev-python/requests-file: mark ALLARCHES

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

 dev-python/requests-file/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/requests-file/metadata.xml 
b/dev-python/requests-file/metadata.xml
index 74eef4237c5a..a88c0ed00b89 100644
--- a/dev-python/requests-file/metadata.xml
+++ b/dev-python/requests-file/metadata.xml
@@ -5,6 +5,7 @@
patr...@gentoo.org
Patrick Lauer

+   

requests-file
dashea/requests-file



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

2022-06-28 Thread Arthur Zamarin
commit: 77d2e37f2df29587d6d24341cf3ddc396be1f39c
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Jun 28 19:02:31 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Jun 28 19:02:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77d2e37f

dev-python/retrying: Stabilize 1.3.3-r1 ALLARCHES, #854912

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

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

diff --git a/dev-python/retrying/retrying-1.3.3-r1.ebuild 
b/dev-python/retrying/retrying-1.3.3-r1.ebuild
index 89f46808db31..8d90953b7dca 100644
--- a/dev-python/retrying/retrying-1.3.3-r1.ebuild
+++ b/dev-python/retrying/retrying-1.3.3-r1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/rholder/retrying/archive/v${PV}.tar.gz -> ${P}.tar.g
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 
~sparc ~x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 
sparc x86"
 
 RDEPEND=">=dev-python/six-1.7.0[${PYTHON_USEDEP}]"
 



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

2022-06-28 Thread Arthur Zamarin
commit: 1f6c2a08e9fccb9673f260340ec1870ce58a6091
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Jun 28 19:01:28 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Jun 28 19:01:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f6c2a08

dev-python/retrying: mark ALLARCHES

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

 dev-python/retrying/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/retrying/metadata.xml b/dev-python/retrying/metadata.xml
index 97e31b2d0e76..c8f6063c5ccb 100644
--- a/dev-python/retrying/metadata.xml
+++ b/dev-python/retrying/metadata.xml
@@ -12,6 +12,7 @@

Retrying is an Apache 2.0 licensed general-purpose retrying library, 
written in Python, to simplify the task of adding retry behavior to just about 
anything.

+   

retrying
rholder/retrying



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

2022-06-28 Thread Arthur Zamarin
commit: 90bd249a895ad530290510c2108d7eb34edcbb2a
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Jun 28 18:59:59 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Jun 28 18:59:59 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90bd249a

dev-python/retrying: Stabilize 1.3.3-r1 ppc, #854912

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

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

diff --git a/dev-python/retrying/retrying-1.3.3-r1.ebuild 
b/dev-python/retrying/retrying-1.3.3-r1.ebuild
index 5b39a5fe0619..89f46808db31 100644
--- a/dev-python/retrying/retrying-1.3.3-r1.ebuild
+++ b/dev-python/retrying/retrying-1.3.3-r1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/rholder/retrying/archive/v${PV}.tar.gz -> ${P}.tar.g
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 
~sparc ~x86"
 
 RDEPEND=">=dev-python/six-1.7.0[${PYTHON_USEDEP}]"
 



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

2022-06-28 Thread Patrick McLean
commit: 0b821769c686087817a412b9f6f47ad03603491b
Author: Patrick McLean  gentoo  org>
AuthorDate: Tue Jun 28 18:57:29 2022 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Tue Jun 28 18:57:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b821769

dev-libs/openssl: add 3.0.4

Signed-off-by: Patrick McLean  gentoo.org>

 dev-libs/openssl/Manifest |   2 +
 dev-libs/openssl/openssl-3.0.4.ebuild | 323 ++
 2 files changed, 325 insertions(+)

diff --git a/dev-libs/openssl/Manifest b/dev-libs/openssl/Manifest
index fd4aba44df2c..86edfb8addcb 100644
--- a/dev-libs/openssl/Manifest
+++ b/dev-libs/openssl/Manifest
@@ -13,3 +13,5 @@ DIST openssl-3.0.2.tar.gz.asc 488 BLAKE2B 
2f6482114271c4f512159fa159486a3b347063
 DIST openssl-3.0.3-test-fixes-expiry.patch.xz 29056 BLAKE2B 
11be776b9c4baec770d81ff180581d7d8292261f32ebfcb2cfd399d684cef1b9e7b4575d906f23e8a61d853eafb178e1b0e01d9324dbe598c876c0ef74bcf5e8
 SHA512 
23bc571dfca453deb4f1812aea5fc1bcf1c27358d8638a66ce7f359a698b09a35bdc86e01db36aa5e59b37cc7e36f0ced6f1463b383fb0d904aada69f5d5cb04
 DIST openssl-3.0.3.tar.gz 15058905 BLAKE2B 
8141d13dbea2f1febdd4e46aa404e9f3bac51e1fdc0c9b0df8bf3bf6852e18b09201a2a8cbee99f72e8d6de660834093449b7a14a3fbdda8511286ca3b6743e7
 SHA512 
949472025211fabdaf2564122f0a9a3baef0facb6373e90cf6c4485164a50898050b179722d0b358c4d8cf1787384ea30d5fd03b98757634631d3e8978509b1a
 DIST openssl-3.0.3.tar.gz.asc 488 BLAKE2B 
3f31e3a73706b69683220e05b1b4ddc75dc3e7e12652dca711e4aa0eb3c023ef736aee9ade15172d7f28e1e1af03e86d4854ec6c3d167cad42882f483c5e56d4
 SHA512 
04afe65c6af1ae43a9967462383a6a4f567f5acff19ec1952cd6fce2dc3c3d4dfb3cb54126562724c148f40dcb8abf727282d35730bbf36f82b5c6bacace
+DIST openssl-3.0.4.tar.gz 15069605 BLAKE2B 
e8ef09d74aa128fee0ddc347458a41cde65af07a6e6836889a0230cd7989e46b5d10a4930eb7a63c0cf93485914ec33665d14637b6c27fd442c0e9becb2d2a86
 SHA512 
478cd801dc4787688e6d9062969ae738c24f869bb186f717ad3be54ae8f2630e5cd845c504efd3405ea1ecda07ebee00014cc6ef7bca9585a6240cf89d516557
+DIST openssl-3.0.4.tar.gz.asc 488 BLAKE2B 
54f652ae78c6f39aef970fd7372808c876d37a823cc31431d770db67caf11342d1045992e393242d4c73253e4e16640dd9bd56203864394e907976918909e5dc
 SHA512 
c30af3cda92b06cff864ed33c17d8dcb8c7d429ed8419f96d19d3049dfaa268c73ec7753815a134b069ae7f4ea20fb4bcdd04f86d33628592ce4500777494c85

diff --git a/dev-libs/openssl/openssl-3.0.4.ebuild 
b/dev-libs/openssl/openssl-3.0.4.ebuild
new file mode 100644
index ..ede15424a910
--- /dev/null
+++ b/dev-libs/openssl/openssl-3.0.4.ebuild
@@ -0,0 +1,323 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/openssl.org.asc
+inherit edo flag-o-matic linux-info toolchain-funcs multilib-minimal 
multiprocessing verify-sig
+
+DESCRIPTION="Robust, full-featured Open Source Toolkit for the Transport Layer 
Security (TLS)"
+HOMEPAGE="https://www.openssl.org/";
+
+MY_P=${P/_/-}
+
+if [[ ${PV} ==  ]] ; then
+   EGIT_REPO_URI="https://github.com/openssl/openssl.git";
+
+   inherit git-r3
+else
+   SRC_URI="mirror://openssl/source/${MY_P}.tar.gz
+   verify-sig? ( mirror://openssl/source/${MY_P}.tar.gz.asc )"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~x86-linux"
+fi
+
+S="${WORKDIR}"/${MY_P}
+
+LICENSE="Apache-2.0"
+SLOT="0/3" # .so version of libssl/libcrypto
+IUSE="+asm cpu_flags_x86_sse2 fips ktls rfc3779 sctp static-libs test 
tls-compression vanilla verify-sig weak-ssl-ciphers"
+RESTRICT="!test? ( test )"
+
+COMMON_DEPEND="
+   >=app-misc/c_rehash-1.7-r1
+   tls-compression? ( 
>=sys-libs/zlib-1.2.8-r1[static-libs(+)?,${MULTILIB_USEDEP}] )
+"
+BDEPEND="
+   >=dev-lang/perl-5
+   sctp? ( >=net-misc/lksctp-tools-1.0.12 )
+   test? (
+   sys-apps/diffutils
+   sys-devel/bc
+   sys-process/procps
+   )
+   verify-sig? ( sec-keys/openpgp-keys-openssl )"
+
+DEPEND="${COMMON_DEPEND}"
+RDEPEND="${COMMON_DEPEND}"
+PDEPEND="app-misc/ca-certificates"
+
+REQUIRED_USE="test? ( rfc3779 )"
+
+MULTILIB_WRAPPED_HEADERS=(
+   /usr/include/openssl/configuration.h
+)
+
+pkg_setup() {
+   if use ktls ; then
+   if kernel_is -lt 4 18 ; then
+   ewarn "Kernel implementation of TLS (USE=ktls) requires 
kernel >=4.18!"
+   else
+   CONFIG_CHECK="~TLS ~TLS_DEVICE"
+   ERROR_TLS="You will be unable to offload TLS to kernel 
because CONFIG_TLS is not set!"
+   ERROR_TLS_DEVICE="You will be unable to offload TLS to 
kernel because CONFIG_TLS_DEVICE is not set!"
+
+   linux-info_pkg_setup
+   fi
+   fi
+
+   [[ ${MERGE_TYPE} == binary ]] && return
+
+   # must check in pkg_setup; sysctl doesn't work with userpr

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

2022-06-28 Thread Patrick McLean
commit: 47566b1990e0c860841eb9b53b16b3d033a2cce3
Author: Patrick McLean  gentoo  org>
AuthorDate: Tue Jun 28 18:53:46 2022 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Tue Jun 28 18:53:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47566b19

dev-libs/openssl: Add REQUIRED_USE for tests

Signed-off-by: Patrick McLean  gentoo.org>

 dev-libs/openssl/openssl-1.1.1p.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev-libs/openssl/openssl-1.1.1p.ebuild 
b/dev-libs/openssl/openssl-1.1.1p.ebuild
index 90f1683c106f..21020a80a28c 100644
--- a/dev-libs/openssl/openssl-1.1.1p.ebuild
+++ b/dev-libs/openssl/openssl-1.1.1p.ebuild
@@ -38,6 +38,8 @@ PDEPEND="app-misc/ca-certificates"
 # force upgrade to prevent broken login, bug #696950
 RDEPEND+=" !

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

2022-06-28 Thread Patrick McLean
commit: eb0b67201d70d0def107d9db7f78844815113274
Author: Patrick McLean  gentoo  org>
AuthorDate: Tue Jun 28 18:50:25 2022 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Tue Jun 28 18:51:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb0b6720

dev-libs/openssl: add 1.1.1p

Signed-off-by: Patrick McLean  gentoo.org>

 dev-libs/openssl/Manifest  |   2 +
 dev-libs/openssl/openssl-1.1.1p.ebuild | 336 +
 2 files changed, 338 insertions(+)

diff --git a/dev-libs/openssl/Manifest b/dev-libs/openssl/Manifest
index 3984e90d7345..fd4aba44df2c 100644
--- a/dev-libs/openssl/Manifest
+++ b/dev-libs/openssl/Manifest
@@ -6,6 +6,8 @@ DIST openssl-1.1.1n.tar.gz.asc 488 BLAKE2B 
8fc18fdc884473dc4c243499cc3528691a9ec
 DIST openssl-1.1.1o-test-fixes-expiry.patch.xz 6180 BLAKE2B 
23ef36d7bd05c98f7fab6de25681a53fa7a558d114548836b6cd90a57c4f4e45dc9fb622936053608b463320605b7df60db2d2caf3811b249f6ead3791a1c081
 SHA512 
577aec97fb31cd9efe3b30d82c560d3e7da57ae52c4de0f86e951b777a673830baaadcc5eb366c523024d37405531c6d32de26bbbc1e77df15c7822c72e937e6
 DIST openssl-1.1.1o.tar.gz 9856386 BLAKE2B 
5bd355fd17adf43ba4e3bf1a8036ceb724edd4f4ab80dc25aecc3d2647372e9db2bc12e2b89791fc4b6f7fd95a7b68e00490d09ca6518d25ab990ee27798e641
 SHA512 
75b2f1499cb4640229eb6cd35d85cbff2e19db17b959ac4d04b60f1b395b73567f9003521452a0fcfeea9b31b26de0a7bccf476ecf9caae02298f3647cfb7e23
 DIST openssl-1.1.1o.tar.gz.asc 488 BLAKE2B 
a03a967e7e2124d1a76ad7765e2f48065f40d32ba102a433be603ee8f86b26a2d246dcb97a95bd694ef3005889ce4f1951f76d39fe1d683f92da1aa3023e9c2d
 SHA512 
da6d88de7c1cd807b6089d50f8bb102c317c0b45ca26e517e3e400c5c65f787d94a1ee522af76279e93790a7fb491348cf25ffcfd66ecb9a9d35209328cb221e
+DIST openssl-1.1.1p.tar.gz 9860217 BLAKE2B 
4354753a5e52393c9cc4569954c2cac6d89a1e204fa4f9ca00a60492782d29f8952fb92664cdbb3576c6443d3cb2eacebea51db584738589f3598b40df579b12
 SHA512 
203470b1cd37bdbfabfec5ef37fc97c991d9943f070c988316f6396b09dae7cea16ac884bd8646dbf7dd1ed40ebde6bdfa5700beee2d714d07c97cc70b4e48d9
+DIST openssl-1.1.1p.tar.gz.asc 488 BLAKE2B 
e68c8a4c992c2448b48428137f61f91fb89e4814f6e80c5525cea695bcf898326eca729f31b953fbd7ff51b448004101ca78abfbd3138ec2389596faa3eafc2f
 SHA512 
c85d65df1ed0f1ae87b799d794ea43e32c8ecaf85caf6e36fbbd4a890ef1d47710380d3846296e0124898680be66113a959ad974e0448bc00d1253794dc48972
 DIST openssl-3.0.2.tar.gz 15038141 BLAKE2B 
140c4c80a0cad89cb0059fef6a4cd421460e6af9a3973f7a3eb5e39f64c0d44794d46e7a869e5235fced139f2249351e37a9ee5ebaa17f2708d63141ebebf919
 SHA512 
f986850d5be908b4d6b5fd7091bc4652d7378c9bccebfbc5becd7753843c04c1eb61a1749c432139d263dfac33df0b1f6c773664b485cad47542266823a4eb03
 DIST openssl-3.0.2.tar.gz.asc 488 BLAKE2B 
2f6482114271c4f512159fa159486a3b3470637d770cd1614fda004918d06ed9ab562e655d1580d2ebb05745ec72987488c2161b72d078017cc157003d4205da
 SHA512 
4303391a58107c76ad9b05510f5bfc95f687f4cb2f9ff5b03fb262ba99b573423ab83f0437471199954496799b343191b889ad9ef8fabdd7ee4ec3ec9b5f1d81
 DIST openssl-3.0.3-test-fixes-expiry.patch.xz 29056 BLAKE2B 
11be776b9c4baec770d81ff180581d7d8292261f32ebfcb2cfd399d684cef1b9e7b4575d906f23e8a61d853eafb178e1b0e01d9324dbe598c876c0ef74bcf5e8
 SHA512 
23bc571dfca453deb4f1812aea5fc1bcf1c27358d8638a66ce7f359a698b09a35bdc86e01db36aa5e59b37cc7e36f0ced6f1463b383fb0d904aada69f5d5cb04

diff --git a/dev-libs/openssl/openssl-1.1.1p.ebuild 
b/dev-libs/openssl/openssl-1.1.1p.ebuild
new file mode 100644
index ..90f1683c106f
--- /dev/null
+++ b/dev-libs/openssl/openssl-1.1.1p.ebuild
@@ -0,0 +1,336 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/openssl.org.asc
+inherit edo flag-o-matic toolchain-funcs multilib-minimal verify-sig
+
+MY_P=${P/_/-}
+DESCRIPTION="Full-strength general purpose cryptography library (including SSL 
and TLS)"
+HOMEPAGE="https://www.openssl.org/";
+SRC_URI="mirror://openssl/source/${MY_P}.tar.gz
+   verify-sig? ( mirror://openssl/source/${MY_P}.tar.gz.asc )"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="openssl"
+SLOT="0/1.1" # .so version of libssl/libcrypto
+if [[ ${PV} != *_pre* ]] ; then
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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 ~x86-winnt"
+fi
+IUSE="+asm rfc3779 sctp cpu_flags_x86_sse2 sslv3 static-libs test 
tls-compression tls-heartbeat vanilla verify-sig weak-ssl-ciphers"
+RESTRICT="!test? ( test )"
+
+RDEPEND=">=app-misc/c_rehash-1.7-r1
+   tls-compression? ( 
>=sys-libs/zlib-1.2.8-r1[static-libs(+)?,${MULTILIB_USEDEP}] )"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   >=dev-lang/perl-5
+   sctp? ( >=net-misc/lksctp-tools-1.0.12 )
+   test? (
+   sys-apps/diffutils
+   sys-devel/bc
+   kernel_linux? ( sys-process/procps )
+   

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

2022-06-28 Thread Arthur Zamarin
commit: 6e1d935057532cd38822b2c4b61dace500256bb7
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Jun 28 18:49:24 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Jun 28 18:49:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e1d9350

dev-python/pycares: add 4.2.1

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

 dev-python/pycares/Manifest |  1 +
 dev-python/pycares/pycares-4.2.1.ebuild | 51 +
 2 files changed, 52 insertions(+)

diff --git a/dev-python/pycares/Manifest b/dev-python/pycares/Manifest
index 0f234db35a7c..50e8ddd570ee 100644
--- a/dev-python/pycares/Manifest
+++ b/dev-python/pycares/Manifest
@@ -1,2 +1,3 @@
 DIST pycares-4.1.2.tar.gz 43668 BLAKE2B 
4b26f8643ff5ce297981b0b60b3afb34b249138e8f702dd4aa0a38935e9e5338d048f3be1b4fb64d6d8b2259a279a8881dbd44b412c10427dbd7eee664e70495
 SHA512 
6fb2d24fb5f2638c55424608b02ebe9f630866d644decfb663ab9d8e2bb7a42629748fa220054747f9c36ce3dcb42f3b8e457c5c39009f94b564ff07efde0c84
 DIST pycares-4.2.0.gh.tar.gz 43939 BLAKE2B 
6cac12ff2b3c44cf7d04b4ce3067d5435d416788e89251d87825e5ea265ecb178948e0187c47e8dfe40ec0480a66b8b2f6cc2c45e74473e9d66f5cc74269f50f
 SHA512 
14c813242ff6cdc5249ae52c2b9ff1870d7b74c7c6083868b2b4bbe0ce2af3f15e9b2775f67940ffbfc4ce84a6a9232ba4fab5a17ef389f7a197a15318280e43
+DIST pycares-4.2.1.gh.tar.gz 43939 BLAKE2B 
40f147189d5daf841a8165da86d881f1822763fbd050b040f11bd1f63a768dfbc71c78230d41331486cbc2354175b528f298dbb167ef7801e57b05b4a13c820d
 SHA512 
b5462b58bf75a9ee39496209c8270bc9c07070d34d9c2f2a2eed4752ebf83392e256248dda06ec5934c235cb37636e55a21cff4181b0a03c3eff24fbf9297eb4

diff --git a/dev-python/pycares/pycares-4.2.1.ebuild 
b/dev-python/pycares/pycares-4.2.1.ebuild
new file mode 100644
index ..aa636a8ce629
--- /dev/null
+++ b/dev-python/pycares/pycares-4.2.1.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python interface for c-ares"
+HOMEPAGE="
+   https://github.com/saghul/pycares/
+   https://pypi.org/project/pycares/
+"
+SRC_URI="
+   https://github.com/saghul/pycares/archive/${P}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+S=${WORKDIR}/pycares-${P}
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+IUSE="test"
+# Tests fail with network-sandbox, since they try to resolve google.com
+PROPERTIES="test_network"
+RESTRICT="test"
+
+DEPEND="
+   net-dns/c-ares:=
+"
+BDEPEND="
+   virtual/python-cffi[${PYTHON_USEDEP}]
+"
+RDEPEND="
+   dev-python/idna[${PYTHON_USEDEP}]
+   ${DEPEND}
+   ${BDEPEND}
+"
+BDEPEND+="
+   test? (
+   dev-python/idna[${PYTHON_USEDEP}]
+   )
+"
+
+export PYCARES_USE_SYSTEM_LIB=1
+
+python_test() {
+   "${EPYTHON}" tests/tests.py -v || die "Tests failed with ${EPYTHON}"
+}



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

2022-06-28 Thread Arthur Zamarin
commit: b34e84bcb2d932f69e0fa6ff700744297e90d976
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Jun 28 18:48:13 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Jun 28 18:49:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b34e84bc

dev-python/pyghmi: add 1.5.50

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

 dev-python/pyghmi/Manifest |  1 +
 dev-python/pyghmi/pyghmi-1.5.50.ebuild | 39 ++
 2 files changed, 40 insertions(+)

diff --git a/dev-python/pyghmi/Manifest b/dev-python/pyghmi/Manifest
index 8a679aa9fb7b..e2591f8cd765 100644
--- a/dev-python/pyghmi/Manifest
+++ b/dev-python/pyghmi/Manifest
@@ -1,3 +1,4 @@
 DIST pyghmi-1.5.47.tar.gz 243783 BLAKE2B 
4611df2616c7681c10664b645969b40f85a41ea2f16c3bcd4123230e90087903e6d7265b0147d93f994a4af32a77750685230d4e977418ba129a3e2093f8065c
 SHA512 
f4122537488ca05035603f15106646e539c5081ee71ba3fc1f37e8175ffe98dbbc59446fa4683816a4211b90bb9f82adea4c5d42e4ce8b2b301c35f862262394
 DIST pyghmi-1.5.48.tar.gz 243927 BLAKE2B 
8395aa3bbba752654c2ad73f76735370f31f9548f91e7e0bbb3e52afd2d67a00b316f7e1e25a49ad16004308a635104fa57a00a6bed63639068de86d96e44316
 SHA512 
f3ee4d44504b2fa5950817e1957ac23c666af6ba36b0ba65dafa5b42036d12d204accf996c75947ecdb5f9533025b9b0d17b0e96612019d622fee678fd0ff592
 DIST pyghmi-1.5.49.tar.gz 244142 BLAKE2B 
f35b483cc4d48c5bc3fe6bd5c6ac3ea320d7c131a0e77f8ff8af1d14ecdc38972170d93b830070ab8c2d27ec8b8f1607ea0c065af4ad402bd0ee2e25307b9658
 SHA512 
9c8ce9ddf61b613cba59a49af4f5ebc40e37f83debf10854d2781f6b47fb0fff058cb9f784ed2d527f84ed1bad7c12acb97460fbab6a8552876510634c1bf5dd
+DIST pyghmi-1.5.50.tar.gz 244226 BLAKE2B 
461bc9598497ae1f61d772ff223e7e4d2dc62660d41da2b660c4d71241c73c9107e8b0f74e5cf33fa8c9a8e79afaa834e4fb72e584ab2234a2874f9b23927208
 SHA512 
96fd274d8c7e55b6efc23612f145575e27a9a4949e20495ccfe023ff37dd7103cf0f42134350bf5fc0d1e4f86416981d01c18bd00d97a0b7a738fb5b363da457

diff --git a/dev-python/pyghmi/pyghmi-1.5.50.ebuild 
b/dev-python/pyghmi/pyghmi-1.5.50.ebuild
new file mode 100644
index ..1844c945d4be
--- /dev/null
+++ b/dev-python/pyghmi/pyghmi-1.5.50.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="A pure python implementation of IPMI protocol"
+HOMEPAGE="
+   https://opendev.org/x/pyghmi/
+   https://pypi.org/project/pyghmi/
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   >=dev-python/cryptography-2.1[${PYTHON_USEDEP}]
+   dev-python/pbr[${PYTHON_USEDEP}]
+   >=dev-python/python-dateutil-2.8.1[${PYTHON_USEDEP}]
+   >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
+   >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
+   >=dev-python/sphinx-1.6.5[${PYTHON_USEDEP}]
+   >=dev-python/subunit-1.0.0[${PYTHON_USEDEP}]
+   >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}]
+   >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests unittest



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

2022-06-28 Thread Arthur Zamarin
commit: d1786223293e7b2f945a681ad17122214b3e9d42
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Jun 28 18:42:31 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Jun 28 18:49:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1786223

dev-python/starlette: add 0.20.4

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

 dev-python/starlette/Manifest|  1 +
 dev-python/starlette/starlette-0.20.4.ebuild | 65 
 2 files changed, 66 insertions(+)

diff --git a/dev-python/starlette/Manifest b/dev-python/starlette/Manifest
index 984e9fd34a99..7b54e175d022 100644
--- a/dev-python/starlette/Manifest
+++ b/dev-python/starlette/Manifest
@@ -1,2 +1,3 @@
 DIST starlette-0.18.0.gh.tar.gz 408097 BLAKE2B 
ddc85690d9eb962a8d82544a1667d17316025330c8fda0c79dc21422399bcff01ccf5baf85eda7941f40aac5845d18fdcefaa23ba8ba442d30f0b9e194f7287c
 SHA512 
521d39c1eec818250da3f2dc24cd2fb08393b76e6314a9bd5f3e520bdfa4652ae4ace5876b7e7f3a7ddc5540160e1086997a40b86a1b1bfd694c6aa1abde9106
 DIST starlette-0.20.3.gh.tar.gz 417054 BLAKE2B 
5564026142cb45075aa3ea3fabbc3e0eb39d4e2d776c6577d79b9c28522befaa92869e5f4211bc77235f6d25102f8d90e3811c972b74bb295abd0d186e29ceef
 SHA512 
fa7f8de299ee452a52bf43ff6c39851fc7985775e1938b38cb564d5cb19705a84fbb173229a090295bca3be87b71214fdf7c80e3db0f870cf018510e1bd06b1b
+DIST starlette-0.20.4.gh.tar.gz 2819634 BLAKE2B 
265ef6b88ebc5cee4361601198891cbab9e92e354942a06622bdac46dc63d2644557bef952730b455157ee83b15035016039f8a88f17e673487e9a3571d6180c
 SHA512 
481a095ada3140164abae89026da36c90657d8ccabb0a6753094bf7fdf47ce6f789320ed15e94d15dedffaf302691e204cb541c26a4c779848aa6505dfe52b2f

diff --git a/dev-python/starlette/starlette-0.20.4.ebuild 
b/dev-python/starlette/starlette-0.20.4.ebuild
new file mode 100644
index ..2a2de474dce5
--- /dev/null
+++ b/dev-python/starlette/starlette-0.20.4.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="The little ASGI framework that shines"
+HOMEPAGE="
+   https://www.starlette.io/
+   https://github.com/encode/starlette/
+   https://pypi.org/project/starlette/
+"
+SRC_URI="
+   https://github.com/encode/starlette/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   =dev-python/anyio-3.4.0[${PYTHON_USEDEP}]
+   dev-python/itsdangerous[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   dev-python/typing-extensions[${PYTHON_USEDEP}]
+   ' 3.8 3.9)
+"
+# brotli needed for consistent test output
+BDEPEND="
+   test? (
+   || (
+   dev-python/brotlicffi[${PYTHON_USEDEP}]
+   app-arch/brotli[python,${PYTHON_USEDEP}]
+   )
+   dev-python/trio[${PYTHON_USEDEP}]
+   )
+"
+
+EPYTEST_IGNORE=(
+   # Unpackaged 'databases' dependency
+   tests/test_database.py
+
+   # Unpackaged 'multipart' dependency
+   tests/test_formparsers.py
+)
+
+EPYTEST_DESELECT=(
+   # Unpackaged 'multipart' dependency
+   tests/test_requests.py::test_request_form_urlencoded
+)
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # fix accept-encoding, as new support was added with newer versions
+   sed -e '/accept-encoding/s/",/, br&/' -i 
tests/test_{websockets,requests}.py || die
+
+   distutils-r1_src_prepare
+}



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

2022-06-28 Thread Arthur Zamarin
commit: 2677833986b45baf8c8741d2a9f240f26a026383
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Jun 28 18:49:20 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Jun 28 18:49:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26778339

dev-python/google-api-python-client: add 2.52.0

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

 dev-python/google-api-python-client/Manifest   |  1 +
 .../google-api-python-client-2.52.0.ebuild | 53 ++
 2 files changed, 54 insertions(+)

diff --git a/dev-python/google-api-python-client/Manifest 
b/dev-python/google-api-python-client/Manifest
index 1825582213c2..69e64a52ef24 100644
--- a/dev-python/google-api-python-client/Manifest
+++ b/dev-python/google-api-python-client/Manifest
@@ -1,2 +1,3 @@
 DIST google-api-python-client-2.50.0.gh.tar.gz 30751763 BLAKE2B 
4fa967932d13fa03640970ba2b6b1756864d88e4953deb5c9cf89a4556bd2cb3f1083f2e141b89a08936a40ddea64e45d65b5d9afe4024edf94a56c5ccb32798
 SHA512 
8dcdb85f2f37d4c668924abba46f0012ad453dc0775b373dc9fc510020479b1dc8a22cd85980ab97bcd4e7bdff19c78d829b1d758e9105a71c3ac7aa0cb19946
 DIST google-api-python-client-2.51.0.gh.tar.gz 31181726 BLAKE2B 
465cbc3beb870a543bb54b69342d1a4e75026fa3c83846a3641e048b922cfa14ccb56593a0e8feadf4bf30568425347b14f5f1dd081d5d74fa1112bb0d57caa3
 SHA512 
ea9e9424aa36e077f10922dba9d6bf43f376d5e059c5d0fc7a31ef919232eb7778a891104fe3a7328e841381d5cd2cd76cdfb1fb80458c979f83a935f8b1df5a
+DIST google-api-python-client-2.52.0.gh.tar.gz 31712232 BLAKE2B 
573226a90617aaf2b0272393694759f2796cbaf26629f4d79ecb661424c6304689fafda7c2d60289840445f118dbae4cf0ffbd6444bc0c428ee4bb8879a57c92
 SHA512 
55fc06c50240b22ed51ecd84e797eebc4c57852da9c45ca8c0face7e961ab0debe06d6ac91fcc6ef81878fc4b851b8bec7a192a4e149f611fe9e4d8b15cccdc4

diff --git 
a/dev-python/google-api-python-client/google-api-python-client-2.52.0.ebuild 
b/dev-python/google-api-python-client/google-api-python-client-2.52.0.ebuild
new file mode 100644
index ..7e8aaa05d6d4
--- /dev/null
+++ b/dev-python/google-api-python-client/google-api-python-client-2.52.0.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Google API Client for Python"
+HOMEPAGE="
+   https://github.com/googleapis/google-api-python-client/
+   https://pypi.org/project/google-api-python-client/
+"
+SRC_URI="
+   
https://github.com/googleapis/google-api-python-client/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+RDEPEND="
+   >=dev-python/httplib2-0.15[${PYTHON_USEDEP}]
+   =dev-python/google-api-core-2.3.1[${PYTHON_USEDEP}]
+   >=dev-python/google-auth-1.35.0[${PYTHON_USEDEP}]
+   >=dev-python/google-auth-httplib2-0.1.0[${PYTHON_USEDEP}]
+   >=dev-python/uritemplate-3.0.0[${PYTHON_USEDEP}]
+   

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

2022-06-28 Thread Arthur Zamarin
commit: 7575c2e1a649b05a496f058521e1fa6d8daf05b0
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Jun 28 18:48:27 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Jun 28 18:49:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7575c2e1

dev-python/pyghmi: drop 1.5.47

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

 dev-python/pyghmi/Manifest |  1 -
 dev-python/pyghmi/pyghmi-1.5.47.ebuild | 39 --
 2 files changed, 40 deletions(-)

diff --git a/dev-python/pyghmi/Manifest b/dev-python/pyghmi/Manifest
index e2591f8cd765..1639f8ad549f 100644
--- a/dev-python/pyghmi/Manifest
+++ b/dev-python/pyghmi/Manifest
@@ -1,4 +1,3 @@
-DIST pyghmi-1.5.47.tar.gz 243783 BLAKE2B 
4611df2616c7681c10664b645969b40f85a41ea2f16c3bcd4123230e90087903e6d7265b0147d93f994a4af32a77750685230d4e977418ba129a3e2093f8065c
 SHA512 
f4122537488ca05035603f15106646e539c5081ee71ba3fc1f37e8175ffe98dbbc59446fa4683816a4211b90bb9f82adea4c5d42e4ce8b2b301c35f862262394
 DIST pyghmi-1.5.48.tar.gz 243927 BLAKE2B 
8395aa3bbba752654c2ad73f76735370f31f9548f91e7e0bbb3e52afd2d67a00b316f7e1e25a49ad16004308a635104fa57a00a6bed63639068de86d96e44316
 SHA512 
f3ee4d44504b2fa5950817e1957ac23c666af6ba36b0ba65dafa5b42036d12d204accf996c75947ecdb5f9533025b9b0d17b0e96612019d622fee678fd0ff592
 DIST pyghmi-1.5.49.tar.gz 244142 BLAKE2B 
f35b483cc4d48c5bc3fe6bd5c6ac3ea320d7c131a0e77f8ff8af1d14ecdc38972170d93b830070ab8c2d27ec8b8f1607ea0c065af4ad402bd0ee2e25307b9658
 SHA512 
9c8ce9ddf61b613cba59a49af4f5ebc40e37f83debf10854d2781f6b47fb0fff058cb9f784ed2d527f84ed1bad7c12acb97460fbab6a8552876510634c1bf5dd
 DIST pyghmi-1.5.50.tar.gz 244226 BLAKE2B 
461bc9598497ae1f61d772ff223e7e4d2dc62660d41da2b660c4d71241c73c9107e8b0f74e5cf33fa8c9a8e79afaa834e4fb72e584ab2234a2874f9b23927208
 SHA512 
96fd274d8c7e55b6efc23612f145575e27a9a4949e20495ccfe023ff37dd7103cf0f42134350bf5fc0d1e4f86416981d01c18bd00d97a0b7a738fb5b363da457

diff --git a/dev-python/pyghmi/pyghmi-1.5.47.ebuild 
b/dev-python/pyghmi/pyghmi-1.5.47.ebuild
deleted file mode 100644
index 1844c945d4be..
--- a/dev-python/pyghmi/pyghmi-1.5.47.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="A pure python implementation of IPMI protocol"
-HOMEPAGE="
-   https://opendev.org/x/pyghmi/
-   https://pypi.org/project/pyghmi/
-"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-   >=dev-python/cryptography-2.1[${PYTHON_USEDEP}]
-   dev-python/pbr[${PYTHON_USEDEP}]
-   >=dev-python/python-dateutil-2.8.1[${PYTHON_USEDEP}]
-   >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
-   >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
-   >=dev-python/sphinx-1.6.5[${PYTHON_USEDEP}]
-   >=dev-python/subunit-1.0.0[${PYTHON_USEDEP}]
-   >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}]
-   >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests unittest



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

2022-06-28 Thread Arthur Zamarin
commit: 4c3d001da65f174acfb2f250d5505a49b3f9183e
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Jun 28 18:47:23 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Jun 28 18:49:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c3d001d

dev-python/jsonschema: add 4.6.1

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

 dev-python/jsonschema/Manifest|  1 +
 dev-python/jsonschema/jsonschema-4.6.1.ebuild | 53 +++
 2 files changed, 54 insertions(+)

diff --git a/dev-python/jsonschema/Manifest b/dev-python/jsonschema/Manifest
index 5a9ac2e4949e..fe1272f50cfc 100644
--- a/dev-python/jsonschema/Manifest
+++ b/dev-python/jsonschema/Manifest
@@ -1,2 +1,3 @@
 DIST jsonschema-4.5.1.tar.gz 282414 BLAKE2B 
5b1d4e591e48c760e89a438b3bf9ea6b27b0959030be4558d5a863ceea218bdc4db19d09e2783724026fc2e10eeb6c969a939f4d1a5b44c16dbf7ff39c61a743
 SHA512 
3866a649ece45c1c69d3d5e9810cfdb094f1af82fcc08a186f9babd7516ad311c4bffa52f61f013bc84e7ab1be06605c5fab738c1c920ff8ce85a73429d9efde
 DIST jsonschema-4.6.0.tar.gz 269939 BLAKE2B 
f214f65fbb908029f221789ab3857db9cbc1a7bb355f04a46bc7798514ba73ac3ba6f78cc3eaf985c19b16607ea6cf38bf46c9a8e19b1b1aef0138ef74239a4c
 SHA512 
82d9e0c7de867c4a53b67b9dc79a38a76e384f5d41c66b52c57d407e03eb97faf8ebf41370ef08b30966f13eca210f94916b6a40347a2a75088e33017ccc2f5f
+DIST jsonschema-4.6.1.tar.gz 278452 BLAKE2B 
0b5c90b790cf7430bfbea4b38f90acec6fc256bf521d9552b463489751da3f889b43021e9d94c3ed4bd7704c462141d73d25273eea1331c85a0d2d04d5c9ad18
 SHA512 
5c0e2806915ef4545092b0bffe4cc1207d9a6f2a6920c10894d5b7b2a9ed665093b7a9a68114d1a05528869e7d8aed902e7569800db4393fa810c0f6853f713d

diff --git a/dev-python/jsonschema/jsonschema-4.6.1.ebuild 
b/dev-python/jsonschema/jsonschema-4.6.1.ebuild
new file mode 100644
index ..fb6400dc457c
--- /dev/null
+++ b/dev-python/jsonschema/jsonschema-4.6.1.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( pypy3 python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="An implementation of JSON-Schema validation for Python"
+HOMEPAGE="
+   https://pypi.org/project/jsonschema/
+   https://github.com/python-jsonschema/jsonschema/
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+
+RDEPEND="
+   >=dev-python/attrs-17.4.0[${PYTHON_USEDEP}]
+   >=dev-python/pyrsistent-0.18.0[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   >=dev-python/importlib_resources-1.4.0[${PYTHON_USEDEP}]
+   ' 3.8)
+"
+BDEPEND="
+   dev-python/hatch-vcs[${PYTHON_USEDEP}]
+"
+
+# formatter deps
+RDEPEND+="
+   dev-python/fqdn[${PYTHON_USEDEP}]
+   dev-python/idna[${PYTHON_USEDEP}]
+   dev-python/isoduration[${PYTHON_USEDEP}]
+   >=dev-python/jsonpointer-1.13[${PYTHON_USEDEP}]
+   dev-python/rfc3339-validator[${PYTHON_USEDEP}]
+   dev-python/rfc3986-validator[${PYTHON_USEDEP}]
+   dev-python/rfc3987[${PYTHON_USEDEP}]
+   dev-python/uri_template[${PYTHON_USEDEP}]
+   >=dev-python/webcolors-1.11[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # requires pip, does not make much sense for the users
+   jsonschema/tests/test_cli.py::TestCLIIntegration::test_license
+   # wtf?
+   jsonschema/tests/test_deprecations.py::TestDeprecations::test_version
+)



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

2022-06-28 Thread Matt Turner
commit: 153f8bb8c7a3a3d799e062a60826e8c8443d3329
Author: Christopher Byrne  gmail  com>
AuthorDate: Mon Jun 27 15:24:07 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Jun 28 18:30:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=153f8bb8

app-crypt/trousers: Add missing dev_reload

Closes: https://bugs.gentoo.org/854285
Closes: https://github.com/gentoo/gentoo/pull/26097
Signed-off-by: Christopher Byrne  gmail.com>
Signed-off-by: Matt Turner  gentoo.org>

 app-crypt/trousers/trousers-0.3.15.ebuild | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/app-crypt/trousers/trousers-0.3.15.ebuild 
b/app-crypt/trousers/trousers-0.3.15.ebuild
index b25a3dfb4c72..c68d0d95bcc6 100644
--- a/app-crypt/trousers/trousers-0.3.15.ebuild
+++ b/app-crypt/trousers/trousers-0.3.15.ebuild
@@ -61,5 +61,12 @@ src_install() {
udev_dorules "${FILESDIR}"/61-trousers.rules
fowners tss:tss /var/lib/tpm
readme.gentoo_create_doc
+}
+
+pkg_postinst() {
+   udev_reload
+}
+
+pkg_postrm() {
udev_reload
 }



  1   2   3   4   >