diff --git a/app-admin/akita/akita-0.1.4.ebuild b/app-admin/akita/akita-0.1.4.ebuild index d7298f81c8..8dbb2d4b76 100644 --- a/app-admin/akita/akita-0.1.4.ebuild +++ b/app-admin/akita/akita-0.1.4.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) PYTHON_REQ_USE="ncurses" DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/app-admin/gnome-passwordsafe/Manifest b/app-admin/gnome-passwordsafe/Manifest deleted file mode 100644 index b435883248..0000000000 --- a/app-admin/gnome-passwordsafe/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST PasswordSafe-4.0.tar.bz2 708173 BLAKE2B b795c0c898aa79a7b80d3defab86a6ce8e457919db6e87a7505a60419123aa338f018d804f562fda12110a2530b839fd672997c9a0dd9e8e3b8ccc7861439d26 SHA512 19cab57785f9d98285099d4e15a1aa8580ac12b05df0ae5a5be63c51aea07b146952d19da889cf1398fbe3ba10c9055754ecd3f4ca4a1e74acbe08731f3ae661 -DIST PasswordSafe-4.1.tar.bz2 708057 BLAKE2B aff935fa9e6e03ef0a644ea82a642bdfee5ea4d5eb9d28baf36a8a82b096d57f89ea9d15a87730e32e68c8e416b0b3e80872693487d26f67cb7af4be799360c2 SHA512 27ef0abb5e1d25f3bb9dc47845a4cb783ef02f3f2c7df1e9b2d5751b8446dc083f7007967aed984c71033bbe6a4474de90ffccddb1a0db615a689b75914c272d diff --git a/app-admin/gnome-passwordsafe/files/gnome-passwordsafe-4.1.patch b/app-admin/gnome-passwordsafe/files/gnome-passwordsafe-4.1.patch deleted file mode 100644 index b70d7cbebd..0000000000 --- a/app-admin/gnome-passwordsafe/files/gnome-passwordsafe-4.1.patch +++ /dev/null @@ -1,34 +0,0 @@ -diff --git a/meson.build b/meson.build -index 9eb076b..f16419d 100644 ---- a/meson.build -+++ b/meson.build -@@ -98,5 +98,3 @@ configure_file( - configuration: conf, - install_dir: bindir - ) -- --meson.add_install_script('meson_post_install.py') -diff --git a/passwordsafe.in b/passwordsafe.in -index acc8b3a..de801bb 100755 ---- a/passwordsafe.in -+++ b/passwordsafe.in -@@ -1,4 +1,4 @@ --#!@PYTHON@ -+#! /usr/bin/env python - - import sys - import os -diff --git a/passwordsafe/keyfile_generator.py b/passwordsafe/keyfile_generator.py -index 02582fc..e29b25a 100644 ---- a/passwordsafe/keyfile_generator.py -+++ b/passwordsafe/keyfile_generator.py -@@ -1,7 +1,7 @@ - # SPDX-License-Identifier: GPL-3.0-only - import secrets --from Cryptodome.Cipher import AES --from Cryptodome.Random import get_random_bytes -+from Crypto.Cipher import AES -+from Crypto.Random import get_random_bytes - from gi.repository import GLib - - diff --git a/app-admin/gnome-passwordsafe/gnome-passwordsafe-4.0-r1.ebuild b/app-admin/gnome-passwordsafe/gnome-passwordsafe-4.0-r1.ebuild deleted file mode 100644 index de1f63d888..0000000000 --- a/app-admin/gnome-passwordsafe/gnome-passwordsafe-4.0-r1.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_9 ) - -inherit gnome2-utils meson xdg python-r1 - -DESCRIPTION="A password manager for GNOME" -HOMEPAGE="https://gitlab.gnome.org/World/PasswordSafe" -SRC_URI="https://gitlab.gnome.org/World/PasswordSafe/-/archive/${PV}/PasswordSafe-${PV}.tar.bz2" - -LICENSE="GPL-2+" -KEYWORDS="~amd64 ~x86" -SLOT="0" - -IUSE="debug +introspection" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -S="${WORKDIR}/PasswordSafe-${PV}" - -DEPEND=" - $(python_gen_any_dep ' - dev-python/pycryptodome[${PYTHON_USEDEP}] - >=dev-python/pykeepass-3.2.0[${PYTHON_USEDEP}] - ') - gui-libs/libhandy:1=[introspection?] - >=dev-libs/libpwquality-1.4.0[python] - >=x11-libs/gtk+-3.24.1:3[introspection?] - introspection? ( >=dev-libs/gobject-introspection-0.6.7:= ) -" -RDEPEND=" - ${PYTHON_DEPS} - ${DEPEND} -" - -src_prepare() { - default - # Use python from PATH instead of binary found during install - sed -i "s:@PYTHON@:/usr/bin/env python:" passwordsafe.in || die - # pycryptodomex to pycryptodome conversion - sed -i 's/Cryptodome/Crypto/g' passwordsafe/keyfile_generator.py || die -} - -src_configure() { - local emesonargs=( - -Dprofile=$(usex debug development default) - ) - meson_src_configure -} - -src_install() { - meson_src_install - python_optimize -} - -pkg_postinst() { - gnome2_gconf_install - gnome2_schemas_update - xdg_pkg_postinst -} - -pkg_postrm() { - gnome2_gconf_uninstall - gnome2_schemas_update - xdg_pkg_postrm -} diff --git a/app-admin/gnome-passwordsafe/gnome-passwordsafe-4.1.ebuild b/app-admin/gnome-passwordsafe/gnome-passwordsafe-4.1.ebuild deleted file mode 100644 index 33f8ddd4f3..0000000000 --- a/app-admin/gnome-passwordsafe/gnome-passwordsafe-4.1.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_9 ) - -inherit gnome2-utils meson xdg python-single-r1 - -DESCRIPTION="A password manager for GNOME" -HOMEPAGE="https://gitlab.gnome.org/World/PasswordSafe" -SRC_URI="https://gitlab.gnome.org/World/PasswordSafe/-/archive/${PV}/PasswordSafe-${PV}.tar.bz2" - -LICENSE="GPL-2+" -KEYWORDS="~amd64 ~x86" -SLOT="0" -IUSE="debug +introspection" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -S="${WORKDIR}/PasswordSafe-${PV}" - -DEPEND=" - $(python_gen_cond_dep ' - dev-python/pycryptodome[${PYTHON_USEDEP}] - >=dev-python/pykeepass-3.2.0[${PYTHON_USEDEP}] - ') - gui-libs/libhandy:1=[introspection?] - >=dev-libs/libpwquality-1.4.0[python] - >=x11-libs/gtk+-3.24.1:3[introspection?] - introspection? ( >=dev-libs/gobject-introspection-0.6.7:= ) -" -RDEPEND=" - ${PYTHON_DEPS} - ${DEPEND} -" - -PATCHES=( "${FILESDIR}/${PN}-4.1.patch" ) - -src_configure() { - local emesonargs=( - -Dprofile=$(usex debug development default) - ) - - meson_src_configure -} - -src_install() { - meson_src_install - python_doscript "${ED}"/usr/bin/gnome-passwordsafe - python_optimize -} - -pkg_postinst() { - gnome2_gconf_install - gnome2_schemas_update - xdg_pkg_postinst -} - -pkg_postrm() { - gnome2_gconf_uninstall - gnome2_schemas_update - xdg_pkg_postrm -} diff --git a/app-admin/gnome-passwordsafe/metadata.xml b/app-admin/gnome-passwordsafe/metadata.xml deleted file mode 100644 index e405a2fd7c..0000000000 --- a/app-admin/gnome-passwordsafe/metadata.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/app-admin/krapplet/krapplet-0.3.1-r1.ebuild b/app-admin/krapplet/krapplet-0.3.1-r1.ebuild index 583766fee6..e6ff502519 100644 --- a/app-admin/krapplet/krapplet-0.3.1-r1.ebuild +++ b/app-admin/krapplet/krapplet-0.3.1-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi xdg diff --git a/app-admin/rbw/rbw-9999.ebuild b/app-admin/rbw/rbw-9999.ebuild index 87e1c6a5c0..9e9ca4d11a 100644 --- a/app-admin/rbw/rbw-9999.ebuild +++ b/app-admin/rbw/rbw-9999.ebuild @@ -1,9 +1,9 @@ -# Copyright 2021 Gentoo Authors +# Copyright 2021-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit cargo +inherit cargo shell-completion DESCRIPTION="unofficial bitwarden cli" HOMEPAGE="https://git.tozt.net/rbw" @@ -19,11 +19,6 @@ fi LICENSE="MIT" SLOT="0" -IUSE="bash-completion zsh-completion fish-completion" - -DEPEND="" -RDEPEND="${DEPEND}" -BDEPEND="virtual/rust" src_unpack() { if [[ ${PV} = *9999* ]]; then @@ -37,21 +32,12 @@ src_unpack() { src_install() { cargo_src_install - if use bash-completion; then - insinto /usr/share/bash-completion/completions - rbw gen-completions bash > rbw.bash - doins rbw.bash - fi + rbw gen-completions bash > rbw.bash || die + dobashcomp rbw.bash - if use fish-completion; then - insinto /usr/share/fish/completions - rbw gen-completions fish > rbw.fish - doins rbw.fish - fi + rbw gen-completions fish > rbw.fish || die + dofishcomp rbw.fish - if use zsh-completion; then - insinto /usr/share/zsh-completion/completions - rbw gen-completions zsh > _rbw - doins _rbw - fi + rbw gen-completions zsh > _rbw || die + dozshcomp _rbw } diff --git a/app-admin/s-tui/s-tui-1.1.3-r1.ebuild b/app-admin/s-tui/s-tui-1.1.3-r1.ebuild index 03e07d2c84..d2e55445a7 100644 --- a/app-admin/s-tui/s-tui-1.1.3-r1.ebuild +++ b/app-admin/s-tui/s-tui-1.1.3-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 optfeature diff --git a/app-backup/b2/b2-3.4.0.ebuild b/app-backup/b2/b2-3.4.0.ebuild index 788e5ccc53..8e9a4ac794 100644 --- a/app-backup/b2/b2-3.4.0.ebuild +++ b/app-backup/b2/b2-3.4.0.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) DISTUTILS_SINGLE_IMPL=1 diff --git a/app-containers/waydroid/waydroid-1.4.0.ebuild b/app-containers/waydroid/waydroid-1.4.0.ebuild index c23090502d..3ea190f866 100644 --- a/app-containers/waydroid/waydroid-1.4.0.ebuild +++ b/app-containers/waydroid/waydroid-1.4.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit linux-info xdg-utils python-single-r1 DESCRIPTION="Container-based approach to boot a full Android system on Linux systems" diff --git a/app-crypt/PBinCLI/PBinCLI-0.3.2.ebuild b/app-crypt/PBinCLI/PBinCLI-0.3.2.ebuild index 81e7ed7cd1..b0396d108f 100644 --- a/app-crypt/PBinCLI/PBinCLI-0.3.2.ebuild +++ b/app-crypt/PBinCLI/PBinCLI-0.3.2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/app-crypt/certbot-dns-desec/certbot-dns-desec-1.2.1.ebuild b/app-crypt/certbot-dns-desec/certbot-dns-desec-1.2.1.ebuild index e15e29154b..c676576b31 100644 --- a/app-crypt/certbot-dns-desec/certbot-dns-desec-1.2.1.ebuild +++ b/app-crypt/certbot-dns-desec/certbot-dns-desec-1.2.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools PYPI_NO_NORMALIZE=1 inherit distutils-r1 pypi diff --git a/app-crypt/certbot-dns-rfc2136/certbot-dns-rfc2136-2.2.0.ebuild b/app-crypt/certbot-dns-rfc2136/certbot-dns-rfc2136-2.2.0.ebuild index e784b2ceb3..a57b2cb3e2 100644 --- a/app-crypt/certbot-dns-rfc2136/certbot-dns-rfc2136-2.2.0.ebuild +++ b/app-crypt/certbot-dns-rfc2136/certbot-dns-rfc2136-2.2.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/app-crypt/certbot-dns-rfc2136/certbot-dns-rfc2136-2.3.0.ebuild b/app-crypt/certbot-dns-rfc2136/certbot-dns-rfc2136-2.3.0.ebuild index dd6f254b62..425d68e1ae 100644 --- a/app-crypt/certbot-dns-rfc2136/certbot-dns-rfc2136-2.3.0.ebuild +++ b/app-crypt/certbot-dns-rfc2136/certbot-dns-rfc2136-2.3.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/app-crypt/certbot-dns-rfc2136/certbot-dns-rfc2136-2.4.0.ebuild b/app-crypt/certbot-dns-rfc2136/certbot-dns-rfc2136-2.4.0.ebuild index dd6f254b62..425d68e1ae 100644 --- a/app-crypt/certbot-dns-rfc2136/certbot-dns-rfc2136-2.4.0.ebuild +++ b/app-crypt/certbot-dns-rfc2136/certbot-dns-rfc2136-2.4.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/app-crypt/certbot-dns-rfc2136/certbot-dns-rfc2136-2.5.0.ebuild b/app-crypt/certbot-dns-rfc2136/certbot-dns-rfc2136-2.5.0.ebuild index dd6f254b62..425d68e1ae 100644 --- a/app-crypt/certbot-dns-rfc2136/certbot-dns-rfc2136-2.5.0.ebuild +++ b/app-crypt/certbot-dns-rfc2136/certbot-dns-rfc2136-2.5.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/app-crypt/certbot-dns-rfc2136/certbot-dns-rfc2136-9999.ebuild b/app-crypt/certbot-dns-rfc2136/certbot-dns-rfc2136-9999.ebuild index dd6f254b62..425d68e1ae 100644 --- a/app-crypt/certbot-dns-rfc2136/certbot-dns-rfc2136-9999.ebuild +++ b/app-crypt/certbot-dns-rfc2136/certbot-dns-rfc2136-9999.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/app-crypt/gnome-encfs-manager/gnome-encfs-manager-1.9.ebuild b/app-crypt/gnome-encfs-manager/gnome-encfs-manager-1.9-r1.ebuild similarity index 96% rename from app-crypt/gnome-encfs-manager/gnome-encfs-manager-1.9.ebuild rename to app-crypt/gnome-encfs-manager/gnome-encfs-manager-1.9-r1.ebuild index b6e33a4cb0..3f2cb7b0ec 100644 --- a/app-crypt/gnome-encfs-manager/gnome-encfs-manager-1.9.ebuild +++ b/app-crypt/gnome-encfs-manager/gnome-encfs-manager-1.9-r1.ebuild @@ -15,7 +15,7 @@ SLOT="0" IUSE="+appindicator" DEPEND=" - || ( gnome-base/gconf gnome-base/dconf ) + gnome-base/dconf sys-fs/encfs sys-fs/fuse app-crypt/libsecret diff --git a/app-doc/ford/ford-6.1.17-r1.ebuild b/app-doc/ford/ford-6.1.17-r1.ebuild index b11d361be3..b32cf84366 100644 --- a/app-doc/ford/ford-6.1.17-r1.ebuild +++ b/app-doc/ford/ford-6.1.17-r1.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 toolchain-funcs diff --git a/app-doc/ford/ford-6.2.0.ebuild b/app-doc/ford/ford-6.2.0.ebuild index dc98cfeea5..9817f3d172 100644 --- a/app-doc/ford/ford-6.2.0.ebuild +++ b/app-doc/ford/ford-6.2.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 pypi toolchain-funcs diff --git a/app-doc/ford/ford-6.2.4.ebuild b/app-doc/ford/ford-6.2.4.ebuild index dc98cfeea5..9817f3d172 100644 --- a/app-doc/ford/ford-6.2.4.ebuild +++ b/app-doc/ford/ford-6.2.4.ebuild @@ -3,7 +3,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 pypi toolchain-funcs diff --git a/app-editors/amp/amp-0.6.2.ebuild b/app-editors/amp/amp-0.6.2.ebuild index 997d2f0646..1bfb200b32 100644 --- a/app-editors/amp/amp-0.6.2.ebuild +++ b/app-editors/amp/amp-0.6.2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) CRATES=" aho-corasick-0.5.3 diff --git a/app-emulation/quickemu/quickemu-3.11.ebuild b/app-emulation/quickemu/quickemu-3.11.ebuild index b687de1d67..b20d3412b6 100644 --- a/app-emulation/quickemu/quickemu-3.11.ebuild +++ b/app-emulation/quickemu/quickemu-3.11.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit python-single-r1 DESCRIPTION="Create and run optimised Windows, macOS and Linux desktop virtual machines" diff --git a/app-misc/anki-bin/anki-bin-2.1.60.ebuild b/app-misc/anki-bin/anki-bin-2.1.60.ebuild index 17a5984501..a56d7776dc 100644 --- a/app-misc/anki-bin/anki-bin-2.1.60.ebuild +++ b/app-misc/anki-bin/anki-bin-2.1.60.ebuild @@ -8,7 +8,7 @@ EAPI=8 # that is not linked against libpython. # The configuration with Python 3.10 was tested on a limited number of machines and is not guaranteed to work. -PYTHON_COMPAT=( python3_9 python3_10 ) +PYTHON_COMPAT=( python3_10 ) inherit python-single-r1 desktop xdg MY_PN=${PN%-bin} diff --git a/app-misc/anki-bin/anki-bin-2.1.61.ebuild b/app-misc/anki-bin/anki-bin-2.1.61.ebuild index 1a06b1b8cb..ea55bbcdae 100644 --- a/app-misc/anki-bin/anki-bin-2.1.61.ebuild +++ b/app-misc/anki-bin/anki-bin-2.1.61.ebuild @@ -8,7 +8,7 @@ EAPI=8 # that is not linked against libpython. # The configuration with Python 3.10 was tested on a limited number of machines and is not guaranteed to work. -PYTHON_COMPAT=( python3_9 python3_10 ) +PYTHON_COMPAT=( python3_10 ) inherit desktop python-single-r1 pypi xdg MY_PN=${PN%-bin} diff --git a/app-misc/aw-client/aw-client-0.11.0.ebuild b/app-misc/aw-client/aw-client-0.11.0.ebuild index c39d2d6125..8349a69f81 100644 --- a/app-misc/aw-client/aw-client-0.11.0.ebuild +++ b/app-misc/aw-client/aw-client-0.11.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=poetry -PYTHON_COMPAT=( python3_{9..10}) +PYTHON_COMPAT=( python3_10) inherit distutils-r1 diff --git a/app-misc/aw-core/aw-core-0.11.0.ebuild b/app-misc/aw-core/aw-core-0.11.0.ebuild index bf7a81cf7d..d63e79d70a 100644 --- a/app-misc/aw-core/aw-core-0.11.0.ebuild +++ b/app-misc/aw-core/aw-core-0.11.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=poetry -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 diff --git a/app-misc/brightness-control/brightness-control-2.4.ebuild b/app-misc/brightness-control/brightness-control-2.4.ebuild index 6ad5174dfd..693c6c1bb5 100644 --- a/app-misc/brightness-control/brightness-control-2.4.ebuild +++ b/app-misc/brightness-control/brightness-control-2.4.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=poetry DISTUTILS_SINGLE_IMPL=1 diff --git a/app-misc/far2l/far2l-2.3.2_alpha.ebuild b/app-misc/far2l/far2l-2.3.2_alpha.ebuild index 3a17f0d98e..f0d8a1521f 100644 --- a/app-misc/far2l/far2l-2.3.2_alpha.ebuild +++ b/app-misc/far2l/far2l-2.3.2_alpha.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) WX_GTK_VER="3.0-gtk3" diff --git a/app-misc/far2l/far2l-2.4.0_beta.ebuild b/app-misc/far2l/far2l-2.4.0_beta.ebuild index 796ea03ffb..4742dd5ce4 100644 --- a/app-misc/far2l/far2l-2.4.0_beta.ebuild +++ b/app-misc/far2l/far2l-2.4.0_beta.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) WX_GTK_VER="3.0-gtk3" diff --git a/app-misc/far2l/far2l-9999.ebuild b/app-misc/far2l/far2l-9999.ebuild index 796ea03ffb..4742dd5ce4 100644 --- a/app-misc/far2l/far2l-9999.ebuild +++ b/app-misc/far2l/far2l-9999.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) WX_GTK_VER="3.0-gtk3" diff --git a/app-misc/mat2/mat2-0.13.3.ebuild b/app-misc/mat2/mat2-0.13.3.ebuild index 59cf6e832c..e3985b7f3e 100644 --- a/app-misc/mat2/mat2-0.13.3.ebuild +++ b/app-misc/mat2/mat2-0.13.3.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=(python3_{9..11}) +PYTHON_COMPAT=(python3_{10..11}) PYTHON_REQ_USE="xml(+)" DISTUTILS_USE_PEP517=setuptools diff --git a/app-misc/metadata-cleaner/metadata-cleaner-2.3.1.ebuild b/app-misc/metadata-cleaner/metadata-cleaner-2.3.1.ebuild index 512d3ce438..d616b76084 100644 --- a/app-misc/metadata-cleaner/metadata-cleaner-2.3.1.ebuild +++ b/app-misc/metadata-cleaner/metadata-cleaner-2.3.1.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit gnome2-utils meson python-single-r1 xdg-utils diff --git a/app-misc/onefetch/Manifest b/app-misc/onefetch/Manifest index 80ccb1d23a..599642251c 100644 --- a/app-misc/onefetch/Manifest +++ b/app-misc/onefetch/Manifest @@ -1,25 +1,31 @@ -DIST addr2line-0.17.0.crate 32260 BLAKE2B 23c3715820a04260460a41695d535da3565f76519b7313d0ed684352b339de2ea668c44fe8ca58fc1a5b9f84cc5e9d04d889440abb5985bdc04b267dbdad9d9c SHA512 ef3bbd7c6d1dfdd0b47e3be1fb4c8b15ed61a769bed7e80dce80461a1ee13ef21c75e62e9a66328504f862341f1e808abec5790ac79784e18655afcc16206b95 +DIST addr2line-0.19.0.crate 33210 BLAKE2B a6b393dcddfa0f858297efb6b261d3a23f118be45a3211ee15f6c58808f241dbcf5282f4a86be579360513f23ac4035819e923f2587b7499110af42e9ac3ab88 SHA512 18da72e412bb89028e2ccb838192330535e45300f6fd8edc7d1d64397792a3db12418aa24a3312730c5414e2a1b1d65e6b9d5691ba234c9142b5d885523a5e94 DIST adler-1.0.2.crate 12778 BLAKE2B a1dc17786adae945ac09d3525e609ed944e6465690787bbb831a1b9d53793cba1989793d0a5606d5d23ee20d36457923d451b1b3530c9ec7072a487aa3e55bbd SHA512 7ab190d31890fc05b0b55d8e2c6527a505e06793d5496be0b3831e0513412f9ba97f8148f6f68ed0770fa9cd980a5092d885e058becf1d5506b7c74b82674aa1 DIST ahash-0.8.1.crate 42520 BLAKE2B 5f656e7ba652481e109cf3c47c694557b41ef6e92a6bd88ddaff7b2c42ad7c7320b45eb1bad43b8804769d46f56d0998a14c58b2175c758747bd247ce3d6a638 SHA512 f840f3124d22c90479ad5eb2818a37fcab3822426d7e6b8c7bfe6647eaee55c547df22505c065f8179bbb172982d89462231d4429f9b41f4faf74821fe668568 DIST aho-corasick-0.7.18.crate 112923 BLAKE2B 4f6947d1aacf89ccfab0592cdc55fa61ef09cea38231d3f758765dbce328a810c0b588be4ba96e81d64955379ee005722d22a7aec39caea6e72342245d7ca34f SHA512 7a23b16231a90d23ee60ad4c81bc225410599a4560d33d3a203138fc540c39cf1000100fed3aed40dcc371c3635656a3792545dca5dd1aefbde00d8774eebd00 DIST android_system_properties-0.1.4.crate 4637 BLAKE2B a8d1768a924fc04ea27f4606b21cc3ee657b2ced18a267974b2eacfa73c895719ed56fc508beaa20997fe1848c23d40b5438400d6390a15950fafe57fb96d3f3 SHA512 6580064f046352d2ecc205f78fbac64f36e85a10d15c2c046cd7037ab2505d0d95ad785a4b1e276708116088a0d0ff5e7f89a0d26f498f0dfa038c8cf8d0dd2a DIST anes-0.1.6.crate 23857 BLAKE2B 9ef464a964709b408c7d7846b9b1e54e52d6ae8f21f22ccfe509ef7197d4694f439084dbdb01fdf88829d181965ea9d1452253789a46fdf6d0520e3413c50d61 SHA512 f9dfaaca9ca327881ec30efaf24e208daae668b1e9d6963c8b0ca9f9fd13be777c793076a87980429f0dfa4db28ef5331ce6652a76da4d5a87485b23fc2fde29 DIST ansi_term-0.12.1.crate 24838 BLAKE2B f636772c34e2d68cda7b8d3b2b86abda074585a62bd2654812ce92384244655a9197fa66e6939e19a674c0148ca605313d83de262bb18c2339a8a4eb4438a791 SHA512 b840e28b3e7700689a69a39659b1e066560078dd4a58326b91a028915819e7af883399ee53e920db68fd974c58d35bb1ddf8d427af5937d5f696f57c4376b671 -DIST anyhow-1.0.66.crate 43770 BLAKE2B 8d74397c47bd64c00f015cf7ee279fa020ea39191440208d77e4a5fdb35fca531e8bb9b765be223b24050d0fd1db76fa5b516146f450937f84a5c113c9eca997 SHA512 7b4078906df2805d491dc2f29c4eec85a9f43078c0dcd9c05261c2706ed655953b693c4f59fda62547681b29cda9ac7a0789f1359bb18110403cfe34e9fb0dc3 +DIST anstream-0.3.1.crate 19503 BLAKE2B f8e65cd47ddf95a1963bf5ddb91e8d226f368930731dcbb985fdd60dcfe218929e01be45168ccd6d86d76f0ab097c52e0ed4f89cca0d6b4864bab57d8a36dc05 SHA512 0eaad41de20fcb8207eecd810e47c833c59bea43cffd7e11450fc74617dcf3adb8d2ae1b5a61f8827dd3ef86ecf3ff7503d6b55c489aefab5f62c8bc746c2e8d +DIST anstyle-1.0.0.crate 13972 BLAKE2B 741704b6e338834696bc816d8a65ff933f9bff48e71d25269f04c4a24c3dbb06826d2f84f73a1dceeda99cfc5c8e3d59b3d07dbb404cc3471b86cf118d074e80 SHA512 5a0159b9f8a80afadff04ecbec3c1769cef712c77de8062b31323298dab9507f4a87b7c777e6335d310ec464b0982d097b5888b4b351c389b5f4419c2c87be7b +DIST anstyle-parse-0.2.0.crate 24361 BLAKE2B f796ddf1af04c93d7ee2721731e5cd22bb941919940a9edf6b2a658a8c39e87bd801bfd989631d64e9061067f7349796c56009ec61c02d754748181cc4d91a62 SHA512 fbac25189a0f4c0ddf2733c8ff74bdc2dc1a35e522d0201fa48f0f45e1d5d0a42e4806178507d0bc6a2ac22978b813eae5d57f09dddc80582de524690d87147f +DIST anstyle-query-1.0.0.crate 8620 BLAKE2B 2d296b5066fd6284a2410923215571e6df650c5ef892d6de7a7088a0996ca30608797feabc84f3c325ff4d07001dac80ac5067d2a9c9d15d9ba59a276b399f53 SHA512 2781be5c82293b7ae338ec5046fbeb130de9eb2dbf2e4dfaa73ca5233032e1e52c133e141b02f33d4bc36d996a0a3f680ac82d42d614a5305005f60547133c7a +DIST anstyle-wincon-1.0.1.crate 11718 BLAKE2B 2500845a23edfb47ecd156424a89789c713a7c367c3fef98d26e4e7b2acb3c6433d39a1c2a59813a98266b0993d4b750e9b6b68b7ced7ec5a04a8b13bad174e7 SHA512 00c380fc0198c49776c40aeef419be2fd2d6809bd2e5d86457f1658c6f4b2e83ebe8feee95855c3bbedd4200a917f582bd41b0ee0cf5d7d1d5017228885a58e6 +DIST anyhow-1.0.70.crate 43803 BLAKE2B 574da0e447592c12051deef171850b00ac2347dd336f71915dd21f45cc03439fbcdbaffe261097d53cc11fa0db75b1e3b21ba667f26c08db7125b1c6264973de SHA512 6fd1338e4cbe915cb01fcc5e05e7e0c051868701eeb27f03577a7cfdd59057493922b36e2308f7050608a851112d4d24cff2826456160ac8930fe961640e809b DIST arc-swap-1.5.0.crate 65351 BLAKE2B c6b278134f6e29551302e27131639f3bc5bfb05042701cf6c12aab1697f211be0942c44919d374e196ef03605fb137334b42decb9623a137b6ead346586c2105 SHA512 b668a75b2ac77a9d2df3f29b70c8c22e5a961cd2478cd76b6d313e0e1ff809508887451b895f057d160860daa4b02cb74616ab8daa34d163ef3f42a009842031 DIST arrayvec-0.7.2.crate 29341 BLAKE2B eae9d3f494033ea2d837a6024cb24bd4574683ed1e76ac6be7f7c6b0d8ee65c0eaf03dbae7fea04cf0921299f69234ad91e1cf41342de86f554f74e287dd3ba1 SHA512 80cc6e55b6032f4882362813de970d3d99e600ada774b28ac6a24c9c8e018fda3b35c5750ac3a09fca6fb9496e2e3fe608b58d21b1b84685ebd170f567a0ecbc DIST askalono-0.4.6.crate 30153 BLAKE2B 158d8e9f5754b36fc19cf7b0a91f63587cb81cc6a3e1a26a0013c56c5a846df468f564ee7b766de8022ab4d8211354f205468c8bee8c7e796f3d26d2bace73ca SHA512 4d0cacf8dd18f3efcadf35473788e59a2ee4d2c1ad1d931b97037352c8f5c79631800375e05916627adb10c76cd938c8c0ed2eebcc6cb69b190dbd80741294e8 DIST atoi-2.0.0.crate 7785 BLAKE2B 406b5d14541bbd1428171874c549cfbfa1b80b8317a03b1b0e2795da7d2d54e94b30fbac05fcced9b1ecdb6e15709985cf84490af9e57fc16697bd581fe48554 SHA512 089959e903a17c5550f90fa1be67fb937120f693a924800d4443c49caee6516f2537c57b29ecd9136020d7644281457f75654315e9c5a211b2e4b57e77076024 DIST atty-0.2.14.crate 5470 BLAKE2B 2db856a9e898a430258f059aeaf7c844a153293e8856d90ac81f7d91a888c89198768ad5cb09303c23241fe85c560a55148fa56a303651a82b0edb895616bfab SHA512 d7b6c4b9a0f898d91ddbc41a5ee45bbf45d1d269508c8cc87ee3e3990500e41e0ec387afb1f3bc7db55bedac396dd86c6509f4bf9e5148d809c3802edcc5e1d9 DIST autocfg-1.1.0.crate 13272 BLAKE2B 7724055c337d562103f191f4e36cab469e578f0c51cc24d33624dea155d108a07578703766341fd6a4cc1ef52acda406e7dba1650d59115f18261281e5b40203 SHA512 df972c09abbdc0b6cb6bb55b1e29c7fed706ece38a62613d9e275bac46a19574a7f96f0152cccb0239efea04ee90083a146b58b15307696c4c81878cd12de28f -DIST backtrace-0.3.66.crate 74397 BLAKE2B d5c2e941d118a13e1335ceb5c129fc022281592b19a03f7c07914c607e14d0f415956a6076755e33263cb44a5e60827345db1490abe36c74aabd2594ef9661ca SHA512 7370ce52d0b949a6faa05f91225f60928e42e52c00ed2ba4054ef7efd41cd65c77b0e67c8afb9d5bf834eb4b1451b642720521e17d1954be810e3c5fc70bf646 +DIST backtrace-0.3.67.crate 78564 BLAKE2B 8c77d3d182c7e1ec3840fd6c7f4214322e473ba79a71b2d11d98696f8ae4440350f3c84a891b2ec79fffde107fb2ebb99fffca202d6ed235d3abd68215a1089b SHA512 8603a3b63f4f08be315176908134243680bf1a4b0e6cb26ed81f5fc1060279126ca0ef28f209a10289e1a85214b35db6b496affd71ad21524094f3ee3acd31b6 DIST base64-0.21.0.crate 72180 BLAKE2B c7aeaf671bdeac67703f9c4ee1be003eb8d6f46fbaa0adf61a4da304458742938db04291d5f626115e3fcc901eb3abb3f9baf8247f6344b4d49f60a200fc6fd2 SHA512 60bcc157c6449a2160e083611e6d53e07bbff7db8cd550d9056cb804e99e990d4a20092ba4347306a3c6b6c42474a06d92cb3895125c50cef9b74cd3cbd83a2f DIST bit_field-0.10.1.crate 10576 BLAKE2B 3a906092be85cce6af9e2ac48632d8545864c5fd1610e7e28731bd5cc44c9513f2c7eb52fa1be0b4eed65bffe130ddc98c95dfeba2f9de28ada4091396e5695d SHA512 4848d7ec592642913c7bd06cd3a0da49d3bb14291866cd22ead8e9a6b2939a787035d5cded87be3d2d3491283e31ea2cfb105885df4114720da98beb82990ee6 DIST bitflags-1.3.2.crate 23021 BLAKE2B eb990bb27b2bdeb66fd7212ce582cb36e1c616debbac85df642d0c82b25439e6bf9b1e811fac76b59e58ea3c1bbea6170d03a61e8f9a395e4334a0e2e2987eda SHA512 3c698f757b5cc62f815f9a1cce365c3d2dd88e4db71f331dff8bba86c2865f755b81cb4c9bfc59bd86b7643b0943f9e09a7c4f8ad75eb2ab0e714803d0129f62 +DIST bitflags-2.2.1.crate 35798 BLAKE2B 9ed2e0764edb3f164385e4420e8c9a133757194ee2763743692520d2389ee81c987a081db68510963d66a02555d20bc6decd83f707309040a7295522ddfa35f3 SHA512 413b602edb82f8a4553735e46feefe323137b742d003368e037406157f916e5a5ea002d015a27cf8d41accca75f103c6712e2268fe2853d4d5e93e7264682182 DIST block-buffer-0.10.3.crate 10465 BLAKE2B 32f0089971bb759244b73a75bdbbeb2d24f0422e92ceb0ae0afe3c698e3fabb371112a2eba3dab16a3859420d492c0ac984bfbb25e59e0c31951501cc652aab7 SHA512 e29faab70f8f2965a58089728274ec34bc97d681526687868c9cb1a2c145db00717f97e77b79a04fa52bd76817d796e104b509cd2a3163085b214f8eb68ac04f DIST bstr-0.2.17.crate 330350 BLAKE2B 90c3a48d78b73d7e36a3da9fda0beae6e91ce534d17198ea8ceee0b613d03297f9dd8bca30e1ec5da01d1da359a1da72b2c2771b77c82bebab5006cafd665192 SHA512 883eac8210d14f89517b4dd5e25d02c97cf31602ec74498b5e186112ba0f154d47de8d1c41a8f4e5503f3b53c064e2c976b60bbfd63fc28b186bc006e00f20c2 DIST bstr-1.3.0.crate 340998 BLAKE2B cb965b9fc3f2e6906308eac7a99f1920423646fdce3221df0d532167239c4195a7b8f4451c34914c4a8ea99a79f847b6c8d0bf1f392044120ee27e02fd3418a1 SHA512 bacb9d8ef907853810bfa67efb670a98f76116af74161664ef11fc875f0b9f5f80423ee8af7db6a483f2c7cf70c13be3a36cbc1354698ea55405c684e9604253 -DIST btoi-0.4.2.crate 9580 BLAKE2B 2aa71f0bacd1e09476de4d9148fd3e1613896d3afa5db3182f14d7847411b71ea4426bc1313d94693851345d82db297c118a8e1cf196c16e1605f701d93f8f88 SHA512 dd250b2e41728c4bd7c41a973b5701ab0e599470030cf88a13713c3262cd454d2515336f49cd6dcbe8b928eb38a053778fb578d11b693ee2d1aa4af07d40b6cf +DIST btoi-0.4.3.crate 10007 BLAKE2B 60a4c0511afc23ec3bdd07a905e82b501f1000081e6dbfca9ee6a0d6aad40ade84ab09d740fbc8e9656653a7f5a9a12a68ffa732618e8dc87f9cf00a90b6d3cd SHA512 35d54183a37c8adb11838724a061b38d286a92603a557ee8b4b80dd230649a0ceb165fcab4b6e41402284f2153e18fad5c246f83d99accb2fdaa8f32f854bd22 DIST bumpalo-3.12.0.crate 81604 BLAKE2B 2370094f0c23a3e9b75c8e523e54637189543d9df90ae7ddc349d316054d3d1abd1319e51cf1578f1630be0673fd7f65d130469b2729aa32617372e8bc5dd5f7 SHA512 37f2228f251340e82c27f2b34da2af6eb520077b3809331547cbe4887c0b4791b1a7d75a017decccef162cd02a088d504214b7a44b484a7d93eb6a278b329ee4 DIST byte-unit-4.0.19.crate 10929 BLAKE2B af6090fd27ace38f90e8ca3abbb599c7715ddc0a89947539136eb13289e3b6add9daabdea3cd5474032641070eb49dcf33cc6ec6d57e7c8436d842f49eee84bd SHA512 5fce31ae5826549cd0d6133af3fec5961b931e8cde57d082ac82220d19d444a186a5fb339be6eefda82845cb59ceeebff672c771ad1a17c372741bbca476e234 DIST bytecount-0.6.3.crate 12416 BLAKE2B 462e41d5a4ee23a6c9ff2bf350171e309cbc32f14bbdbde25a5743072a6511634d6c0429903edcfa8df4b9ef3c7bd95d73fff8a7b2018f3b4a8147de2bbfd3f4 SHA512 0c5f424329883726589e69842d2ac0767dc0b440d744a4452a14cbd449b8ca2e8117fa2978b4aa9b803a1a7cf79e9cf67e948057e8ee521e2422ca2e145ea670 @@ -39,17 +45,17 @@ DIST ciborium-io-0.2.0.crate 2738 BLAKE2B 6f59c4e8d9c91bec47775d96d1089fa3989d34 DIST ciborium-ll-0.2.0.crate 10740 BLAKE2B f2ab6870bf68d238d51617e17a6a50fb7894d11d7428305fa0ef590b825fa9351dcfec02e27d5cdf716bf392d0a996ecee2a475297de02ed99c65d8fc06f2c08 SHA512 73a7507332c8d941c82e7ff8cc707168f8d231db7531fd28eaba1be341f1511cd494c61f531852e0c5e37a65153addf259ebceac70f70185ede287d93b911845 DIST clap-2.34.0.crate 202210 BLAKE2B f383adf1d757ac4b68995132b33837686ce451f85a02a8d05d2c746da398510d05d46330f3efade063c3952aacb1754cdac73dd0afcae0df5340a89f9353aa1c SHA512 c648a761b9996a7e7464a538bb53621bae22090b846a42c3b729beca3363958ae67e3da9f93f58b10a10e043cadf7ff930388680d168646178c2824177832db8 DIST clap-3.2.23.crate 219435 BLAKE2B e99a928ef61a7f9f6d7df2c38acd480fc86bfa3885d8b875007aa5bc855396641ca6772387de2eadc1d545dd201434037ea9e7fd138395831e4755ae5a917a7d SHA512 1f1f2ad07a0f8fbe8672f4252edf260ffb5e024a20d6673fb846d59e245a226a43675539ccd3cb252571766b1f6511c68c5cb0f2351c8086955d49c37f87338a -DIST clap-4.1.6.crate 207177 BLAKE2B 0931ac4fb47d51cd9688397a47bdd19d78bcd56c7e2ac2fc871192ab3ef36caa63ebf6d85d0480c6931a877d44d850d3efaba7d49913e592612d39f24929a408 SHA512 739b1e3521762aa3f661489d448cce0e0856dad9ac392d4402c2f9051c5ea2db2660b0cfab73f04374fed854804f80cbba45e2d1a0e70ca0f0527c5ae12565a0 +DIST clap-4.2.4.crate 54031 BLAKE2B 1affbb19f1f5f08585d0190b832be012e782442e62427befa35a29fd66391fcf317ed3549e8780dd502f9b3b564b287b7b16d0bf0a5d80f7ffe80fb4cc15926a SHA512 cc73c65d59fca7fc2ae7b40f9f9f9737a3fbf352338d23cff8e8f97f121f98585adfa795f7084523ee1c5bbaa46ffba7abd7b9dcb9b43c39c6b1780030f6768c +DIST clap_builder-4.2.4.crate 161926 BLAKE2B 1e56748998949d0eaa221f8ff85f53add990826fb5a748f735af4b23e682b02df84e3d56b1611998350fcdc7815b4234a8d5b8f2346d18d74d79f3e31ef7d272 SHA512 a27e626ac84d4630bcfd2518981130108c0000dd672499bfcad88d5bbd933feae91117c656dc106c6fa5010b7f1fdab9b7ac4a548a76c29aedbb79067ed917f5 DIST clap_complete-4.1.4.crate 33288 BLAKE2B 2c8ecd326b1e8001a25502a2c7f55d8903cdcecbc216ca760ab1c3d9d20a89f347ec89e02cb3ae6d9a6490c6c6f932ec100644fd1f48edf42a82e1421923d984 SHA512 606960eefefd9137fed6aedabb2a495cc57459db713cea260958273dee10e2833305a236f60b64aff2acdf371cb3232f6494a2971e1b91aa032738e4baeef199 -DIST clap_derive-4.1.0.crate 27897 BLAKE2B e886be1db739d6a14ee5b049f3e991dad62ea884b1f885a357fa436916fc00d51315f7453b85ec7a18384d564f70380c58dfd2fdb862a20b510613b57173cd51 SHA512 dc191ccd0b596395d029e9ded5d1cb2cb86c8392a4de52ddb877b59dafe85369287b6ec2749d01f33372fcd4cb6a4e12a9cb02b394f50d65ebdc4693af062807 +DIST clap_derive-4.2.0.crate 28953 BLAKE2B ba1a598c4febaa3a2eb41fa4f0b78b79c1f0fa9e04b488c770a59fe450e057648941292f54f799766d54f979f8e0f38c145721b410a6da9cd9eb4bf3dd1a81d0 SHA512 99f509007248bef618550ecb49f77bcf8efedd0067333e97e72d4d3e05db08db8ba16f353a28a53c5719f5c6f367b8e085536492bf38b46e8d3cb9dfcd78ea1f DIST clap_lex-0.2.4.crate 9652 BLAKE2B 5120b508dedf52507068c0c369a45ddfbe0369e5c05b65bc5a78c422b2a4bf488f9ef1e0bed4e335450f2c08b80148eb5f7efed678039b5a94b5bd666385939f SHA512 6c05e5fd850befd45be9005af7252385f2304aa28a107413bbe329d97aea835f7acfd0bd169c99f69f466ab93d6e1c35d73a4e48343457a06fe2d6be5bedde0f -DIST clap_lex-0.3.0.crate 9671 BLAKE2B 4422495226da19cb7a793d364ba5539ec77f9d327e2f1627e4b547fee0625162b57ddc6bc50585f520d31ec289a53065a2b6e0ba66111959390f756143cd5fb7 SHA512 5e601d540e46e527f6a2ea1959fa5aa035ad823008806f3a5adb4785f1928de4c9fe04e61680c64bcb87ed32b2e991951ec27c5cc5acdcfae51cdc61767ff100 +DIST clap_lex-0.4.1.crate 12122 BLAKE2B b06dae9978865bdc63dcac66358f7d63f16c736a9b9cddd3b25a89c8d18d5648d107c2ebc3cf756f9e20af723381f574532add12ad4454312ea3379efd92f68c SHA512 012f5b3bfd252a2278a4089bf05340b03f73866c18612b2a4572a81b3182c00bf13dcf47e61fff49eb9fb2e091602999e6c27dee275c7de7559b27955ad082d9 DIST clru-0.6.1.crate 16507 BLAKE2B 6379e70a2d75530bde76e82c370c4481ce84d8196a395e94b30dddc1126529774e7ac662da2611e4da10cad6dd54fbe55e1bca4d554369ec5f4798bab59a9d53 SHA512 bb9303ea245e3df6321bbf3c4cf9f899648067f8d3950638387badc79ab37e7570ee73c90af96dfe4eefc004d116c5fc77cc8d89a2809defa2107cde530cd192 DIST cmake-0.1.48.crate 15142 BLAKE2B 5566d196c7ebcaa6b4d91e3361d7c92eb9c60c0a940b6d581d8cfc547606781f04f77d707ed128a6a391ec46fe801a4f65acac3c7c9bc90e0e43cd9e1bd6be03 SHA512 c836208d43f4a716be6ef043a6b5f526d3961b9414f1419171895903491176a2a8dc2f271062667a7568c7deb2bebfe96541b4e4fe73c31aa9aa760557b188b9 DIST color_quant-1.1.0.crate 6649 BLAKE2B 9a2488dd00b7a33e15e05531ea49ef1961131f0be0922ba41e2d74d2b1a047daed483ac3a9dd87c847a81cce70a347395c557cad8228ab9a8dc5be7cc0f1bcaa SHA512 690c928bda4b7b57425f38ea68ac89cde2473b7a91b7e62c04a8f2c5a0fa3505e26b065d48b7ad0a8bb491f92f600f896fefdad3ce0e86e43cbf4f9a89e94201 +DIST colorchoice-1.0.0.crate 6857 BLAKE2B a0818be1299717461ffc1bcfb6fc53a0b3b645aa8c45fb72e045cf2d876fa207948610e58d6a837aad24838ea9616e80b0558ca3eae03fdf9bc4c03a8e5ba52f SHA512 53363f2889cd8e8a3b3ed10c48356896c0daa72f3c12c9c7804707ab0dbc07c0e34ef52fa4f0fb1647311ce5913168c1bf62c2407ff86a33f765a9e6fccad551 DIST compact_str-0.6.1.crate 54555 BLAKE2B 4f389035aa42b763035c2d7a49500c1ec98cb563fc7f693d7fd468de9132105a86d5d180866fc1dbbb5e79e2281f882f3a9667fe81173db189930a40878e0f3d SHA512 4f017210cd42ed6d1a641cbd1c9f214c356dd9a188675413751aef2359eff27f2045622802f9df633fa803073099e32619c7a67477369197be81035da0c10acc -DIST concolor-0.0.11.crate 10249 BLAKE2B 9934c1a2add7a97961a7bf3c9adab81780e1bcfa38fbe29f49e177122ca3d3d43b8431493ae89d4d80035e903984b03f6e9fc57aa4d2c834f852269c818a6635 SHA512 e54ad64c3c08d5bd48882014078bb94feb297b747059a6443cb3030fc3256ae63bd8b623adf2a767aca736a73718a753de90fbaad274117c13939c1253d4e73e -DIST concolor-query-0.1.0.crate 7281 BLAKE2B 74495618cdcb4e366793116490c50bee2d4f792c8c3de11c18611c55342c742c9c0cfcc6c011aac43b88acebd12a8f740967092382f5e17160b85914c43388f9 SHA512 d311921a177da3611c64a1cce726de6cdf20ce22d1f1f4611824331c1ac015f4d7599b58291bbded6471209764d03698f93312584fe9aefb162d0c03f9a4030f DIST console-0.15.5.crate 34788 BLAKE2B 915818e2a5cc6776a3d40f51ac85ba178e738f5cf40e5e3c1450aa731a04d73a617341dead606e043fcf66d0701f625ccdb5c787978d784c3f22f9ec0524e89a SHA512 54dc15a0c0d7e1a96a368e5866e1e5ea9d11b0b7eafd0e086376085efd3f656bcf5ec86f4eb387b42dd8cd4258f9162c401914d519a175331d0c1873794f8d43 DIST core-foundation-sys-0.8.3.crate 17519 BLAKE2B 4ac3d9ab16753dd995abe82f158d460d0d22184ab55d260e73b20305cffe4e03427dabfe0c8be968b6c3ecd348be2e17154ded7c9bbd5a95334ff266fe83bbf7 SHA512 a3ba3184cef65dafe8318c4db7e59eb2749dcde7b2370ad20272b0735ded0032daf2de3fd0cf55eb48448a335f5b81e8e745f2a647f9a43bb85946ce714bfd82 DIST cpufeatures-0.2.5.crate 11251 BLAKE2B 2724be40d3bc0e2fda957f645e1cd6472450dee68db3592ab607bdac444283f571f3c904e47981a3fdaa06cab4032734a54470e3dd6e1b67fd856daf010e1277 SHA512 d02327a27ca9fc3c587dcbd10da6b1370671cd7b1df8dfc9078b47180744d0572ef41a7ec205ae9f1c571e5b7f4bc81278ab4c6b076c6ccac0167100e346e74e @@ -84,11 +90,12 @@ DIST encoding_rs_io-0.1.7.crate 16969 BLAKE2B 8d51835dc0882d0e0512f0a177f10da3a1 DIST env_logger-0.8.4.crate 33342 BLAKE2B b1bb359be2f34ca6f93f72154c86920b8254f574b48f693b2ae7296cd1ff25d34dea61e95fb2954569fdebb6c522c851ef7499c107005528aa2226df13b0de33 SHA512 9e4478ff609a2e1e1a902a55b221af43a52622fdb5668dc33fb0be354b964708b7b6d13b7f1ef11982f45fa7e71f0712a2ab3fd4ea98155a5115e5a7c3d33049 DIST erased-serde-0.3.24.crate 25126 BLAKE2B c87a9edb102160dbbbad5c9245714f046dc720d921aea7e77a756556a6f5d109509a75d15bebee8e16ce2fc59c3ac6be8643a339e45dcb61d3121e291526c467 SHA512 9ffbc1db81f15815a8c94b4c590a0329a416a4b3503d0e0c237b1793874dc1083f433af926207f7a4f003faaaabc66ac6115539b3d82e821ce1df597caa18932 DIST errno-0.2.8.crate 9276 BLAKE2B b73738deb47d1f76ec91ffd15558126d32312647b82677290725669edb01b8f34a503172fad6518ebf0ffb1633ef0afaf0750982b9384a9fb87833d31721c9a8 SHA512 1f513743224cd9a9b7e4caaf33dab075a4a79efa90c9f46c9edfb0c8600daccd3ad2677ba2116621e19fcf8be456954da5d611cbcea4b6f1410f7731828b50d1 +DIST errno-0.3.1.crate 10348 BLAKE2B 72831d0b69f95884a69918249cc0e814eb5eade3205331bec6d2021f8b01a42c4c9b494f2717033d65a4c5230c8490b6ce250d349c1e8e177b20e7e84a860020 SHA512 00d64157d066f1e7601c522c0f4e777eb662ca5cce64682f616de0734857765c343396f7161ac2908c3db0c474995ae157bfe9d8a9880743724d9bd428dfdf54 DIST errno-dragonfly-0.1.2.crate 1810 BLAKE2B 781fc26dce5c33d83b9a1fd9be2b2ce9ac2559aaa858957ba6777e143b1e44cdfee48e1b47e3c91a95075a51921d1a421d0b45eb3d8de827cf4dd0ad744a7d8c SHA512 f853f1e1b8dd0f359a8f9a0399b3384c1103cd090d96e2b2204f91a40d40a9eb99383d4aa6a11e5470c51557afacf452d4be2049600d4235d27f59870fa3b916 DIST exr-1.5.2.crate 238855 BLAKE2B 586a8697adc788a23e4c6e4d7bb8f97e28b58cc59267bd7154b1690beec580413f8d4c623264fa1a75ec572182c5576b15bc038631611f9c4589e425acc5d2f1 SHA512 2d9f651c13a13adcb19e5b7c90b1c40cfe2bd1dde7e842aac3cf5f2f337a6fa642dd3cc36be4466f18686b209de802c6fc480981fc6784d8d17e9eca91903d0b -DIST fastrand-1.8.0.crate 11369 BLAKE2B 93e911ffcec559e30b2fefa44c4d74d1ffa9b8ef1904ace608b8576210bcd41a2b4c7adffc00cd3bb40996110d07316cf8068f4754a879c6cb47e3d41304d406 SHA512 82cbc2b29b97fa3fa2c9372d3e8c390586a7b39f6c7d8c45f9b779bdfdaa2e8a3b44bc7bfcb3367c18120726facc753c9827cf63a8fb4ddc2667509b16333cb1 +DIST fastrand-1.9.0.crate 11910 BLAKE2B 570c66ec1d4ace08b9790299759e3b6f0394aca52c4ec2e02258229c198846cba7c0627807548bac3ef1f86c7e512c4bd105f1e18e35ac0ea6934f76a6838e1f SHA512 321567b5fad8552c0efc4393b1e77d1bce288b0a88c475d432f79e91b3457ee6eb5db9e4d65ac6381b9990c9916f4651b6a76250df44d51ea3e25bd8184bdc52 DIST filetime-0.2.16.crate 14502 BLAKE2B c19a6a72ca4f6a34f9de39d9acbae694326a7a8c1a3aed50ca749e09905470a26c5c61986759d9fa83b9740354796d0dd3d3781c1d4c2cf1d8da5cfb630f045f SHA512 4c6277f43b2de6432769353615406af824295742e5604b40c2673acc2010b349fcbba201e7273756857938256f1693a515f3b9145f34405a56cd23af4dd30222 -DIST flate2-1.0.23.crate 70440 BLAKE2B 82fd8fca09a429c1a9081b450b1f255c7b7cf62852c6b1fcc8f1252b60b79f4f1e1ee187b41510e8752f4b67a817daf68319ac8df63b682f2736b761ed98fb0a SHA512 01f84f0d4d0c06aa0c807e5ccb418a5675d88d568694f74aabec8ee06c74e6b75c9c28fbeba2a99fe74b00bd29e71b9aa2df0d96da85beec76b3a30b4d044fe9 +DIST flate2-1.0.25.crate 70210 BLAKE2B 992525ffeeb4433a222487cdfb0c3927ad77f914e1db94f612d80e81faef4a2c955c755c2b800251e3416d0b22726d5f7d7e432a81c3582c54b7de95ab7a324e SHA512 d81a463360ee2778f609ff297e04548120d1fda1f9e020fb2f429ea51189b8fe6cae57252fcd924d71fb65ad0f93ff7cdc7235913f8b78fa82925939cf884af7 DIST flume-0.10.12.crate 65108 BLAKE2B a75bfce7bc845b7f7c5867ab7a51c33e7e12b5512f63700cb259b77ec1abfcdd8ce34e539de11caa99cdc5776657af0ee42e64c28f986f986eb8f5aab7d5e1dd SHA512 b1312e6bfd814bd7a582b7819b7bab8bc9904ba9d9db9f23cf3bc072d87a8aad252b4a4831bacf25139a2fe22c49f60460a4ce122fa51c0727d9bfe8c9e7307b DIST fnv-1.0.7.crate 11266 BLAKE2B 81da85889c91b6567e0f555e37dd915f1bd919719d1ca10c31a6861d7aec29a49ae9c1e8bc500791bf9d6b8dbb318c096d04872c5872a4b1f7d45fbd8e12842d SHA512 2195a4b34a78e2dd9838caf0ee556bf87cbb4a8ef5505aac663b614eb59dcfc0c40f432463ede41ecca57bfe7711f72673d39a85fe03d426f1324097d5628334 DIST form_urlencoded-1.0.1.crate 8773 BLAKE2B e2d2224dbd85d053343aea29ef1bd540fb8be12fd600289e9c048e3b74bfb009d0770f8296556309ef756086f22feec4713dfed1006e1101075c8897be5471cc SHA512 3ab371c223561a27ffbd35cf648ef4a9145d47bba9d71900a7c54cfc2f089175e9361f6352331a9a7fa018923b15e7a3553c8f9ff9fae80e1626e641a5faff68 @@ -99,45 +106,63 @@ DIST generic-array-0.14.6.crate 15889 BLAKE2B 7beac5446f5da4d077598af43c238eb7e7 DIST getrandom-0.2.8.crate 30553 BLAKE2B 30211bc6a8ceb5ba765cbf068405cfc08842b2521c5850647971f4cb4bc9a5b0a9195ccfbc1461de019eeb7744ee69f934922ff21677259d7b815800516df4dc SHA512 cd7aea29f79a33a0de2a52a0a82f2b57ea8f27908ccfe00a5f42248766df88b225023603ec56d6fc634ef9c1eb67ad0135c90d4c695f6f659db0767e7fda44c5 DIST ghost-0.1.7.crate 14308 BLAKE2B aff914cf94078abdbca61c49c39f379a1c92b87176ca08ef3c5ba5974fe1850c060837c5f13a800f5792d899c0e8a4abfb4b5c4b05b8f056ff060f6dc082bdfc SHA512 0d17cf3f35a60241e5af4da36b1b6a5c2ba5e7a179e53e28e516f14aa6906ce914330bedb28aed7ca72bd9684db3b51d9077a145d934d6cecc530282518245fc DIST gif-0.12.0.crate 634734 BLAKE2B 067baacc4a10ad1d992aadecb578034bc820ff2470eb2fe1b63212584ae1f73fb6febe3652a309a3931fc6fc6823533af2c3d567414925118c5086970a09bdf3 SHA512 9cee5c4f68b02252f6214fccabda29087c89cadd8408df4fb6b9479da7958a9759dfc4b13ad2bc7e1447be9050cea6d3757d891b774a7e6fe8c6fd25bca3b74a -DIST gimli-0.26.2.crate 717340 BLAKE2B 6460346625fad7ed202f387d45900867e785026e08efbf6542bb5c7b6ec2bc8ddfdaf825e872d2c339c3b72f8ddaba546efa94243a602bd8c9470c6e808a8f30 SHA512 10baa5fb5fe13eeab2ed9ac8e02ae7607b42df80b9f39b14027d052ac7f6f11e4dec451bd73c3640ff8ef174e280c1640110720b2bc4220229d27bbb31079029 -DIST git-features-0.23.1.crate 51966 BLAKE2B c26faea14d5e4390f0216093565bc535110a42dde6eaafd606dcb32c40b990e3dd45a14c1a9e14b3c289f221cf63d170334bd1cbc6592d06e3c419821ea6c93c SHA512 27c1d891fab58d35e903bb9d19816cb807b3674a1d87a3ca36c7c4731525b14681636765066f58aa3660b1546ddf69bcc28b253d4adc8081d2b53cf95981bf45 -DIST git-hash-0.9.11.crate 19880 BLAKE2B 6bfc0c360998cc982ce93ed4d0e1a92419086fdb31334d05a6f4fde2fbaa25f99f40977e130fae79d4241496448d5ae57c49f8350c2f18adab45d3deccfea3d8 SHA512 bc6c3d5383727be76836db88d950429492ba28ca607eca8443dde27a699e723fa01b2146302be6cc94ebdcc6bda0c04b5cc95378b58c6b661a71f7173b2031e8 -DIST git2-0.16.1.crate 199956 BLAKE2B bf187855d683b13ec8ec0e103f6536fc2d8321d2a023eebca907a15f0bba760f833cce4a4b0958804675aeae1ee9d2dc0270edf02c66cc2d7231980ba7ab15d1 SHA512 4963798b6d9fc087a4394515b0f6da0a9e01fcbc220dc3d1880a277ea0487083ac05c0bc3a52a537885eb065a9b2209658a199835457b38c94e45395ad8d6252 -DIST gix-0.36.1.crate 213009 BLAKE2B 815ceed7677bc39a45b3bb6aea095421503fa9204bc919ce2da7082402bc42627159035f36dba105081c984291419d5da6bcb4f763b46a9bad4fd9dc177bf243 SHA512 e7bf5e8068f54e43d7645f9bc2f240e57898ea4ab00689d5ede34428fa4efe50b0f599368f2eb51ddd072a22413669d98f960d9391e5c90a67a8732e691e42d4 +DIST gimli-0.27.2.crate 721636 BLAKE2B 61a202545529618b44035450c696b52559d5aa8af091dccc613d62b21733dadde0da467d40595aab71f4532d1fc2f2a6b3744e0aefe89f244e54b9eebf422d99 SHA512 1c0bf53754db2503033c17988e1cfa824af4e01f43c874b02fa61a475467185b13657c7ddf891e06f5984db3ef6b1e37586b184443716dbe45db1aa8bd082ba2 +DIST git2-0.17.1.crate 207302 BLAKE2B 0b3fb15212e4b1269afa50992f1a5967eceab4ab80309c7c30ecc8a139df3559aac7cb7d1952fd986a61d524e23f71484eeb23b6f77a069d95fe77ff3e9667a4 SHA512 bb4146e8a98f4a29eeb3999b2e3cd317bc761fc7c566a91a590fa0a8fca61b072015ff6119e1e1eec2d9ca3309c312040127855228f6a3e260c2809bc8844c64 +DIST gix-0.44.1.crate 239451 BLAKE2B f9eb4d0ce1a9a4095a1f9a9889a083dcefc2c4664a773ace3171b57005829943da9208e8522bd7d7ce58068df6390c914af6fe428290a5b6521f392b6f63d9a9 SHA512 75d137145014196981a68d1881ee38143a7d63ecbf669223ee03994efe3a0df5617a7417edfffea611543b05cf52de8bfd846a22589f51bbde4f1e8225fc15dd DIST gix-actor-0.17.2.crate 4148 BLAKE2B 203957a682b8e00fd97aabdb5e32b02c1fcca90981beaab40dc9c883157dbee3695dd90e71e4a04aba55d06c3356d8f6a038485236867d8dac07ea992677de20 SHA512 04c213b7ffc699ecb33a28ad10369ca2ca1e7bae6a8e6b7c3a12d273b8a1c77f62a6d6d21d79325a2a494d43109b0f9a3526ebf5b1643a2827377b0e2cc127c9 +DIST gix-actor-0.20.0.crate 4127 BLAKE2B 98d227f2ab5eded19e285f79e153a454450af76f78885a873e84ea2a77accb90c235ce1877038173b64dd0926a949f9d1677fb78ab00c38519e83564ebfa9107 SHA512 b73e9719b9b8d182909e62cc836c1a4da70c6f67ddb3482dd669bbfcafe5afcbc0dffd1e155882a1ce6edbb0b47b3595d81f824ee21f3322e3446f813f5b4d99 +DIST gix-attributes-0.12.0.crate 30259 BLAKE2B 549517bd639c19e7b460629f4736ce142717e475c0aa7de5f9d72ec9adc87315ae685791ef6e13842068a6843ede8175dc1e5c0bc272746f728330a629568635 SHA512 90f543638becbb77c5bbaa903d9becc1311eac25008f7f965fd87d9038a2e007cbe852acc0f528ac455f5b61a08e2a7545fc7499891c93890d48a92269fa3865 DIST gix-attributes-0.8.3.crate 22457 BLAKE2B bfbeab97211012133381e99e2e41a35f20fed96c1be744da6465044b1d3f3c0acf4c507227add0e1aab68321145835e38f9ab17779db3ef5f7d24b017c671565 SHA512 1c11421064e26a3b6cf8dab450cc5126dffa2469deb523094d83b14bf5dea6384f8fdae0fe5fdc4374692c88e525eaa2576fc91af0fe86181956db6193e7eaa0 -DIST gix-bitmap-0.2.1.crate 8995 BLAKE2B f36f7bcfea92770522c52fa2e285bf354453395c17b615590141b17753fb7b5c19b647d0d28c7de92251e2f4e9bcb9aae518efd30824c4f05290fab4e146e8c4 SHA512 82300afd5a383dfa34a1e2cbaa9f1573720770a48000cb33c3765802cb30b519295c9a12c073cc472518899465c1539aa7120e5101e0678fd6feca18fe0eaae3 +DIST gix-bitmap-0.2.3.crate 9818 BLAKE2B 2f0116017b7713ac6d27b864c43fa05dedcaae62357d88492d018f78ff11ef783dc9e3cf22bd8267bd8dc1f13fc8b0a8405d491e0cc6c2bc24a5e0e09e3695d9 SHA512 2b17c0876a20d23d3658b360cfd745b1a1b01046754dada21bb5ab8e84ca98f0421f456f40c547f1f4d13e10034587d51ed7895e0dfd798f95e58d289132e3e7 DIST gix-chunk-0.4.1.crate 12248 BLAKE2B 49a55d3ab4391b343ac3b42af93be8117de5946a0dbd5eaaff45d24ee456d8d6336f84e9f72fbaebdc03861a764fadd9e0c2ae856d6eebde54637d07ea298b44 SHA512 6fd5ed914389573f59f8fdff47cb47050309de385996456004ad8a9e4ae67426288272715df712a3e6124b81d456354684cdea1f892624ed3961abf3f73683f6 DIST gix-command-0.2.4.crate 9212 BLAKE2B 889247edc864c9ffc3ce4eaa189654f9a599b9adc1d83cdefabebab4295951da1ce48ccbb386e400ad2ab850f484fd5acc4e93f2705bab7cd86a9ff9aedef4e5 SHA512 7a777ab4d557fee97e067cb602b80d55f824347b2c7c18c46abadb4f644dc891c926d6060c0a93823fb21caebba8830ae65ef0b4569d4c5856b7303dc8343852 -DIST gix-config-0.16.2.crate 133225 BLAKE2B 8d8c54482276da823fdce17dec0e786a878027c0345f4dcbaef185559a2c04a584fb0ebc505d2999662f92313bb1a779309605419be0811b19a071b9a873cf4f SHA512 8b852e1f438d74fa3b81f2114df4873ce5d667c56ac08cc25da7385de1a8ff69489db5a68d45bf85ae48d7a7da9a88bd5023f0c55fb70e11f7fb4a3d905de198 -DIST gix-config-value-0.10.1.crate 17354 BLAKE2B 737c91c2c37dfc0eae60e6a747ce86836224832f431c69746cf992c51617688a4f0c2972e692fa9587eb081b2e1157d5ee355430d53f2a592a30dabfeacf5f0d SHA512 ee79772f745681ed5ac6c3d6efc5f302f6952d0823968910f9b23c7ebd93bc3c96cba171cc5f84f33a358e3a994927f531aeb51ef23f383104309aeacc0f25eb -DIST gix-credentials-0.9.2.crate 36035 BLAKE2B 0156afd2e675562c18014df4aaccd32e92dd35163947d195e612fa5906dca734247a5ad2535b368a35f84b192c351e7c8ba0918e17a67b8bd42e67eedd402a79 SHA512 475a2bcef1805f56e210d26f5292ea49438561646a69476c44b5c95ecc1a27b000857399d0393014963b618b7ff17d0ea5fe1c94d675e807378b293eb7ce1833 +DIST gix-config-0.22.0.crate 136539 BLAKE2B 884d0b160e9f18283a3f8f19d50288428ffebe6e7e2680044698cdadd3d446b2ca4e61f66de02de825602cc491cf1f45c17675c902a64b0920fe741ced6e1f81 SHA512 8b6e72a3f5a476987cf82b283ab3e96e231d142bed8756d1153fd78514ac5d00798c285321ada864d7bbe2f3b4e2ea259402b44bde27029ccc2dccf158f315ce +DIST gix-config-value-0.12.0.crate 18537 BLAKE2B 21101f38fe681edb7ef958977ccdabf9dfc6b13dbeb34275ac450a16f1c80c1ce1f18e212839c1b54af759b5b579d91df1a0fe2db823842c016e660e7d2483db SHA512 bc7633ecf3af9ea2b4d454067ada412cfb0c6a12c5ba77c7579092e3aa9885632126098b97e1cb57c6a0b91549a84630b893c070df0b5050054825e57e713e16 +DIST gix-credentials-0.14.0.crate 38689 BLAKE2B 7d071c9ec8e38b094bf98ddd8123bc6608c07ff5b9155aa264963e25e426d6aa9e755a9658ff992a15c9590fd3acd449371450876e8605e67294c51e4c9b9404 SHA512 db16acb01d41163417e2287c3bef58996b0ad8caaf20cc603cec5ee4e129cc2e17f011edd15da73751ebf1bad9f96416e760634c710dc2995b2cabbef6eba245 DIST gix-date-0.4.3.crate 19793 BLAKE2B c71c9467cc7cd48a2f867f6df014c46258667eaa9da249ddcae4f70287259a7adb3ce0f4f5a19abdc903e69a73287dfcf1cd71c666ad41d398bd00470d2145be SHA512 e2e047d081e07e2cf1b77dc60ad5336023673911a47f73cd42dcb550e492019a4d299953728d5ebc76d68f1d662b9a9e97183040985a268d6bf9014f95655e51 -DIST gix-diff-0.26.1.crate 6231 BLAKE2B ac6d03cea239bed29c3d95f5eac2499325dd30754c653cdfc51c9fda3f6af7db889a884715d527bbcd766156c654b821c665d53bc74eb06d3f8e84a437db4e9b SHA512 d7e24cf92035648702160a0817f623ae9a83d515f1deccd7307db5a35b86ecc6f8939572f499920c024b833aa440081ea6cc23f1321e357c0365fd1ab0c5cf96 +DIST gix-date-0.5.0.crate 19994 BLAKE2B 451c10b799d65a3ee3ff352f14a68cd99d82c25784a6bb5bbe6a66a67bd276464f49c2f1d2bd82705a120f0de59bf7d4fd8a80e2af7429ba713f4336363fac4d SHA512 d6ce8b185f9d6edb3392d91a481eeb04a39d61e0bc3ae3ee3d59be9c77f502d444cad089e743af4e7638b815e36669a9372d50fb160b68b61373028958f32288 +DIST gix-diff-0.29.0.crate 7019 BLAKE2B fd50b7f4aaadbfc2e2f80a8145b47299a88bfe3d7b76d27675d3f57814164f873f6ede6f2b1cc9301396566160fb4c371842b757efc2945fef338a385efec193 SHA512 2d02e0b00a92523a8122b29327ed57c327a617f01527286bde532ddcafd48cb29c9366b67aad5ad232c8a544d5eff8b068272efa58c3ddcc85d661de06e4fa1a DIST gix-discover-0.13.1.crate 29648 BLAKE2B 13ee4eefbd7077a613799f057a8d3512a627dbca707c26668fc1816c35f2ea2f98efc9066b0d61a99c0e238275a098fdace86b101d701cd0e5d808c1b7693cb7 SHA512 ed9cec17c3b1056afaadf9a2f51b14739a2e99bf733b87463aeb42b0425f9a1fb830b8016d22b3f206b70af3164add1696d6298ebe6347514178d693fc32dabc +DIST gix-discover-0.18.0.crate 32806 BLAKE2B 381c2509e5afbf5258533e76f30e85e6847c8d22bfa0c560af7b33ced7df8c6847409bbe4b503aff5d1fa71af2adbf3d686dbe208237be6e7e4df845173069e5 SHA512 bb230a8844456d873c5b47162d4cd257d2da3c7a98d6e623a72b2a53f0b259cfddab39a0d6f4b118ae73d0d9eacb4e17a97151f65c185d4477e36ecbe64c96bc DIST gix-features-0.26.5.crate 61182 BLAKE2B cb5d016d14c257e6460666a90f4387c1fab013356fd47dc90a8f6c12251a66fb63a0f02bd845467646e91460d276446f3c84d1903104faaca51a1432ad44de0f SHA512 70ab5b861034951f3f0a10e48202718f20ebb4b6519ea144367f3023aa8e49ab96d3f15099d3e9e7152ff1948f64c8d75005a873a7ad647d6b92aba504e48c98 +DIST gix-features-0.29.0.crate 62359 BLAKE2B 947daa561181f81830e15705d385a9f91f59ac9e88a9f755bb4957250a8268d9bad0cc8e31485675735398b6509b79bcb814b43b52a2614d0079684450cab5e0 SHA512 50a4ec1c62229876a77d6f73b0fb6fe34dc1a72c64caf28a8738ca0dea0161de1efbf8273e0fa83a445e366430dd7519d57a126f3e27220382146febb753e19d +DIST gix-fs-0.1.1.crate 13364 BLAKE2B 203963008fc2b76702757d544e1cff41cf4883bb83ab8d400d4dcacce847dac6cf785cfc3e14704aada33056b1588ebe5765c46acefa3161312d12e140b2f29c SHA512 b84e7541ea5f55a4cd6f71a789ef655ff59875e169ca7b13865af1a972433d2d302330eb18e1871497f2f5bc2627981afa820b7aeebee8f418a175cb33c745f9 DIST gix-glob-0.5.5.crate 39749 BLAKE2B b2f1d5385a7b7f963c799447ebdf7624e5d52e3b3a1cc2800ef60165ce2774ef63231a7dfb9fead3118a052d21c3977b579c1b6df094460bcf39b09b3ecfbb29 SHA512 15ac1ff886a6a364c181776bf5630635e0cfd519a5ec1ee58e9bc1a097dfd14030511db490acb534e8428b8016c946e9efc3324cec891ab9f2698a9096a1df09 +DIST gix-glob-0.7.0.crate 43527 BLAKE2B c0e636f1ef5e154c8e38162069200effc8accb04baef26c5881bbad70e125176f08555bd514e1a2c399a57f37b1923279cd7d244a9315e93cc54d10fabf0dbaa SHA512 093f75bad08a4bdd30708ec27cabe71d22dc40d21fe8b922e563af2775d8034a4a0041baa99a886c8c743d7415da1745672b00acc0609fdb054c885856b4ab73 DIST gix-hash-0.10.3.crate 26019 BLAKE2B 22c9c962e107735c8d53a07d192dc3fbff6942b141e6dc3af9fcc2a5b69fa1820492f6b334bffbb6e27a94683420a34b14332a8c2f896418f8660a4207983596 SHA512 d8bc8326c2c898c93ca59ea33e0b6de915247fe161dea0e55d0ea82f5714afddcde8680f3f09feaf8607439ad40e955986bdb70660b4daffd3d218acf419fa0b +DIST gix-hash-0.11.1.crate 27218 BLAKE2B 19b0e478ddb9bc0c955a839d23ce3a944f1df28f7b1cff88ca1f7cc36fa69cebb9fee083b46aebe60119502e6963a92376f4198ba4221c93a8ab749530e75ccd SHA512 bafb9d6d6f0fe165585a5e4327a4beaefb14ca144b7a222fb9f003fc2a8f7e6d89e48331afc1c70dd707eed6d16d9d122f6af46fc844c189b7cc7eced4817b94 DIST gix-hashtable-0.1.1.crate 1540 BLAKE2B 5be4cae4c0735c66fcf1be769591df10e11677a560a6b950e8128495adf1443e7100dcd442ce783c59fc72f4a94930f039682b554c2b49c7802793d0337bcddd SHA512 1d3f428311e5a88af359925cdbeaab01a564f49e8a8e5acd787168f6c4717daf34646c9f7fe33949c588862bcdb78d056e71489c8336b4d5068f762267e772ed +DIST gix-hashtable-0.2.0.crate 2242 BLAKE2B 9eb77d65b5dec7e4ebfd91c300f9fcb789bdf0af6d851a82099b19d40a5aa23233c432cfc3ca2e9a29a4792027da2010c56e28568765de4c541b8251469b5ead SHA512 df18224d430cbfa6a273a89264942189291153eb44fa90322948e1d3f37a79605b3914160f854d6add0398effeacf020e046806529cfbd5e3fe500331fc746f5 +DIST gix-ignore-0.2.0.crate 6087 BLAKE2B 83d0b11710f68f41782657ffdbabecd6da86b0e8bebf695670dc08a8e791e5078531c34767a779c0055cef27ce6247da2bd41c495b3cd44690222054908c2677 SHA512 6790ff9c5823a1d1c70b49630b5916f8d2637040c99153b07c40761631d9491167fb762565b3c51c945bb7540dbbb41c23af095aa91d990a5412358eccd50608 DIST gix-index-0.12.4.crate 58559 BLAKE2B e4476f9c3676d93b480df6e202ece120a24f855c7bbdd6ab6515aff02b23b3b9d715c08312890fb6bce080e773ea0e47294f7146bc8d89a0f6e70f90e553e325 SHA512 c1016ca1cf0957d0b1b5fe8d3024f846c4721458f30ac6f1557633295aa0215055a38b40d88b8cd60c65da22a8b906e927f083ad682d4fd6d4ad5b1d1d5a3f76 +DIST gix-index-0.16.0.crate 64998 BLAKE2B a4e80aebcf9f86fab151aa1409ffb3ad0ca6e523e010635c09293d7a9c414319d4110eeecc6ce6981d77e98aa3c04819e213ad912d2674ca8028096f14c5e12e SHA512 a9ca239e9ce25dfd12601cc816e4e1007639c26187a743e4ffabac5017ac15df1bb71d159afee61beb757cec7ceac7363a394169ac1631a3cc024d13e451e130 DIST gix-lock-3.0.2.crate 20168 BLAKE2B b5ef668d0220e22517527fce64d9a4c1e5590a21a3c0c1f086704727ad287aeeec4b230cd2a2efcba657f322c8b49fb5843aa88253f3932cd79b558bddb8f492 SHA512 214b5a5eaa22caf5012f49bda022105f07dd45e082fc60e1d5e7c41472eb81f08a0cdf52da3802dc87e3ffcd7b72ba40e746026b9c05773f7eafc128296a62c9 -DIST gix-mailmap-0.9.3.crate 18712 BLAKE2B 4d8af4e7acd7f049120d7b60078f1c49085eecab46facb22a850fd3eb501e6f993533ae46db2b625beabb7fda89fcd4a222fb7e7ba5970f38590907401606df0 SHA512 bc5a74cf66892557894d50c0789f08d9398df8e9f59936093045e947be72309a27819e8b1230079e0df0adfa087173942fc9d7d6558b9ae543ec9af43d00c9a3 +DIST gix-lock-5.0.1.crate 20010 BLAKE2B a5963ee16d3144df57e6bd994896bc2fa1a27f7b53fc186906f60c6e27ed3afaddf2b8919da1967ad0fb2109733c9741034b3bb3cbe30c2218327dc66c853a52 SHA512 6c0381fd1a6e6b4217be4209094d01a110f82cf93f618169149ab814cb82db05a8be8568dad922e43adb4da341f0c772b91b291ba74a6845a691907e77462030 +DIST gix-mailmap-0.12.0.crate 20329 BLAKE2B 3c05bed4ebaaba724f9e8eb0e2816918a399696558e05ee332ac09567223ec20cccd0f1ad8b1b9f0e15b5d39bb66c95d5563f75abe0cb915f539be4088082604 SHA512 681c7c4a786e792b14d031bc8b9e8ca2b04f82aabe003f50b17ecd3e742f6a1bde5db1f85fbbef213ce54edeafacd57895c27e19a150ac474d08aae47132caa5 DIST gix-object-0.26.2.crate 23521 BLAKE2B 11c1ff60bc0b0336fc4fa2c234eb5725ab6b08b8cabf0783bb4cbcdf3a085c3c2f7a4e334e9cebda21d093a8c14b326f1218bcbf8d122efc60ef6761974d4426 SHA512 9c73a77c7ee64e27391f1f08c66654ab239c6e2b97e13989b045789bc8a3188d228162d559bcfa9d4bb8347623f630d37a9f4656a77b793bcd76336385aec195 -DIST gix-odb-0.40.2.crate 134667 BLAKE2B b69081855e0026a1dacbb59e98b7cd63b3754280bfbdd4cdf685c9fd8088121072fd795714d8071b1ff007633004a44dc516551e1fecdb568b952d924edaf143 SHA512 f013517a530824b6645e122ee3ad11fdcf0ca2c3ce601dd2eda7503bea2f7a1786bae4f7872b085902c143d0508850f146593853bd9cc0438de056aa0f00a459 -DIST gix-pack-0.30.3.crate 133981 BLAKE2B 0c2cdaed310d0556fdb1d2a761fa08bb888e4654138cb415114c889b8e70a0296fd7b62763d36a50e8a2e05fa03ca18de89917a523936e0cc9aadb55d1ee3c58 SHA512 decf60906aa7a1473a2340dd6883c5054d3b1dc62efb4435c3995caa06c8e445dc1b4913fa11715748073f353a213ddd0b1052e54edd3377a8571e454e73bb5e -DIST gix-path-0.7.2.crate 21554 BLAKE2B 6f5e1a5e027e446a67c78778a6d2a68cd214808189cb7cd6460eec61ca3e8c1cf59ac96e73c0b93082a41bef96d1a5193a418e89e24535262b60c13c44bfcc9f SHA512 d98f4ce0383dbf404192b8088789f0b016a515f4bdc0f1c61186844e0eb588e80ae5f6caf8bd9d363bdbaeb6939e8cda1d2af6d07e6d9f8b1c58aa173a0b5892 -DIST gix-prompt-0.3.2.crate 15366 BLAKE2B cdc0eb5643b3d047871fc432b7e1fde11da0174976a1ac6c34f19701b0b12d4d2b8efe31bbf3c2fec1db85a535f51c0f2e969487fa4c3c31230ceca9cbd2a5a2 SHA512 a8fc69f136451eae2f3ba18fd4259efb70f8c0dbf80ec5e6bccff822caee87f02f48bb2e6d6abd9adee454651cca4d8b02e91498e6dd4181293c93c2f4bc7a50 -DIST gix-quote-0.4.2.crate 9354 BLAKE2B 08054346e591a9f2301b1b0b1a81eee7c35d0bbf74fea30b8ced0b2d3bb788c64fd0d1f4759fcf913a2c607aef8ab4aa383b2f4c61e781ce8d272cfa00662b20 SHA512 03e9d3afac942adad03b7c687a2972609db90b5b261380b467ab9e03c67000dca03c2921578329c3a7d33c7f5fcf99df6e5259e08e0051474c647f968fac095a +DIST gix-object-0.29.1.crate 23648 BLAKE2B 0465150cc3a07fdbe2f8933cd17b7265625dfacc06e3c48412b520b7cb9b5e70903814d4169e8d8dc7200bf4a8a9335b87778567129d14ce17a0701327518bdd SHA512 9ab74a680493a0902cb6d73df70cfbc3fd039df9f3995ee6439b2a57ab3ca18bfef2c5c84e4694ef0372142cb0db0390b7cd9fdbf7b80e710aaeb10da5f050d2 +DIST gix-odb-0.45.0.crate 137565 BLAKE2B 7ee4f96de1322f8387af2f4e467e48bc298b6cd1e5b5ca6b0b59f3f8a9f9e28dff2d6cd3fb4644107db1ea65819dfe0c69797398879c5c7c3faae55c52ef7472 SHA512 5a05fa826c53c74fdb09048588ca0390dc8bcf2306be23654c427a7a306fe2e4b50058578b8c4c58592a55e13a4db8f1d8a38371dda0b91199f8b572b61b71c2 +DIST gix-pack-0.35.0.crate 136956 BLAKE2B 1c137b0cd6d87b9d29253c64b4a7a6f8a433e33f7b88ecd100a7970c93367d8e5888f51b348ad21d3d3d7e11eb677569fe141be742cb581446d97e5407c7d551 SHA512 b07ea84bf8361c972bd8f6ab94bdb54238b4d39fd634b78152af5c8c50cd513aedbfb0f8f88393655080d4e6920e24be064029b000c08ae233b67fd1149653e4 +DIST gix-path-0.7.4.crate 25441 BLAKE2B 299bc92c984150f4e609f54da3f1280ebdf536082725e115bfd57da8b34ff819e174621277c6dc157988baacc004325377739f4b0fc598f33c7cd02983303612 SHA512 d327e633091c8b4e973a76f49eeb7307fe67b21cc13824ca93d44f07682c5d529ee1d8773f59ba63c99b98b608078d26856c2aadb8db2264840c79dcabdeb721 +DIST gix-path-0.8.0.crate 25881 BLAKE2B 93ca6de7f392e6ae8682f9a7d3d79c062590ab4a6682f313e6368e082c7f7e131b379ae7a4ef97d1347a5a69acbdcbaa55092c99b90f03933c980b8d61f71659 SHA512 27665f2e37cb3bc578b1a5c18344cc11be55d65ae77f74d2b2ab391a6e8404986d7530bd8eadf760ccaa636701fdfbc03d407e3095d82eda3722d35311066532 +DIST gix-prompt-0.5.0.crate 16678 BLAKE2B f0d6b87c20fb4b1d8c909640ece77d254365faff510f1c9176b8fca4a19efa93903d6a1bfbd1935b7946800cfbcbba47c93d78eaa46b471e14bd495bf1015808 SHA512 47f406982eae271f6e3942805c7994010f2c9e40f713aa8a1fc90fbe396b38a352d9b4a707202cb59b8c3e080e63ceeeedd8e5bd96281c64df6c34a5fe0b352a +DIST gix-quote-0.4.3.crate 9769 BLAKE2B 28ff4050178eb0711387a5a4ae8ce6e33b0c7063427411134752adcaee578aba4ad6cbaead8ebaa5047e2255e76f8994a01e9e8d5de39934cfc7f525c7e1a619 SHA512 4b1296be473a022926f67ff2412308954bf19f0233a4fea1ee44b605a76cdfb06f036591709e8b9dc6307d106267031ce034107a490fd63843227f681cd87d4c DIST gix-ref-0.24.1.crate 50232 BLAKE2B 2426a5784728faec7a9485e4c41438b1acf2898eec4173795fb9b90a361e54228a81ecbb83361b1e024e27af5f0888d4bf8b2df4de60d9fd78a5deb1ff8d3f0c SHA512 582a6a7cbcceabd6b6aabae8c0cbba3418db1d85b2ffa871c513a09d1885e44e35ebd6a4fd143524f2f60b8d239544c7d49da4703f70f4266f902d0cb53e523b -DIST gix-refspec-0.7.3.crate 27740 BLAKE2B f7c7a507c3775394d0a1ec6c318ee0bde062c157edbfb9d0d608a45d74d2ed44b6d3d286f50058387aa682d66f5396018e614f9f98dd6998c3818eae1e1357e4 SHA512 3d39f8d5133f05576b8b9936cfa33d077f6ab2be2c5746281654f3f39d23c55683cbc03ae1d480cd4e2f5657cced6f237e85ff141aa2a7713e8fe62cd9b60187 -DIST gix-revision-0.10.4.crate 35767 BLAKE2B a6392b0a41f6ebbed80ee62b29f851f2ec5272a1d98a76cc24c802eabbdf3d9cda1670034e16f77822cd7abf2b1d286e88b279f461104cab28565fd0cf8dd5fa SHA512 dfaca8d4d5641240a6b73e94f24480263460075bb38a623cffa8f47eb9af7e5d8e8cc608ffac977e15d9ef0636dc1cfc887c100772190f4dafb156e3de50372f +DIST gix-ref-0.29.0.crate 50017 BLAKE2B 6bb8850c34ab368824d6d369d2ea4c235ee4925ae81d54ee7032ac668f87ad4e869f6ece9f847a4fefd9bff84bb4a0557381507e8cb18131a8210f0d0f557bb9 SHA512 3b065ebe207e17e2c74300e66c51ff5bf687bab3461c33947d56e38ca530ddd463507a4864b34a1d9003f274bdaefb800e5ca14f6ab7872b0dd7d74d442a629c +DIST gix-refspec-0.10.1.crate 28910 BLAKE2B 601264734f48cff8dd0408c672d4357e850128d55331441851ce3e325a5724e00c1fce6343e3700a2378ea1f91cbe38cea5d6debd7eda621f23ce89ff16b3300 SHA512 3c4165f8cacd9d5763791b8d08e7832bfaffc967a36fb8303ea5a3c8a2558477e498b6fb900b9692ac8c9f92ddeebb2e9332a3daa33ab2ee7c903e65aeb398b1 +DIST gix-revision-0.13.0.crate 37993 BLAKE2B cf71150e4a89d5ff4f63294f2d696018c2dfa674f709d91332aff8c7663a6839fbaf6d798204da122db191fd763bde4398e54b466760c0f2ce0776a9cde55458 SHA512 b4fe7ce72d42270ff04c9312ec4e071e17ed12b61f9a398edcefd46c1d65d8ccd80a9f142dfdff79d73c3fac66913aeeebfa021399b21590de800c5b7aa649f5 DIST gix-sec-0.6.2.crate 17385 BLAKE2B 756b8cbf9061a384f863f14f3a8c8fdf8888a9f9886ff70d53ce9fe081d22439a2cee718a721585c3ac4ea67e1ab258b7bb242a11e04fbb6a7b41ea5a1b0cffe SHA512 749af2dc7ac0b350cb5cc68d6f44d1d9fdeb345b336f60a1800db4ed4adaec4140ee67769c9a3a300c05a6eb96365f65d97be9e6af29de577538cbb84504e93d +DIST gix-sec-0.8.0.crate 18726 BLAKE2B 901f0cce163f46a925329aee76ae282de784dd9d234c078bce2a31ac39d9a70b628df30c1fb8de381dc7d48514f394bc858b05300007f824406a30c57510ebc2 SHA512 f91715b6d39d852da4ef01a4e9b5e9952246e687ff7e596336fa8496230ecec03f522918f7f493a98bb7ee052838ae4e5b7ea2332e677b9178861568a13c2579 DIST gix-tempfile-3.0.2.crate 32760 BLAKE2B e101905f99129d7994926521d434ba47a276c661cb9195548a8fdd81bf2e2fc29602d5bb77fc3239de6f5650c1b7464e96402efdbf86a6736095aca9b7f178bf SHA512 53c35a375729f01bab34755b681f308c3add6f1256a790ebc6587e6cca8408fdc4b3e7f353c8f7412334874992fa6b3cfce2afc85c63b4f54237c93f7f39d84a +DIST gix-tempfile-5.0.3.crate 34637 BLAKE2B 79d0f09e319232422c55145be650b232b0db85469f655cb56511d0bc93a13fe8fa7178ac613969ae72e2345398951232d206b6fd505d853c56b8b037e17eb9f8 SHA512 5ad1ceaab317e85aab6114b5df6b499fdd93b3152609d30a12cfa6c329d636cfba2a79822ecb54d72496e766d530c1f4ad55e84373bf83656671118940a05191 DIST gix-testtools-0.11.0.crate 35198 BLAKE2B 734f07224fb54972efdf323fda0716a24b87903aba4262816b651415967fab253f0e57ea73bd5b8cf984b578e583673d99c042f89284be06eab058ffaa32072b SHA512 995b06f577d68a7bc7bfac6b4c27c6532227662718d162b55320e84f5bebb30978ef5f77b45dc5a0df65fb4861eef827d619663494c7985a2b4433445514f8ac DIST gix-traverse-0.22.1.crate 6853 BLAKE2B 5c8e03474a5df4d76c01337f50c4ca9625dc756459cfb5e95a72d477f1c6c0688a7e323f92b69d4e8de310611d84bf6e2bd48863e128340c8504f45e0ee6b476 SHA512 a28667a3764225fd64061d19b1548e7093362d26b621d10adcfd03e0217a80e843f2079ad0ca7e84814af20a26473e32f350a9607ef755332fe56df9668b708c -DIST gix-url-0.13.3.crate 27986 BLAKE2B 0f43565c3d6d0be7335cafd5fe65a81352ffd13c2cea9af29ab4887bd6e91452e075558876b4bcea80128490584c773df9d8130b5243fcb43ec231f67f4fc66e SHA512 e4b5c1c8d163dcd2251ffc6891fb1f8fcafbcb6882e9fcbaf21c2d54121b21dcc9d9561a62a76b3ea2db190e82de8f962187ff92c2d849395928a44f3dd8c822 -DIST gix-validate-0.7.3.crate 2529 BLAKE2B f764591ece464cef4b3b71c0f5204478266cc122a59ae5c26d50607e76a966aab42cbd5b49d36d73bf15bc4b6faf6fa4f84a12c5214a9bd3e4077077a1702fe6 SHA512 9e62a03d9f1c98fef391343536f31696445a29d7f504ef286c102ba4bdaca321ceed99e0072e788334f8c57fa90103f184bc251346d9bbcb59b670d954e37010 +DIST gix-traverse-0.25.0.crate 7209 BLAKE2B 7dfccdc55f99818fabbc0b15331db2e55b5d565574b41e89ff23db3867a3077dc2f0488739a15ae8f8671aa868576d0bb720eec44343ed52ea87ad3a23faeb5d SHA512 5c7cc444bcdf103184285d3ff9ce8816e1613ff00a17d57653f49083251da7b5fdecb4230193c74c09d1320a90e8ce00c46022fc5fd7930406c4d621a177c788 +DIST gix-url-0.18.0.crate 30077 BLAKE2B 65ec8f06e15d26f7787af8b338490e47f5b4f5e9f88fd0a071bd44d2a1cfcf4a6c03064a2fec569482a15e24e66edf51024851295f18d89e9e459e850a942ff7 SHA512 0e058c19f79671f3564f60643b69135f0b2477822336f241b0a9ba71b7c663991ee63f08ac01ad2c2055b96a0a95ae970e9a03da44105e2963455aab8538ac1b +DIST gix-utils-0.1.1.crate 3877 BLAKE2B decafe90beb0bf63ccf9e027e1816730b34931c3a2981f92ff23e2453590545d9e88840e18c08829c1dc2f9b3d533e6e465eedef68d6bdf61379c64b2106a916 SHA512 b578bbbc435478e565dbdcc6bc091eb70f5441dcc9e84133d7e02502ba8a7ca1dedc0bd615455427f782addfa9f9494a7d6b702b67821a87d0c321a1043e4425 +DIST gix-validate-0.7.4.crate 2529 BLAKE2B e16506a3d21a9499b3e5a851815b9367f5d6050a3a697587cfeb0e05659bd4ad42774f62227654d18b585a4ab85aa4698cd4da0482bace7a65f7df6e3f2ebe83 SHA512 f877571639b2e86853d408b3ba6abbe83d33fac81a3b6c7eb0b15b13f382d512996e5ade85abbddd72881bf3ab506b9b3f3e8c3af6a8e158464122c415bf0b3f DIST gix-worktree-0.12.3.crate 36477 BLAKE2B 220356cfe2893a66a90e5f21e195045939a2957ec04e1e22d8ac73c12a522d640850a339f835006ee732d2d00facfd42f7338169b2098454411740a88c20176b SHA512 4b7d57e54e6447b826fe990edbd8657017289ab94bb55f3b7bc3bd74c5a756fab64d8fd8a939bf48ea9996f7cd5891dbf79a75123b62295adff70a03dc9f9187 +DIST gix-worktree-0.17.0.crate 47448 BLAKE2B 49f3cdc8ec2ea4bffc51d58d5ec96b9c2b4158a4918b18326c86afafa7cee006f01c1cda87720e5643254345ca8288d92667b632973c7487caa50f7f9d529529 SHA512 06a27fe32ea88768e2d180a95fff4cf3e352741050dd56802df2d242b6ef9ba91facd4acfcbf5c1568c03647af258dc7199f0e467e0cc61c35c0ce0035943174 DIST globset-0.4.8.crate 22886 BLAKE2B 726fceb279ef00589ebd6f77bbbe0642a22a9852a12ac9d14139af679ef2af0a68bb90f51f9cbb08d44190eafc35145df72ea3ff2f346d23cf22e428c887bb42 SHA512 1a1fb9731d310ced63742b2c6f7ef7f414c89780751d9881859a6e6fbc512e91bc23c91e3743bb36114dcef6dc1962fd376d67bc536752ba6a8a2fda7aa80bec DIST globwalk-0.8.1.crate 13705 BLAKE2B 4d0fcc805cfddb47af24f5d8f2c4f9bcbba48a8a523e565f7ce7bea767b6d108ae5e3f5cccf6647b497b3690f862e1652812b9d83ffd02c634119d5e03d1a7e6 SHA512 3235fdd9c24ffc54994a0b37862c44e16a4c9ef6a7e1a008c5d83dc62a9683ade97e451e4da7f6db710be2532339a55038fa3bb85dbe6685d1c807cf42f6d955 DIST grep-matcher-0.1.5.crate 15677 BLAKE2B e9f9891ee5e9f6eaf5e8194bacc5eb80ab933282bb399c4965a7222816e71b4cd2d311646526735f2a5898625e764d5ddef634929702daa81818158398de1314 SHA512 7f7bd34a5ff1576131b97e3126fdeb8ca0836f566a18524cf225d36fad3a74e74e6f20e252361e67df133619a628b10cd8170a7ba80747a56b47a86972c45133 @@ -148,10 +173,10 @@ DIST hashbrown-0.12.3.crate 102968 BLAKE2B 492072f27eaec45abd2c5d7405c614c0c6a82 DIST hashbrown-0.13.1.crate 105004 BLAKE2B 49ff4d8ae274534dbd375cf8192b1d1ec5cdf40dae56ea8ab09aa6548b9369f4b97834b6219bafa071c972e18069d37ff693f91594390fa799304f71af757ebe SHA512 12cc6276a89baad27c1de597aeabfef96798304a34101adaa22e67659656a9e5776bfac5ae68e5cb50baa2e547d60351750d320a195147b1ae8dab4f2b335ae8 DIST heck-0.4.0.crate 11161 BLAKE2B 13b8bc39cf3ab90e71433e3c7b3e5f1c19404bec58dc4298dca05d94d5c14c2fc97350de737cb78aa45196b1241aa8f1ccf3a11ca309da5fe0f6a657673412b3 SHA512 33bdbf4ff9ecc4f4d74cf06590e056f4d96bf0d990d5381b9da5b65682b2495ed74e27b45419c2afa986c1f6200909d5175b137ae73ced5cc8ac869e4e1bce8f DIST hermit-abi-0.1.19.crate 9979 BLAKE2B 801e8052b85341cca388ada9db4b06bb1bd7b64474185b2ad06c0256b9e597639bd3dd4ba0053ea010f922e53969a4ab47b90d451fd9b94c8f2324055d151ea1 SHA512 1c877fcd562b15d2de9c151fd6c5f3ea4bf48abcb799e6139a180ffad5d64b632f0000d5707bbd92ff23a0e5f349157b9e0f5be8b50f03680b0fa47315dbb78a -DIST hermit-abi-0.2.6.crate 13027 BLAKE2B 4df5306639511a5f69594e903f8ce62482cbbfbfe272a91a12f407483dbac4e87c2d7e5668cc06ca5c0fc149ca93a3152fe6ad4bb3b96cacf56a22cb635e5b7f SHA512 bad8442bb822a9c99f6536db16523c80f5139af6a139bcc359c03725c59ff935816e2ecc5c491dc362ac75ab2dff41ab1e9dd29431f5e9a109b60eb9b7a8dc28 +DIST hermit-abi-0.3.1.crate 13793 BLAKE2B ece7865a09f566a95bfba5f1fba380bf12836c3761fc6d5a3d5543d3e50ca0eac81bb567d50b5643849cf1a752aa651a0db4c053c60faa8f1c74fe2f12819d71 SHA512 a55fe9230e4e8fef63284befff74108f206e76067257439d334d33068875368902dc690926a1feea15611f14123073867d7e9cd21397bc484cef849d6e1dfbf9 DIST hex-0.4.3.crate 13299 BLAKE2B deab49bf3d97f6fd7c0a0855b50232422443b226362bc7a4a19e57c2e662fff2cb046d4c5bd7618ddd523045f3d8c78754508f862f9a8ca29ca9247da6d6ec79 SHA512 fd8ff33b68eea2d6f2c6b02a6d82a2807cbcdc209ca5a76e3e3e5d006917ee151f236b6d18e2646cc9a9674bcdda1d6ce6ee363a89cadd99bef00d0eea9989e6 -DIST home-0.5.3.crate 7890 BLAKE2B ed1cfadae63d1fb0a66f38aa5440dd09a98343e3afadcf1495bf69f3ce813774c9a49776c6b3641001b6007c01e24ffa6d2600c1bab05c4ea3353c74ddae2fd6 SHA512 cb3b7b24db30a8b29f36f90a0d345b2e187f9e76f22203e142a77c8308dcc62e97b5714fb0ed890210b31375cf30d3362b8d740fe189079a6d3a095be50dcb0b -DIST human-panic-1.1.0.crate 11177 BLAKE2B 02d3feeba455cc7c35317297294f549a62d572388264dd1805834138b74335dc62e58211f836c94e078e2583c1a905d95a8f1361763a192e73200ae19a0d8801 SHA512 eddf1f6bc5b65897c8eda857a9cc459dcb8e31c293814d2a2293ecbccef1af4b95346deee55b47285fad7166e14223871e3327067d5756ab303758e1515f456c +DIST home-0.5.5.crate 8557 BLAKE2B b14225f6e967ccd37fa734f50991a50065047f3814c4e526f3b4605ceb9206d4d12e189b4033ab85792ffea34a30f2b0267b10b9b0ed88df52c37f6ae1ecea4d SHA512 4ba97149d8f70e9b6eefc930292c7e62fab6ad03d5e4e6bf93d40209d3a65e40932c6f3d14ca579ed19ba33195977c60fc52b3d3788629fc760f41ce90fa1e58 +DIST human-panic-1.1.4.crate 11079 BLAKE2B 24d47f88f1283194ad1e5e0440f8bb9a6de920f22d233bb592635a43537178cbc32cee22f630c2cba34d19d62a3e04f0425bc37201b850825640e3c4d67eebc7 SHA512 b6d52ab62934c6eb4f7012ed74c65c6e76c6af7bbedef40d142ab4d624c07b54bb1f4517b4405e98ddf3144bffce8bd1b07c81482cbc4b9d733eb7cebc64728c DIST human_format-1.0.3.crate 6718 BLAKE2B 4e8c43738c2820990925b8385072df14cd66d5a569e530f9b3a3a5132f0a3b4a8f3d760a48e50515ed934df6a91d945f3eaeded5561683b5cb4e1ff297c0890f SHA512 a91357f791c136db826fc4704266b20d7acbbf681cf4b4c7e43ef3ae33f22a31bbbda13feccdddeb33619ceab61ff593ae431ad2816645e8a4d6c6d7b48dde77 DIST humansize-1.1.1.crate 9131 BLAKE2B 9a9717af2c61c724f1eb224eb351c7819cbc5a8f7d53e57a1ab37ff12f886095c321099a4d269e48a90475c1243c6366ead7b19e4d5b698cfbe5c9e2357cd562 SHA512 90b25500014d7ff541b6feb496ebb25ffbf0bbdfc3ea80ce3b3a1597d08c2cea9b967c674e261d3c8c3587d3481da8d899cc5e3fb05b22c55f90e178508ebeff DIST humantime-2.1.0.crate 16749 BLAKE2B e2ae8325b037fb175b9200cc5c1944ce579056c6662cce307beb6701894552362a25e371aad65f8fb9384945b48815ca74bb8b544a32e0a5845b7edd30b918c9 SHA512 3bf29ddd1391d82897c22baa0ff3ed58ef6d6959859f1f8ed54d324caba5b6fb4422e56790511ce82f902cd11467f93c8ab7fc7b0e0bdb719308a4d0a446ae0c @@ -161,12 +186,12 @@ DIST ignore-0.4.18.crate 53174 BLAKE2B 41a209a310515af9fa066c88c92751e19e0859f41 DIST image-0.24.6.crate 273618 BLAKE2B 3a76d8dbc30540d3b34df2bff54ac8cff024d3edbaf22d0de8acc6e48219b168be98699c823e1173d88316fe7b696d6cb89819d33dc04aafab010fce706ea35d SHA512 559f8396cedcf7141a05e3714f2e8e33e5b5873b0ea81d50f13c8e8ca860c1ec20dc2fe89feb59c8a72eefa1bf74f2b93ab81f28aea0339b2a4c24c5e4a94803 DIST imara-diff-0.1.5.crate 154821 BLAKE2B 5be6954d53e1787e6c88b23c7cbc8848f92aa7892a4590fa7d55269550dd7e0a355ea13ff646abb4f91467ef4fca12e74da60958181ff0c6800d9965f6a536d6 SHA512 9c8254012958869cb4845f76d34849b140dd1604d14dc9822f969ffd66c32a94ae6151a1b11052817e1ef60fb94ec52ac9bd0a122b5a1e6a994952445e4d869e DIST indexmap-1.9.1.crate 54114 BLAKE2B 71e4968c85d5b3fac550590658f9fed72c754a9443221fc804efb97bd39b5fca7f894ee67f8d2c330bf212eb8a6b5c85879cd813ed56e3fc43a54f0bb689af5a SHA512 7eac99056123332ad38ef32eb65235c810e8b4d051d9b0ddd5582348c9cd3b162d36defe8e46a532e2066562f224e37fae94b52b4649ee9cfac7673b76a2513e -DIST insta-1.28.0.crate 543398 BLAKE2B aafcc57523247f617b7267428d62b8a401098acc082dd77732e7f6741b220a6cf4fe612b78bd98f6c69f9e7d960d32dca1c259bfa9f5fb438ce4a99f6dbe8a33 SHA512 0195f32e4e47c03ec1c56951f671a5f16c72e1c2c847d39e4c3bfa90139209b1c1f5b7acb7966cf36fa66e4691cfab344ce7cd02443e8521b5c3d2bc77c703ba +DIST insta-1.29.0.crate 543492 BLAKE2B e946365b0ba0b7c35f87864b25c04ca01554c91de3e795d6ce7eb5e0fad2d82a7df4d1260389e72633809d606c37046e02ed8fe610507f2ea718cf2d03ce50f9 SHA512 68c74db2f05e7d4595691c113e497e96b1f1552cf471037657b59eeffed3e2cb9d69da8383b1f159a82a7783d10c028849b793a26b37aeca3b53ce0bb11817be DIST instant-0.1.12.crate 6128 BLAKE2B 728923f757c1ee4e4a7afb90e460eed81392068961240a538e5c6468e15a0b6491f590fb5f6cc46e6d78901ca232351f65abb9f2f230d8f4983c5e58c4011902 SHA512 fae494c00111c51c840f9dd6a10febe403e27ebb933dd16633a213e9c20f2bc11adeb431c71f8a6713bf88f270a010941e15d83df294e658791934f83a5d2407 DIST inventory-0.3.3.crate 13229 BLAKE2B bc41baee2f1e1080f84af2366a2829f2aef25c3bd69979265d57e12f05c524b8cd0b59239eb6797b912548bce6a0daba6e62205d867f32ea735091011e3ee246 SHA512 87683da98f63209b1cc809682cf4736757fd607fadd74514c8fad99f0c0fb9f3e73d2d56fae839d25f7ad802cdc224e124d7b240c2616d94b1c8c1b81d04dd6a DIST io-close-0.3.7.crate 8025 BLAKE2B 3ae34374d194407200f327695e7525268d03e5c2e8a051c99aecd1d395407197f9e6ba39339f67ad4ac249b8be63e4595993e6cfefb2f0b421bfaf8d655099bc SHA512 0cc06245da4ad9f8708ab03619734dda41d1cbb2777a7944df10e2efb0ed0a6d34aab3ee55210b05eb4507c802d01a301b6718ddd6cb8e2b4abdd2e1be11303b -DIST io-lifetimes-1.0.3.crate 35650 BLAKE2B 51182293d373618fdf5dbab016167a01b3e12f79bffcbcc00e1679c2f63a167f7fc291fcd8f886944a855ad5d9828aadc9aceff1a3e5c09106fb274b39e837be SHA512 afb868979d54bc99d5c8a1c31062c91ea9e920470bb1f0bce95c2ebe0ef22fe8970ba86b2ad570d789f648485ea4d75fd83bba34e5a590a443698c713a321388 -DIST is-terminal-0.4.2.crate 7577 BLAKE2B 4ef84768184203b58e2b155256e35fd7a74169a8ccd52c3c74aec7fb1d6aeefe6232d049bbdbc40ede2acaf0be453caac19f758cf1abfd04cd1efdf4022c4996 SHA512 ce4997ce1b9f529a7d1b875985cde02440de288a0e823f2f5a9647e3a34658c5f56d254e85dd7f152a987f08f428bd82ce7e2af626c4b3c76cde50e8ae1e9374 +DIST io-lifetimes-1.0.10.crate 37294 BLAKE2B 9b8836c4bf30e6d102fd9973ac66f067c3ff8bc2806e55f26368ebdc9854f2e9cc6eecc8014f9a0b22a968a6eea8be243fcb7a641d2d0dfc747ee08a6a1450bb SHA512 4b2cde9522780a408c5d4e6406286bc5dd3a0de1a99675129e9856e5d889498a127fd5dd7c937a7542135abc2213b60bfb6258b7871b8709dcdd79d60455bea9 +DIST is-terminal-0.4.7.crate 8356 BLAKE2B f0f42d6f6204c68bc8a9e1290b9b059ec55f5aa2f83f6966711a5f986852befe21ac9281fd611e65cb4fcbf35dfb212748785c7258c44602e7e390c51f09dec5 SHA512 56c00b2942963f8a0b5c40c96a885f85565fb09e247bfd5a3e77ca5c9e0e0e40a17a8d809c0541177e8b496fef87baac4b86c751765491ffffdb631515d8acf5 DIST is_ci-1.1.1.crate 4143 BLAKE2B f594a9c7b58927c8e1c8f53d3bb5ad2e6497ff72980938c9a7a521fea4b891e9eef6897088f3694e4eb5c9ddb090b9c4d01cc185fbf68d018381d3e3629a1008 SHA512 89341da9fe86cf4aa5a107f8dfab21020c581e661ea551e4f2e33e39efa21dc0c2e46b2fef08fbe75d16fb1028118971561b1a4e0c351ab7de6125b7102372b6 DIST itertools-0.10.5.crate 115354 BLAKE2B f24734bdfedf1dba48554e39b43669efcd4a43656eeb2c511096060daeaf049e1ad3eab232e757057750ce94aabad9fc8a0cf29a997edc6c4b167301c3443391 SHA512 d03c3cfba9841776913bbb6daad0c8945830c155f32ae4b48872e0f937c75a443f0ac9a0355f43b359ff75232f38b15f4f6d446b4be30b00b4209cf66ef770c3 DIST itoa-1.0.4.crate 10601 BLAKE2B 95545252eaabc3114323a44c8b8ea12a91568d9fc8d26ccb3bdd798ac0e04d9a6a9307927c17558f1284fa5491464cfceba2f0b880d00673449b94c0fb783150 SHA512 a70bb6fbdbcab27fbb5a84041bcbad8e0c8fda58d55ca7ac757f7be5cd373101be40df99e9acd6ae49e637e40de037c6bc59560f96c9adeccb2b2e0bf6531e42 @@ -174,13 +199,16 @@ DIST jobserver-0.1.24.crate 21303 BLAKE2B 571e6f18f09d56d8281d2b2d206647666dc6e9 DIST jpeg-decoder-0.3.0.crate 742671 BLAKE2B ea2226b1475a488c9c1d767145d021de87feabe993eef5b6534c91ec35176eda74881af667b2833d0610db04f4bed0456d803af92d4fab6d472db606633e3f2c SHA512 68611f52ce1b9999736711daf17d9fac8286179e5f937f04f90d79f1a4d9f7cfd9cfbba9ba2bc52b107392939d57f4a37e8ebc409878d7e9838d5fbddd8bf5bd DIST js-sys-0.3.60.crate 79257 BLAKE2B 714facdab00d567d074de4a25b69487400c23194d0f58ca784159483f9e02289acadce084b1514d8816cc9e0597800de82a5298b071b7df19a24df93541f23c1 SHA512 543dfd444539fad27bafcbbf112366f53d4ccf4bc63f8bb17820d818c3e1804656697ed6268a793f383ddf6b6227f7e9b3a11fb6fbb24e10732fdbd971801665 DIST jwalk-0.8.1.crate 39882 BLAKE2B 0e71d2e1eb938c8e42074760c55702da9f0124851299e6bc80959eaa6b446023db646f371fb618d7e072b12152e1cae1e04653201bfec382b534d453d632070a SHA512 a9ebc9543ad153a83e58ac0a7826cb083c70201c7b5794caf1104eb48fbfd37861ae5dcf6966b9212ab8ca4888f00e0a37297c75b196e4f56be9d6200c96611d +DIST kstring-2.0.0.crate 22063 BLAKE2B 71e58489a167d57326ce974c8e05dd4d2e18f7fa142249aea86594b56b83d566e14fdd79b7202a20ca9dc9e0911f7f873454925fed642d51241e6fc920775831 SHA512 17cf8f86f0a1df9de75ded552c4bfb9f7f0567802c83c0a8fa71625aa33cc537b498c3a247716a7b91b01c609a3722233d6316322210aa44850fd564ca16f624 DIST lazy_static-1.4.0.crate 10443 BLAKE2B 25b2e61bbac48f0dcbc79c81d7bf01f2403d8269ecb6be3ea6147bd00f7a588df15a91f44dfc18ada19b21faa71de4637c7d493a8628cbecd0e547d74e616a23 SHA512 e124c0521ec7c950f3c4a066821918da7a9c6e711115d98009ae7c351928fdddead852e7596fea5937a9c30e4e4ce8eee7099b20248b5d6e3b2494b6a6d88cb8 DIST lebe-0.5.2.crate 8422 BLAKE2B afa49a1945d623b34139e31406f4780a5ab7b3d34648caf5f73b1504dbec4c4c02fc3aad3fdcdf85509eb8ba733a131a96478d6b9494cc9f69048f9ae28eb880 SHA512 ae8fce41c9a934999dad672ad74acabac9d7998aac4f1d03b54910d4b941375b9e9721cb1bfc8cd7cfcc4206fc0b18d725b0ea256a3a10a125a8d5848ed761ae -DIST libc-0.2.137.crate 606185 BLAKE2B 6724b7ddc2460fef1d0f20efee8726162d904b92987f9de2d3dda06c9cd49124c9fa43a9b39e84d78c03d217ed8ffd30e0dc55a4eb31970413d56fd58ea00adb SHA512 1ef979dc59a7ec4aad7229ec5b40be0ec9a8496c7a2177d325db62f3eab00d72c8d2277d517c0093e0750de12fbb4e45b67133604afeef9153b8e1d4aa0baac4 -DIST libgit2-sys-0.14.2+1.5.1.crate 1742257 BLAKE2B 028e6bf6980d7a54b76c918fcd499684869f14cb160e821d6657e59925d142655dae6e018c9f29389de304ef6109197fd71e6e6752d0d0a53152f2c4820ea1a3 SHA512 eb9602706036ea62ecbc08250f297119a1c51ea09ea86ae8630dc6d0521b74db96d8eccc4106343572eb70d9a156415c017c6a91fb5529100fbed091ff8e7921 -DIST libz-sys-1.1.6.crate 1508051 BLAKE2B 4cb522640d27d8e2a31050bb5c44a2c4fa0bb01a467f18e1e89e5fdba594b3c14e14ec4c47ed93f09e5374757c3f73e2f2394b6321ad72ef3fba6e35abb02399 SHA512 18fd3800c38444aef381f7b360b9cd46678c560b46e7c5a286989fb9e689f2447e84f29e4ce195c1b8c2a89584eaee838c175821335accd13bd8d4483c3b099e +DIST libc-0.2.142.crate 679343 BLAKE2B 4168a8c3766bbc4f5adbd4babd84757cb81bb3c8cc806b8b5c1381a88ddccbb8bf55ae84f2879ab26adda09a3d44d21e2708dc9bce5d4868663fad8dd0f0e086 SHA512 8eb465fea8bfa865aa592185ea2dd89a6d89252b0e44fb7398ae82c9fa031d501fc3a1c37e50d1971be528c6e1a4ca416da224ba82e5a8766ec598464593afdd +DIST libgit2-sys-0.15.1+1.6.4.crate 1755296 BLAKE2B ac0978542d2ed8615fc86fc3320b444bd15cf44be9655aee2e582a31aa760540068486a9a6717e0367e372e782dcb2c569f49515e96e38142943283e63adb391 SHA512 a6e9992749ba4d09809e030b9d27d0fa5e3e8629800f0b4f387ee68bab9dba1b7f8d75405538a40f7781bcb287e7497ab2bffe3173ca83215627ec1374117ddb +DIST libz-ng-sys-1.1.8.crate 1836789 BLAKE2B b63d426c0c98f3f93ad7bc945a21b1f1260644b966d515813a4b0de6a8069aebd40a93557c522cd8fec966c7bdacd9de0b9435d04f9559f2b233ed2fa9b14ef9 SHA512 f98cb442f337df128e87538ed846dc4251c2061eb92d33522da9924786721824538752c73fa0a118627b9fd7cb0c5419cb6ba38c41c2f8fd925f42cfdeb019c7 +DIST libz-sys-1.1.8.crate 2481844 BLAKE2B e890a3850aed5348afe7558168c7571564687d6a7d3567a4d53ffdf79444d38c4d70d35891e16f496f31169bf73b669534f5fc584f9ec520b518dda05e80b882 SHA512 0766ab72cc1414160ccefe4812e6204cbed1341607e5d17607f24fd4ff81dca68d8f2cf43e1d27f332a508d602bff0ad340c4c647a5d5f85acc120c19cfb4100 DIST linked-hash-map-0.5.6.crate 15049 BLAKE2B 0f30e388633c60433dcbee353507f1c6857bd210f0b61a4d166a9b95067bdadaebe49d5fca4fa6ce13072e26037c6f75d46cc30cf8dc3c9cfcb3f33b33630093 SHA512 031a87645381c96beff33572e4bac1a9877e52fd2f99d39918fbede17d72291b35e2eb69e07edec20c3058554c35cc38fe85b8f175c2a3c69366136fcc71f707 DIST linux-raw-sys-0.1.3.crate 878488 BLAKE2B eaf7d613f42d3f843f541a29641a1bc4f9152854f7a61a837ed79f121f1c962222e6c32244fc473297f09215a0e33c475c833090897b2e84af64197594112f1f SHA512 c968f7ef0289195717d245977b57aa127e8874d3e15310b38b92897f39da547211b2e7ea914b21bc3dc7cbe67daa8dbed812be868db64a00d6f270c51c5b3f26 +DIST linux-raw-sys-0.3.4.crate 1007150 BLAKE2B c13475f95b539992e3675b9c59a46f649501ef19a7c83342c4b6195d4444d34c3861d677f40720fe17a362469c9065bbfa5c0fc884c48da45edfe35bc26cdc10 SHA512 fa058a39be583baf32f0425e7f3ed2a2f51dced89af7f9864ac3f172c1dd5708f75f5a4ca4e124c9b4fb78025417a4c119234c5493a59ebf76c05314594f1a84 DIST lock_api-0.4.7.crate 25371 BLAKE2B 9ed08433ffa70af60193dcf307287991a3154f0ef16b485f32a6c83e64962661a6e08ef83a6b217d6cbf5bd964c0638d8ed86b290087677c1fb3218321c4bbf8 SHA512 b1a5227fd131edaa70e017f7ddb43af8b4efa58488007b898ca1dfc818a3a441b732b7adbf1270e72a68ee5d2a99a5d48f33b2bca8e2cf78694953d20d27636d DIST log-0.4.17.crate 38028 BLAKE2B b46be3719fc0a53e50b1f342762e188587e9f1ceb692c72473ce2663edfb8253742d30024e68c1444780ab7fc0e2d5b0601b8ea7228dc3405a9342a57548e605 SHA512 2477d88db42b1d92c30708d88823212e236f613b3465e85eb425f83f8d16fadfaf0352f06c2999a1852102edd2f6ffb10ecb539d8a3b6c48f552a25622ccffa2 DIST lzma-sys-0.1.19.crate 759997 BLAKE2B 192500d130b8fba102664d0443ed6ec39fb776da99a618686efac780fc2b9f6ff20ad4e3b596e30b15942f8c9c2679e029ab7de4f4b2543c858a32c7bb53f0fd SHA512 2a6cf7566987f9383b24d3880c28f47752f48b33badb0bf50f770354dccb4aaa2c934251912a3795bbe5d89f5c1485d66d772be9fa6defefcdbfaa053ac1aecd @@ -190,10 +218,8 @@ DIST memmap2-0.3.1.crate 18393 BLAKE2B 2c851b907f2134ed2d164c9f7ab99d9dcc22ec119 DIST memmap2-0.5.3.crate 24967 BLAKE2B 743b61983108eeb82e547b216c71039ad8606d2fe533694415233d73accc14388cfbdaf9048fcf13448abfb4a49ecc3f3c961a8ea8a364a428626fed499eadce SHA512 b570f0ea37ba18a8eb22c9207dc952456864fdabf0296bac63c4741e0aec424ac7932fc0dbbd0292ad94406b1e6911826406fa00d11b7590c54816fb7898df5d DIST memoffset-0.6.5.crate 7686 BLAKE2B 9a797388702389076c426052c3d54dc62802d5db8bc5c9c83990429f2ffaec4fab4c7dd3f09cd0704d1ea555e87976563bb43408ba54b5e66ce7e406d4604009 SHA512 11bdd9185b99dfee8e659e051b09ee301c7142a372a8117864745a5085c015436d2efbb1478192886f09cbc562529e209d2e3325d94938a64bc75b1d91d2bf3f DIST minimal-lexical-0.2.1.crate 94841 BLAKE2B e6b8919b80d938d0b98d60d4f5f29ce43d77ebfcf8b18bde08909141915c6ef4f0d07a543538d4f3ba8527a9f55926d4a8e83473248469d087e80b274d701d61 SHA512 385fab51884bdcc7b0f2728a219ab164d0dc8efe42160b918f2c09f79ecf853fb12bda006d11e649f097bae1499dcd41ddf2a8784ee7d178cf2c28059e46078c -DIST miniz_oxide-0.5.1.crate 52418 BLAKE2B ec1d640a1e8d3f6c518545ae51c4b2e3a2f2d37dc4465c09f7dfd1df181b3c8bbcc6802b9abaab47e58d704e3b0ed0060aea1cd2ce8b7bb64d376817ebe96dcc SHA512 7fd2c28f3afcb993d48452eac55d0d6037f4eab5c05d6d9abbaab76145d5ea9c6163af9b6461f91d4940c91b9b7734a351096a313311c07cc53518559d578c01 DIST miniz_oxide-0.6.2.crate 54536 BLAKE2B 8127ebec5a2cee1c2101d9533da573e01ef1a0fcb169bb0fb1419973ddd2e6953d8dfe85f9509a5d1226643ad290f0ee1479fc68f1788ade7ddf9633d90bfe1e SHA512 250782e214572acdd11df87c2788cd5f78e8388d9b285d0a850918219678e262e8b9905cc88728f5b70d13920ef9d19c43d243dad8fbcc18f8c8462662ce1419 DIST nanorand-0.7.0.crate 18437 BLAKE2B f4aaf18b7cf32b385d97842cee234f0781bc2e55ca5662031204b999293d417e0ab2726eacff084dc6681ea5e46ce01335a1a5cfaa5e8bc6e602aacb1fd25252 SHA512 3ac650451d629852236eeb45dfee808acbea616036025676b47310100982d7e8317df647fe8649e7753dd0f57c501dcb3f7401c3d804af52ff2a2f50ace8cc69 -DIST nix-0.26.1.crate 277805 BLAKE2B 7ba6efa24a5ab399184623fd019643a132a803cf72a9b8b4d0070caf839e123fb4394773e0b816c0d024494d657eae9b05b56b0b4cc6ace6d07db03a3d1c461b SHA512 4d75ccc1a8c4627dc14b4a2080aeda721d22dd6d7c78e448131f7589d0ddb58fd5649eedd80816153a978571fc843f078256a6c09ceaf34b95fd3caa3e6b73e4 DIST nom-7.1.1.crate 115818 BLAKE2B 1ec3df3d9a7527f26618a9b6b976ca8ad5176d711dc7e6163dafb1ec214a55345e952439b4c98b2ac371c9a67c7ffdc3213d1081b62b699b36af68207fa8b320 SHA512 1456efdbda4f5b3da6c8580721acf101ed7d779619ee0190c1df103244e405a8ffa0c3889901a2d8beeab0ab84074ed4c7cec5330c7cc2a5a3c30e36a2530be8 DIST npm-package-json-0.1.3.crate 9880 BLAKE2B 4ca6b36570d7f73a571d4f7f7065072aa60242e91fa44ed8b7447f7565efc5e9c2a645031ca952b8cf53339b348c0de0e2bcb73f4f6941b9ffb744a946264bf8 SHA512 8191e97ce2a2230aa19db8e6b88cdf4834c11431f3cedff8f3dd20433ba877a4aa897022d9ac5d6d11e270b4080e5db163d3d9778f9435146bf0bc686e3487b8 DIST num-format-0.4.4.crate 61509 BLAKE2B 6d00df67a83adfb39a1068ed49e03daa9dd9cee6adab714ca0971c520f90a31ea8ebc736c0123b3bec9a84857454ab6f2b281f9da773a40068c252f224e65212 SHA512 4bfffce4b0b24a49cf3b8617bba0213769c9bbbdf111801915c2c6b524a8c54ae728b2e8f0901d367ec1d5a4129e9d76597f5df1c3bfd65459a02b0dcc84eedc @@ -202,11 +228,11 @@ DIST num-rational-0.4.0.crate 26428 BLAKE2B db676676735ca603df8e35707d2068e89245 DIST num-traits-0.2.15.crate 49262 BLAKE2B 942ab170b2acce1cb40e6847f766bf810a79edd293d34f3a27864f464c16fe2b99fb13171ba429cc6d584248de879434beaadf1b231a4001b0e8389ed6c1be04 SHA512 5228498af0f15daeac3c9210f3e6e71cfaaeb30beea81dd37f8eb06b9592c8bf3226a47597cd8592ad4c513964a9a40f1ab2c33102ef3dfe3800d22c8d4528e8 DIST num_cpus-1.13.1.crate 14752 BLAKE2B 27490aeee349d944c29e50b44e9a84371030459353a9316ffaa0245ce499df4424e39c25a81be59cd0f9a19c3214c78bdc7a84b632059282be476d8f918c44d6 SHA512 91ffe0ec792228621d6c2d5cc544ef4744203d19fc9c86e0aad2610038c43aca0448b6c27d82979417a0f6c939ea73523303a44c28df0d1c1b8d09814d5306d9 DIST num_threads-0.1.6.crate 7334 BLAKE2B 416efdf395b0299b6b01e1508823afdda08cf67ca54e1d644fc5accbb0490945a492a34bc5ba70c3e838e6405d17ddce164ef87468bd9da27097de8994ad9577 SHA512 b2d9897e29e59353379b6372a629fc7f9afc89f777b4410eaeac7b4729527948a8dbecb175f056899f9076693ef855cc0d40e725cc54f28af588fbac5f7ce3b6 -DIST object-0.29.0.crate 237723 BLAKE2B fd579be961df0d3185682348f1d9cc0fb4dde3daf9a3c5d89b16a5f03f3084f1755d1b077f8a7bd14b2bb296b3bb95e9fd85f58380bd52fe9aa885e19c1b176f SHA512 fb69ed164b9d766b2eb268b3492134ba9ca6b4358eb61712773c44c5c0676ce04e3e0c749f947658ee1423dce5e11237f6b6c0320f2d32bd6979cae141273dc2 -DIST once_cell-1.15.0.crate 31460 BLAKE2B ae4481883865abe6a684d63520fb2e91b64d6ccdd0374464200015640122bd68b8a769309773226c8a31d0119f450ee821a2bd35c346fd86adb4474ea7c28fcf SHA512 934a7c3631e9ca4fa78d9577b6672ca0b2f926a8d6c3be9542b906c5968033446f98f76ae6f368a1a5b92ab9064c31a57d74ab6d2097108029a7ea951541ff7e -DIST onefetch-2.17.0.tar.gz 1997004 BLAKE2B dcb471585f39dade98032d39129fc2f35d2c70ae7464a599f618bf2dacc8e8b94d48d62087d1136fb068189d9e3917d2d6f9ba42761e0ebc9fb3beaf8445062e SHA512 a7616d1d0af1cbfbb925f04fb51e1f45876279cd1b1fbb00ceae12f6f113c19649eec859df56b1982ae7da8e40b885c4e2e9fc909db4c49d654c9ca919853784 +DIST object-0.30.3.crate 258901 BLAKE2B 73e190fcbf7c47950ac036306ca8e6e03bd1772466cd580fc51e246868cc69c4e49c712601759533ea650c806a8363d0d77582e1363ce2b5f92d4b7439fde91b SHA512 61414475d3fcc7c4c3ad8c1316f6ada7801e28590d98bd425fa246f091d464de4eff7eba7cd74904517dee95ae0673e3d581400adb971306955a0aefa814172c +DIST once_cell-1.17.1.crate 32856 BLAKE2B 8bde2aaaf9ef45d1f6b8458686179f1fe9295ee8faea269e9b49779583ce26ab9dafe988c3584e841a9e5d05e28430ca967ef3b25e755f48f0120d9c99cdb7bc SHA512 1302d51801e38bfee23e74c0046f1ecb1d3c27309b5fe11c2b6c99553b357db502ce1718695602f9d8b10429e8ff03f91c016d5d604957083728293824c05904 +DIST onefetch-2.17.1.tar.gz 2001175 BLAKE2B bdb373be1db092377cc62946d50bc9446143bde32d3d964ef31b89230d570379cca023669d4c5058bf317c6824b7ddee825dede4826c8011a172aa1440f5035e SHA512 3a948097d91a7b158568c965aed8faa16bb193bde014e46f47c9c41fc5571a6ac47354adf43b72a4a8f248477114ab177a0b454af0a2ec7a7483463f633ab874 DIST oorandom-11.1.3.crate 10068 BLAKE2B 443ced49f63015823866257a36a88e566f75adaa79511c1c73f1190ec8855ca590d2b6ece07c2ad5e9e47a89f7891af6e9e43b7d74d9ac57cb3551e60b50aca1 SHA512 51ae60ef51da56d7673f36a6c5b99b743580c5f5be54fdcb54b69e5e2f6bbba3267f96b74e7cd6dee6962dfa6696fd9ed073f22726a2861b8f2601946a8efab9 -DIST os_info-2.0.8.crate 16568 BLAKE2B e00c5256d6bccdfa88a033f76ea6ab693749c0d388957e6be653766d2855480a2f0965a534ea23b62fb16f0df7d647ad1a39b9a33ca7d861e471f1bda3525bb2 SHA512 091ef57c6afe37e62e022f8508964a4aa79ff4be37fdea206a0ae51c73ea09919b55d5d001eaf1507d485ca8e0442a1f1948c84e4978ba09bf408b11c12b5000 +DIST os_info-3.7.0.crate 24133 BLAKE2B 321f1c47fbb4425bb7a779a45cbd4edd0c8e57bc97739b80ff28ed19144913af775aabc0f328fafad6afb75f2a54c8b0132c943eaa713b469138144a68497e4f SHA512 46945e48e10677fed222a6f34e428a7fbbadc4535b929f141d98483246d1f3cfc45eee905f1bd75123a101d04c5111b6376233a5cc50df2caa482a461fa49d06 DIST os_str_bytes-6.0.1.crate 21079 BLAKE2B 85c4a5f450d74bae23e2d2ad1c20cc944ff93fee1ab2fb700692645586acb388d552dca2b326f7df2cc4d07f6a3bdf7aa6704833be211f392250a56786519224 SHA512 16035d3032d499575faf5e8114868d57826acf2b4a54e848f9101713b7965a2fecd6c486945b1c8ccc3ddacdbb95a1c6f8a74ca4fcdee24729648edc817c4472 DIST output_vt100-0.1.3.crate 4473 BLAKE2B 8c75dbcd413e1273ddf077f3b57996953d70376be6e438ee1a4de83a8c3c535d4cc866849aed91df74aa9b22d41d428b1142cefe035dab7404ec89af9efaa832 SHA512 ccca3b4c582e860b0643dea78302fbcb96f8f86b356041ae9c685e7c48f1721fd3366dd1bea39afc1bcef03b298d0f6c87918a1ba92a56e6b06bc8b4123c0d89 DIST owo-colors-3.5.0.crate 30310 BLAKE2B 6fa9d00cd72d149748e5280360e1f0b0ad8c78c5678dde6e72daeb7975a182b4d06d835cba1ac307428e0e638456cf219b8d979c24649623bcb7403095cadccc SHA512 1718f03d9f3296ffe3145161e038ebdb8dc40b69c0e2cb80a51866b519cf857b6573aedb7704895401e10cea11ca422a384c3594b8762be29eaa90908e24f7aa @@ -234,10 +260,8 @@ DIST plotters-svg-0.3.3.crate 6916 BLAKE2B 74c2c71afefe1148c82f8695ca3ae5283bad5 DIST png-0.17.7.crate 80979 BLAKE2B 37628fa2282c7195f983a95939eda1c73745f89d772904173775d7e1906b71615e45de8f59489d6842450ed6f7c7b809b28881c84d5a3399da38013fc3062c79 SHA512 f8009925a6948d8b9c82007f31eefd18d2173274816c0329673e48ef725aec52ca3aab2b91e8fc4f776c8f7f17475a3e065835e578a632445e1bd70794b18270 DIST ppv-lite86-0.2.16.crate 22245 BLAKE2B 03cba61af42dc3a78ab8f6b03d833c028b7ed737e101b1952467a1e19706bdce6c758eca4ec7d575b2f61daa47cb25fa1d74039b2adb0dbf949b66b7aff3f10a SHA512 264b916f7d1bb6f1c0c0d3cc45f40b72b638abc7174416b49241c3663fe500409509ef6c8241a24515a21a20288c2ba508035b6b37972e4ae7ad02ad19118b74 DIST pretty_assertions-1.3.0.crate 79441 BLAKE2B e9d29267ee77532de9432f075daab704e8d80a3d5fd5515a7d3c1c9a58dd98ef0190a592e7fe4d8c22a149beec15fc346a68620a3835c1269f72e563d2a5fb89 SHA512 40a56ae7287552cb66e1066cfb89b26af621f894036b9a0cd49889ec5b25831d52cc07f9e117d905766701fa71786a45955186849d36e00cbdb5f884763efcd3 -DIST proc-macro-error-1.0.4.crate 25293 BLAKE2B ef918c5efaf2545ab38787c8d0c07315af00431139e4dff66346bf798e3a429f91d12a79776c150412fdda0b158a72badd5e1044ac4d6917f8482d4b5a7110b7 SHA512 8a47bc9d3e24e9561d1e384d8f5a633284c2cf9b5e6733c5f9d1dbfe1870ccc8e2152482852e50b551cecb68e009148585b910ffb0508a7b4875598eaf8657db -DIST proc-macro-error-attr-1.0.4.crate 7971 BLAKE2B 98e2925881c2be186e22c2c439697e91d43f807eb61a5d13e3b0b4321ed50a74f3d699942c04b89b6fea0f156bb5d19ebcf22f9cd4b98a7e6917c437600ed823 SHA512 2606afa9ec78d7dad4500c98d3a5ecbd02c6b53ab829c742bed7f57b322a95238ab4e01cf268746815f1424fd9b02eddfa30e72f98c66106f57765f3d3116495 DIST proc-macro2-1.0.56.crate 44454 BLAKE2B b2a1f28979245a784a4b3a0af8cb04bd01ef3e7aba32c45122fc05a6cceddb1b7303890827f1a2cb99b0b2ae013cd772bffd6e94ea226f0030cde867d6c22aad SHA512 511fd8332eca47ed834736d405e18d53d83642cf528bebb8fd67fa5561e19b0a43c359b3e8020ecd28f9fafdb065c484ca360abc0287a0f97e94d4f779145f03 -DIST prodash-23.0.0.crate 83490 BLAKE2B 60c7915f9bf4287f538ecac08be0df014e30fe91d0c85567cc385445d7c590288ef52beedf1a6d0358008b7daca80be751bfc6c461ad24efbcc4315dada96eeb SHA512 fbdbd05d810451916216e96c54ab80101a68c70bbf2d9569e882dbe0aeee14df27bd3771ba7981610dca484c5aa472adacd99fcf690c5941c3e7c4da6c2f245b +DIST prodash-23.1.2.crate 83797 BLAKE2B 6407d22f46020a7c1b2d78a17d05bcc4b8088a913ee31a778f0f403530e908ba3eecbb4f677eaf8dbb7e90bfb3485dbde47720203119aff0696e555c07d339de SHA512 733c3a072fd544c151e5e1298ac4cacfc4356813e454978ba526adec8c9fd00af6c37c84ebf156e5761776d07cc4142bbbf414ed19b01533a90222e64cf0fcea DIST qoi-0.4.1.crate 71135 BLAKE2B 8b4e2ebfdd6df425efb1326912e8db02258e570320fdeef465aa8b03f3248cd811bedaa17c15902f851083cc1db06a2b500aeddf734345eb25af0d835300b2f0 SHA512 884cde33bfb2d02716daa5f309890093bdb7b3f53eb06aca0b6eff0b7a66fd67cb8b9acd510d19e3ae7718930add971e871532a1605e4989639bf72f59329377 DIST quick-error-2.0.1.crate 14265 BLAKE2B 3815c89e960923bfe0abc962c38714b953fa1d5af991f3de22d1d084a8cd1ba1761fc961ba97e06ead3992ed1b61f525d04bcce459599e5546315932281c1dfd SHA512 e028deb598466ae91663e5d090606be4f117662d0fa6e0c0b0043c7261f26787057e84e644cae72a45b1a0a7b1fb03fc9712faa3abee94b97ce2c8d25c365c32 DIST quote-1.0.26.crate 28397 BLAKE2B b468a5e9350843ea81e540d17c9fcb302b46fbd450e10280c5fff6fd7c98a439df8c3d3d47e551bc6d67ed02052b5b5c65d215d5ff8ee34f045747e75c1ba37e SHA512 6fcfe4d31f601aa60beb858c25df217421b0a184d185eebc7a4cb9fbf97c687992b77bebd8671a9e6193716387c3e926fed9b75a08684eb2d9a5b155fbc321a5 @@ -251,20 +275,20 @@ DIST redox_users-0.4.3.crate 15353 BLAKE2B 5e3b4e902566620cee8856c092cac193366dd DIST regex-1.6.0.crate 239329 BLAKE2B 646405e681ce572ebe2dc51a3339f0f8204143f9b2b8f8e74a4c80379c43c3581363ad347610a384d5ee831cf1425f74ddd944a658b1da2461e8068c5521af69 SHA512 b4861c9cc13d6fb224f67057fd3522f04576591b3d7ae0d3581dce42ca2b2bff96860cf2a7f4dfab00e46a1d29e6473f6723c4aeb02e34ed6d5f205b66f07876 DIST regex-automata-0.1.10.crate 114533 BLAKE2B 0e357229f6825f14339b1d7c40730b83e62bba12115d01ed20313320766e769a653a2fcd2c9d19af51a82c38e9e42c1a31d005e1f44f5b6fbb3ead7c9c74027f SHA512 56d64da361afce82c6cb49e70b99ce1fca3e1969c54bba5f9971db135f8544c65f49feb8827789947b3d1dcefc9c49a7a434a7ffe0d09c5900345a1733723c5f DIST regex-syntax-0.6.27.crate 297300 BLAKE2B 4ca1a2e23d04e29c5925085ea4ab7ebcc398dfe135eacaab1e686aa8be43a110a28e8bec05a6910183f9a6bb1fd0d635fcb1a60b5a6a03fed4d2cf937a542a5a SHA512 5cc705a5dda08cbdb4dbcf3fa98763cadcda13d9c3ba407b35f3e88d77935efc2704bb40b3fb5aad7dfbad0df43bcb4c4cad9732defb954e2228a0739f7c37c6 -DIST remove_dir_all-0.5.3.crate 9184 BLAKE2B ab7ef94e0230ddc9b363f038254a180881bbc20eb04a254f97e6f71ed491c99ba1c88f5e85632d450243882a4a0df63f3b8b183bc1fbca9caf30ec23d577b1d7 SHA512 50417d6d8a33912193a1ed37eb72b47431b12ae65d2780cdb7080c3d141e63819da13751c3fb737685cea322f70b36d413389c3dc01aa12b4dce615aefed0e2c DIST rmp-0.8.11.crate 28829 BLAKE2B 42aeff1a8d4874f1cec8a19085e4f23ae33cebcfd024c28772c0cea36e096d5ff012e6063647f31b9e9c3ca311f1036566411675fe2f632dd9dc1d5d1f7f929c SHA512 27a499316542722a4d9fe4fa9cc005b6b5fa75dcf66686a5c08aa6130497b67511c0283419adb64fec09a51a563f4991f2039280d2e74f8ea4102afbe4977f38 DIST rmp-serde-0.14.4.crate 24668 BLAKE2B 45e441f224dc3359830486878d0b11d6c0d3eea0d9637d69aaf203f084c003a037271e205f2fed4178f5f0a03baec63edb35e1b108734b28ffbe15323c0db7ba SHA512 bc60f8d58e1f07f5dc6fdc3822881deae4beda5686409b068810a5991b605e999421fb668337bc02817d72a9904489a46337e077c6751d7d6bc43eb3c77179be DIST rustc-demangle-0.1.21.crate 27920 BLAKE2B 73ada923b9b293c5a9893f86fda0586139afbb7d56894cabbd70612d1fb0330a9e491d5143fe3498a0c8d3e1a3f8e63c14b20865926e4c831915592486ae32d0 SHA512 4031b26863a726cc6d3398b48682e0f0f9e5665abf20a5d35343a904ebd7c0d3752dcdd3a049b2bfa3e2a303214dc39a2980700bcc64464f7029be3c7f34727c DIST rustix-0.36.4.crate 287355 BLAKE2B b57582ff65430e21cbef8f86851e97a4f0c89c0d456cbee8e2747548b045429d85f4b0df87ea39eb5005b8a5e2ec85040f4531f1ba6a6a1405e3b26a91d6525e SHA512 e56eeb9c0a6298b1fa2313ee887c63e5d24e08a880ce870703517d1b754dcf548011d78bfff762be952ef5f253c8d7d58d5e959f41235f7e99fc8e38ecb314a5 +DIST rustix-0.37.15.crate 315957 BLAKE2B 5408272b771078203261aaad4c3329e3f1eb7631c239beb0bac5d884ad74867629a690fe841d31d79e7b4939abacdd979af26dae7aa91989ca4f9f430624145d SHA512 cad1f85061670cc391226a93a387439f2ea8cde9279297105efe2961dac53d1ca4941ae57b5b1eeda897f19e7ebd12a9f84c243516a1d68205552309dc20efae DIST rustversion-1.0.6.crate 18380 BLAKE2B 2969bb40849dbd2f0d3f4a190629e53204cc5ef9065be6aec7a4504470e1dba6cde7172a3075a1bade421b30b88947cef6b29c0ab5aea8601695f72a7acc45d1 SHA512 fa9efca7e49eff6c510d062d02fc73d15341b1fe16d24dada86108202a4295d2e0519aecf3f1701540cd4d49a513c05e74d3d27e21e5eb3cb1aba46c70a992cc DIST ryu-1.0.10.crate 48485 BLAKE2B cbc0ab4e0b2031f4ca3a34914bd61395d14706d42e2414757aa23a67530d549382d61b630159c92a169d1dd3315951b0071ff18349d2b090ae262de536aa29e2 SHA512 1bd0af71a20715251dd42596df6e7677e44f712bbb40b0d9544109c1b2478a7bd2c9393535f0d4f3bfe2d1b75b3a2b899044051715a7da7d165d6d586e0775f2 DIST same-file-1.0.6.crate 10183 BLAKE2B a320c8343e0b38078ba81c4f0159d886bf47764c74efe0d7cd2b3218426e8341b51e523c00a9e5fbc2ee1057618296bd70b576c68751bd55d6ddb352defaca15 SHA512 3ba35309742c8db63210d9ea78bff4ecd80471d69e6238eb96c7bf0673814f221e2d838fe6311bfc5a0e71b4a7ccba33e07859c0b9cff2171969ff08a4214a7c DIST scopeguard-1.1.0.crate 11470 BLAKE2B f774eb90b7d3ffb2efba47518e9d1dead4017ab4b38a4bd74914daa84a5af4bf9eb63da0496e3924499d79cd0439c37447aeda4a21226f95645bddcd6becfabe SHA512 368fa5726df8f42b599993681579a9ffd0196480ee3cd0f9f671e8493f3bedd1e1779bdf2beb329e77e0005fa09b816e3385f309490c0f2781568db275d4d17d -DIST serde-1.0.159.crate 77014 BLAKE2B a377be7b7a0624ca9449d962693100d4ee892a252b4fe1326dee2057a214029ecacde05aedb7f0adcebc9815e6b4ea7ec2096ef4db4c55526defdef88a20cc25 SHA512 4e5373b940b5328fabca35759e8a02816c89692b83996c6224be39365b6409688ef2db0eef24219381003133a31da93a41b500a76aeb1b84c05df9a91ff4844d -DIST serde_derive-1.0.159.crate 55039 BLAKE2B 6a239fe8b045c5d61e3503186325e2e4fd3cdbd13e6727e79b673f894f5fdd0872419b0b0f6dae97b9c3dbf737b41bb4816e92fc6a0efa0487350bdb0a8dbb7a SHA512 ee05d53cc4e7a36ba6073cf0be235ff4606e26430ab2a25379a6b915378c8c76584ba77b2fef8125edacf4effffa37adce8e51109e3f5bc6f418987de90fa574 -DIST serde_json-1.0.89.crate 144638 BLAKE2B e296fd2fd3054b81349f246d207de4f7f8072e480a34f1c39afc2d46cdb6b861d1514a8bb64f2f68920e8db43b642814f7f4e989dab95cee62485ca2f8db2e8d SHA512 4bafa5693977e129f5787f2ff10f914e2a7740bf7e631bcdf51b27d0d9e5517873184b56649914371e1881107e7ed0a8fedf487617db334d4a7a4bf95c6c16a3 +DIST serde-1.0.160.crate 77010 BLAKE2B 45d2585bd7e5dcd368b72c29046bd595c577826da4aea6d019adaf07d23adc096db7aba952037dfdac9dbf08a1e92ababd44cc784ace557fe2cfe83beca446cf SHA512 b03eb453ac01a483843829952462de4e8f6d0fa4a244d38a6f476a911e2e991a508121265befd108134ae7cce8a7a40c4d217f80f3e025f9a612a0bf80862306 +DIST serde_derive-1.0.160.crate 55081 BLAKE2B 851cbd173bd758d46c9f545f05a17f65f7b0a2cd353cc75a985072e3772ca6d8395b63208d845dfba231d7cb5fcee97ec0df0bd0df010096577d618fad8bffb0 SHA512 14b2a2ad7131efa7ec95d5a6e7633a9d1e991b046c0b00cce9c3681edd73cb53ff477aa52a430d8465aa8b362696244ea80f12ffbf0e6f98e35605fe4c60f407 +DIST serde_json-1.0.96.crate 144652 BLAKE2B 2754e63479aa07507015dcb0f989d6447f5b2c01e5f02cf8a843d90c90c6fd0acd3ecb68d80d76c249efdabe0bd0670649a9e576269928d2276ba00a3153131d SHA512 39779419900e1d395d81e70cff0e7a688564a66124b08e74da54ac30f389c912707f4bf5e29afab6fa106faf4bf4e0b841f42fef125cf7bec185482ff6bbba0e DIST serde_spanned-0.6.1.crate 7828 BLAKE2B 78d39bca0850b78f0835167ca7786c0bf356d668389aaaf3ace946e91d9a7db8dcba895e833d87e88502b2ba969cac9aad6c1a053c5ecb37f845ebb3b0bb5b32 SHA512 6271aa2af243021002a10cdbd16cb081bf10ab53a61cace104182eb4f28e0c0d7c447b7dcedb350ce78debf5ed6ce6502cb823ae9177d98c5288310094eb22d9 -DIST serde_yaml-0.9.19.crate 63861 BLAKE2B f224d7e70f9d54708af4b7aa616cb4f6fb93c615f46585600bc9de3ce551a82c3b8024904e4a38ed54024554211b8f4bdaa59d140ede4a75096efc18998f358c SHA512 b9c39171860b143e52497dc57bd6fca532649114ea74c4e85f15dc8efe5913c729afa6f40db41ccb16c39fbe5093196df5ff4d920491508810e748b7cdae0a86 +DIST serde_yaml-0.9.21.crate 64229 BLAKE2B 60cc70c9a4ae9070749d7789788ce72b6b57010e962f502f1292e18430d60c7a090b4bc17cec8d819b6cc6f6ce7cc6e466fcd8b73cf0cd132d0eca64ddea5ca8 SHA512 8a68459e0260a7904f6630d168daab7e4e8cd8b9e45b56194379f158bb100e969ec9b581d60cf25ca3422d0d54e7767dbed771e030cd731c7b23680a0b64c155 DIST sha1-0.10.5.crate 12146 BLAKE2B 476a0c365ab639a0ce427856787595865a60339fd6b81a45f879ff9b9112021d2c3a62e0a817b4555951131a7fe257d0c30988631ddddc3d217274c46c79ebe6 SHA512 1046b91a9ea64b90098ee6e16c63f0620dc7c2dc847d200972a3da3c8d1ac61fa9030682099a411cdd24717b64d488e0b1be1cbe8f7bfee26b8c15cf4f8e5e9b DIST sha1_smol-1.0.0.crate 9782 BLAKE2B 214b58f6a8681399b9c925815f4ff48974466b399e96e372c9592cb139ba9306ba162b3b426dc12b585ea15b616fb58a60d253b4d928dde46217de6ddf7d0437 SHA512 75d6809a2aafd47cd5f5888f42283985895a9c82b53ead7529a23cd6f2484f32654094dda7a9e5d93e82afc9d0049938def1bdc28803502d140d06a3496adea7 DIST signal-hook-0.3.14.crate 49446 BLAKE2B 927363305748118e235fc4add923678cce406d6c5041cced17bf2a0602cf5a912d31143a4479672eb12ef86bcb682f54bef8489407aa1c1067542da295fc788f SHA512 32ecf012e46b94d3a87f2e56cd4c03a97886013309a4e52ef3e7769ed14b49ae2814bb6346cfc9766525dcf15db4182d260d3c9311134e3e6f5301c58729442a @@ -272,7 +296,7 @@ DIST signal-hook-registry-1.4.0.crate 17912 BLAKE2B c50ade90e580e5f009832d812299 DIST similar-2.2.0.crate 50996 BLAKE2B 3b518e7603d1776e7b1964f2107a8ddfa70f408d54cba84500aee91c1a2539646c2817541ef830236d7525b2ba509ad56aa58b2dafebebdf493b2ec40d6d1fbc SHA512 54d74e9003014683da0cc2b64788c5ac93d3d7ead418484ee5fab9d65395c8665336fd30cd4c9491fddc4e747959e1fd661862624e9b9c955b44de6e3bda7937 DIST siphasher-0.3.10.crate 9889 BLAKE2B e5dd6d265340b4c9e4266ab1ff3a20f1fb87fd493b2d7b5fba32d26421cc858b38929e4ab96941d0c055375b8acebbd04236d994cadca324500ed05064b9bfc9 SHA512 f90425a2cccc9575d377bb92a765d34653ddef1ac12b7c63dc6d700aaa74b525787e11609061c2d3e44ea56fe0e4b8f93f7b13f0279b5de2e0f710c5caffd4ce DIST slug-0.1.4.crate 6640 BLAKE2B 7ea78865af7de57fdfea3f861da655f9f191bd6048c57655da2fa90675a46263a5d4c085ed4c206b5cbe4595b86d79466765138f0167c141c4ce6580de637422 SHA512 2c85dabcca9400c5e2a3b409997403a6acb17357449df4ef9a7b27511c5a979bfcb1a4d80b7e7c36122233ee6d47e59507631dd6ac9e93d1610f54b9b160ee96 -DIST smallvec-1.9.0.crate 28396 BLAKE2B b04100f0a8db9e7c34a425e665242772c9857c5a4c5f34468a3f1b14f669d5cd21de2d54dc5295a22f52032370e8e989fc61cea3f4e6574ccca5be639c645e74 SHA512 e7158393d4257564eeb8fa53a630fdfc13edb33f3c555e41606edcfdbe9189e5c59c25d255dd21d02d4abad1ab2931e21744ec6c2f91ad4db66f87e748a45e56 +DIST smallvec-1.10.0.crate 31564 BLAKE2B e3e46a0781d3a7892a739b001592d462d0704f010363984c439e3fe4f75aecb9720648aa1e9bcc56bb3be848dd40cee578212439f78f07a807c9441c3c3e0147 SHA512 a09110184582dcc01d7a0d3fa8f74c17bf726935126d3654667b8e9c4bc43ad16ccfd8fa94feae7d9b31913aa7ee030fe5936e4b44a36302b6ce5fe37372a7ae DIST spin-0.9.8.crate 38958 BLAKE2B 8648bf2e48fc618758e3de67f0a493bf3cd22a8d18666164b0d850ed7c0d73650f7b0af783019dd361116bd60c61d24895cdd2c579383cd2700de0e32a23cdae SHA512 b15ad66ba9b308937f34ea166b799676fa45c67224e10cb57530fe33d2a8317ff3e3db3223a3249fa2862cc141c964d2130d3f39910a86ac5ef8aaf8ff4bc6ee DIST static_assertions-1.1.0.crate 18480 BLAKE2B 358dd5ac413d06f62da0388e2016c5fcb8ec68fd7dceb0dbbcb97665c032b7509b7e083c20701648b6a9174485f117c02682ae4bde7ef037e80a85cdf6a0c86e SHA512 46d0e35f77941dee6f60f574c130472248063dc38494c1c4f84f7c048244cc2a58a86fe17c0990e3f0f01406b75ed385a13d00058612b27cf0e867c8d31c92ee DIST strsim-0.10.0.crate 11355 BLAKE2B bcb25ad0a7284e24e4f17ebe0ccb621bdc4118e499b50b094d98aa7e8fcc0b96716c9953c3516ce7ea78309d41d424892ded595259696a5bbffdcb07802b5c2f SHA512 78b318532addfcf5c1ccc1e14539e258aab9d3cd893cc45d82342549bde838c177d90f13c560671f8f32929af47d0b467db35e6876bd7697d8b3f9e055aeeac1 @@ -282,14 +306,14 @@ DIST strum_macros-0.24.0.crate 18785 BLAKE2B c12f6a27db5e258eea99272661c88bfca33 DIST syn-1.0.109.crate 237611 BLAKE2B e827445d00c79a8eeb91eacde472f1987addd6ce9e1df95d7abf6446a77ff4173a8006845f3ae71c1da47193cfb72e0ead9a6d6bad2573be12c17e90735d9ad9 SHA512 12816b9e8cf984024b2fbce9f0ae14cf94d4d2c06f08cc54fb793ce78770bb4cc1288eb7df0ba5e8e937756e1e8e295c53fe07a0c5dde1ea8ddba03b6203b37d DIST syn-2.0.13.crate 240619 BLAKE2B 80536a808aa671424fd940d28013b96988b0f51c29400c5fe1ca7e6789587c670cef7e746a527701641bcb9df73925ab2fa581ad5f877b2d5cdec31590ccf223 SHA512 940ed62d2d5676034292e675ffac2fbc495976ebced6a295cc4da8914e9e9f059275e892e0033bebfd26e3692236c504dd36973e7f62b8e1943f19ec6491d9e1 DIST tar-0.4.38.crate 49158 BLAKE2B a344a65951c5c39212ffa3cfdc7dc68c40a85dbc5e4aa08cfe7cf22f0216443fa081ddba5e8fadc48968cc8e70e08d23391a6caefdf359310e5880741c9d6730 SHA512 4b6458734811e1913cb7e348f32db16f9402fd0e0027ae867db81aecac250b35d07d9478cdae4e27a609ce0f29c9d61683934296cfc3b371119df9f2c380a84f -DIST tempfile-3.3.0.crate 27578 BLAKE2B e98c5ed4c59b6ff411e89ad4eb529bbe15264d6744edca8675c89bfb4397fbbb8da60bbc582da24bf9953afd9bb17cdb22654d933468697e9fa9e9903e6a7c77 SHA512 ba6faafb2dd56d694efe424752099a2efb50316afc0a4db9fdb7620ae3f1a31dfbb2a7b41724878cb977fa11f7568a406bd3b6a4f7cfc0b88b86b2cc616b953e +DIST tempfile-3.4.0.crate 30591 BLAKE2B 5dd7c2e28e9713751e2816e4264100b98795b26aca3d8619cbaed79de7de8af180aa3bba888babed1a1a644161a5a8ef08b4ecdc898e7c583070387cbc3fa357 SHA512 4c7f8b517282f7db295d649d038f0dbd065397abbf9546ed2d9ad19a6eccbc2a189d4601a7a93299cb412e7aa1c2d5bb409f11fe94162889a715303779ee42fc DIST tera-1.17.1.crate 98201 BLAKE2B 317eb9d64c2698b88a5af27902423077b369b7ed6a28380d0e8fdb2ac42adaf6a112e51cf797b0107b6a216e9c9ca56abc29c56b46b2c9e49ef9e5c4df8715d0 SHA512 55cffafa1c75dabe5bc40121c8bf3583b48b18e747c28f4a02756ca972bda861cd7e0e1cd2b12363485849108169935404d9936ac58984e4d579e4dfe418e6ee DIST term_size-0.3.2.crate 10917 BLAKE2B 2302faf4cc03e0e40e4b4b0ca79cea5e70caed8087a16f2b985673476041d19ee6908bb17931b453e63a89e33158f7e01875716879964664487fb26395ff7f49 SHA512 7e820ca667f841719e82cf97e90bd2546cdd7ecd4834c68f8eeadd2e530bb13ced1d058ea7beda5db77eabacfaef64b8c3699c482bd912ff570f6ab78149dc88 DIST termcolor-1.1.3.crate 17242 BLAKE2B 5aef69c0004081bd3cc4d531d13d63627cc02313868c0faab62358d13abfa7b4ba82f142c2801d25a6ae46ecbc8b7bdbeaa21c9105ea3b8950ab6a38cdb88513 SHA512 5838fcbfd70f300cb4b62aab50565db52074c56b152ccc8ac1173e4676c0d5a636271bf5a645a77da6e1d4edbf0091af2cd4dd6d73b85c3d198c760898c06f3a DIST textwrap-0.11.0.crate 17322 BLAKE2B 257428908342774593bbd3528fcdae710712ff54e8a711393a24356d8ba0e16e466a4b20c05f942c48ca76b3b5b5aaa90ec202f782cad892caa8b71ccf124da6 SHA512 f5c0fe4f28ff1a3a0931e8e235b5157a45f67967985bcc752418c5ec3481fca44a8ae4800088889b37e8cd0533f53d3c456d5ffd19b767b3f83a87b49a2e209a DIST textwrap-0.16.0.crate 53722 BLAKE2B 44140aa2dfd5076005749449a56e920418e71e34cb92f1d697eb3f3e7f6fe87b0a3861c8a4050a4a62e03187b6cadc4495e4200bee52ee183541431c73e47209 SHA512 97ae8acece5663e1a6b08b827179e96d5ad0ee67d635888cc3d83454b52cf48fce97eb0eba374ba4747834099c74f43d66d9fec868e84be45369a42c1aaec2c3 -DIST thiserror-1.0.35.crate 18451 BLAKE2B 5ffe5fba8734291cd5304285ef327e4af2f2e2d9c7272d878ac2d3235761deeb789cfe55752b5876bb7949b02f2483ddc8749ce85f2241385249b5a4c479cf79 SHA512 2a55a0cb831cbec2529132a4d230360ba8f89f55b46d1116bb7a3461e92141d58935ff83b6d6e3c8eb99b690752f9aad2281c99dc9b3a242b3cf349d32d61912 -DIST thiserror-impl-1.0.35.crate 15433 BLAKE2B af40ee4a29ae92c02bd7681ff9c3f434462056a7386b3b8d7b370d1fff2235f0b674ed9c282daf48cab760cd6232962593ddd1afdb6de2f40092a42e0fd9ff0f SHA512 8669781bc8165126274813653ec9ccbce2df18f6549415571e5db28f64b7715e11ac3f87128769e14b6b49535aaf6964db6a382e0ac482c35fe983b88f9fb1cc +DIST thiserror-1.0.40.crate 18709 BLAKE2B 8057ebcd11546f8b3ae5d760c1dd1764386f3c29dc43bc7a4aef20604970c65356daef137734e80260051d41e39979943bfda496459696b924a95f455159704c SHA512 db1b1fab3aa61dc6bbc672670eb70cee2f838fa713d3a927022900eddde253108d123bded1aa6df8d314e1aa2f8ff37bc72fc9b0803fe3a56447a64290ab2a91 +DIST thiserror-impl-1.0.40.crate 15138 BLAKE2B 7590428b5a97efde6a823440a9c91e1d1835b20df4ad8a700c1eeddd98516f1203605853fc6dc65528c5fd92480d04f9a8412aa7c20a524cb94435b0a0032f1d SHA512 9027f2d4127864c34d2d92ad3b2753a95893d26f5b2dcdec869884a98232c5304db1700a38112ced258e5f3832218cdea3a4bb21223098e1b20d06af1fd7edd2 DIST thread_local-1.1.4.crate 13106 BLAKE2B 64c19368f8cec46f23b3052759c4c4ef0de50748432790e6ea11b12477239b177d54e60b9046fdcb2f495b8e0b37ad82809d03602edab9fc85cf814e3bd94fe2 SHA512 db7ff3eb88a73d9313dd58d72397614c5aae6be1d64ead7f16535cae2857be3b27d189e7955308591ec64a0d67777fd2a62a2b124ca73facb9a2d8e0458bdbb5 DIST threadpool-1.8.1.crate 14408 BLAKE2B 8bd64ede19184e18460f6b2ad5bc888d6facd5fcaa5b43c35269e35909c9c68a884203f5c4b92619c097ad48c19ec29f73085755ee348cc637233ff3b5b50ccc SHA512 adaa5aecdeec25848af15b160e5b39833978454d834974211bd586d81837f2ce89e5590f08b7e0d4868346cf57056913a5d41bc8bf92b89109ed769cce4a8be0 DIST tiff-0.8.1.crate 1417977 BLAKE2B 4beeb5c46cb598311cfbe486d54a99d99ee2bef5aeb040796c30663dc724e9ba2df82530004e933d82564bc8b1ae89af60799725d8df2647003b9618f5537943 SHA512 8a71882990b07d77ba81a4aef6c8614659ba3a37de845123fe4f4c3c5840a1d2929b4d79133b32e641cd23a856251bec46cdf6eb5e0be72a568761fc4f8ea77d @@ -306,8 +330,8 @@ DIST toml-0.7.3.crate 47227 BLAKE2B 8e0709bfe7c26e15b0c5ed4f3f908977242a52cf813e DIST toml_datetime-0.6.1.crate 10765 BLAKE2B d31627732a1a70dce5142ecf6dafa2b52e56b7df7d865b64dc477affbb2cdf148fe4acdba84373c4fa1b8bb8de06380e2a105c10fe34e7591683697d78b17c78 SHA512 024fc32f5c3b8efa764bc3fc59af710627513ba2e536f01f227d36661eaee099ed78320ea65b15a15e39c0fc30ff2b44c501f96d5a2618034daeb290524694e0 DIST toml_edit-0.19.6.crate 94466 BLAKE2B 66aa78363d6ae892fbd08d914d4c4bfc33bb9efbc4025c04319769e2a2d9d9d0d362b05b1f357430f6b41cbfa96e00b0b15927f62ed19753a52f8afea7d3cbea SHA512 f99c8d9399253e67173d075042301d5de18e61a1a896cab50647e58d82292a4af3915d78cd6eede19c901360bb4447b926245182ce73ffba8c6c98408f5cc07a DIST typenum-1.15.0.crate 40741 BLAKE2B 5752d80396d0a37b0069b98ace9efe96d94ccaf41b33b8149c8b8c6a767537dbffe64251bbf61f3812465ecbc8cb45544f177dc97ac9735d84454282e4d1ed66 SHA512 a3c1ceac85e1aed98d0829449c35f4f36db860218b955b4e5f8f01da1d27ee6213f3c60e2b25c3745dcd67369049da5de737a9473fa9402db99cf7cddeb42288 -DIST typetag-0.2.7.crate 26243 BLAKE2B fd2d23124286d5b24c964d8ff72814a22559a5d9be684dac92271fc55ef6807076a56b9b3a02f664ec9b981fc9b317305f806863daa37504da6e097e07cb311c SHA512 7037bd5bd0a6f4b8bee078ed38c3083c028313b7f9da3124608e9f1883b0becbd47cfcee48efda65cea7301c391875391f779b281a48e7315ac451a6262cc1b9 -DIST typetag-impl-0.2.7.crate 8679 BLAKE2B bcae4391c2df7fe9f08eb508f2e62d8759ff67a14871f6a056599b71113d59d2cb9d11ab8f8eaa184401de5d292ac7d089a420b84355431b889d3494fac23024 SHA512 238b2c6acc6030dfe848419f5fd5c56270ce236bbc4ba9e5471b6654bcc1c8d541eeb5e1d7070bf407b5b3518c7cec64f0a436fd7c9be0e91e60ae65e040bbcd +DIST typetag-0.2.8.crate 26530 BLAKE2B c66731d7695016a75bf277651e82d6c54843b15f423a97d1bf544a8f08108295bcf2e46989a941f14b52fc1e398ae1206e0d5232394656665dedd05dff6f39db SHA512 cbbf36ba03e435a14fb05dfcc0a17841fd2262c53fd0d5417e8e6c41660de633d0ac690a38582e793e83c79a4dab0774f92dc77dd7874b1660c2466d986f8e5e +DIST typetag-impl-0.2.8.crate 8916 BLAKE2B 9dd9d62f421ed0147dde21280117bd57818cfbbb2ea98e983fe6a9b051821890484b29edf30ba7b6b5b907c4afbbc210086ab1dab0814f201ff94b1eda68c0e7 SHA512 7a729224711bf189d7030b63b95ca3a90fad2afee574c5c33e21529cd122e6d83ee931611b1f0a34c5fcf9232a2c5053b2d69e4dc9e8a2f817c3170f12ae31aa DIST ucd-trie-0.1.3.crate 44615 BLAKE2B 491f604d63446dbccf5176333edd159ac56261a9aa76efecf57e9a11ae017a6cba975658a4ffdd310561704fb0831686fb7770b1142b4ac495f01e26de51b099 SHA512 54d43b3824669aa20b725c7747f4fb65bd24e620670c968c1bb0094a0503773acda921b50a0b200c1ea0f84e1e059883c1704bfa5a856d2e2ccda116fb8c3e2b DIST uluru-3.0.0.crate 9864 BLAKE2B 724abaebc88f3c228cc816599e0b248a91c32bfdfdcdfd00113ace0a59de98c109b21b0467fd72abdb331c70749d57f271be36c722ce690ec161c47627e17037 SHA512 f7bea4a92ff58dff7c33ee549082b28dc4638c100c330806b43d11fd384f24cd95d213e690d0797b697609dc9a01f8245667341467fd39027416be8f1c09ba04 DIST uncased-0.9.7.crate 10525 BLAKE2B 9672ab9d97e170e4439c8e1ab57039482e2f761b6495bcd082c8416a6d41599b425a0d3c08eb0354bd9d42da8963c20374a42160e8000c0fc4ead4332dec7260 SHA512 8df20e140570253cef0bc0144dfd3674d26a555faf00435baf1bbc86e9badc46fcab944fff1aa502854f269f9d5d4a0573155386bf49ff24488a33e060e77e21 @@ -319,13 +343,15 @@ DIST unic-ucd-segment-0.9.0.crate 39262 BLAKE2B 73a2f0bfeb17ee731c17e7eb4b7188a8 DIST unic-ucd-version-0.9.0.crate 2246 BLAKE2B c546ee182387db997e6cd699a25bc201fc943306d8e87f96edc1a3dc1cd5ab8ad96f34e8275721a5604765aa6fb6f81e3d8d9eae690d04e5ba71325a769b065b SHA512 153219ff18be02e23ff3dc90bba11fa8c7cda11b972e0d84500d9a0742fb7d84466f2cc63ee278a24098c39634e50742af3317cd942f4ea882ef5a2a8e003d7b DIST unicode-bidi-0.3.8.crate 36575 BLAKE2B c0442dd47a8ee81f575b28e34c9781ccf507b53ea96d1d4df2e8117231e8e67579031e4244a2dacfd6f4c24ec01fbbd4da7c9ab72ad50af51ef56d7d813b6444 SHA512 810b5be48159ecbca542c715496f279518285c3b09f7c39451986f94e6c259fab1057512a2148bf99ba9abf76e861a24456b547cc2273f0b45ed5d3ce9dfe3d5 DIST unicode-bom-1.1.4.crate 10221 BLAKE2B d175111edf436f96d6265b413c8f70b0796e8b0a0fe5bee90a459063dc82dad9837b0d32b00927aa173205b6b32dfedde08c583953b47d332d677ec99fce184d SHA512 c10c42a23822763f1327518d43237b9e2b2d2c9cfd4839d990beb8c85be7cb1cbc528514ec5f4428bd486bd59ce9036a7f980f2aa76c1a28aed2f3a57dcc7343 +DIST unicode-bom-2.0.2.crate 10717 BLAKE2B 9029e45504ff6c535ae6b78a797d5cfb85c2733f16ecacf87abfd69b64460ff75c80eabdb670cec0d8d6d79501879614395db6d7c88ba37584cbfef6bc62a8b8 SHA512 3ba6ac52d2fd356134f0c3be2b29098b189a791b2256d62100687fae07ef9b104be8e7dbc1a496d3f18b3e7349081ca3609d6c1d481dcc2bebd5a4bd52b1197b DIST unicode-ident-1.0.0.crate 34224 BLAKE2B 62100357db87b74e44166a70a1d0f911281fc7410571554e9e89c94f3529920d1d43a8cdf3a3bf163c8acb8e9f575e83a024cb94217b84ecddc582751486954e SHA512 ccdad29fc63f71c507cdf276b02a5bb7fad44dffa123bf04d5b1495eb9c26bd7ec42ad6e11717eb10dc6499693047952c6b766c40d7b0696bd011779649d5fc9 DIST unicode-normalization-0.1.19.crate 107353 BLAKE2B 4c69d50efcae131eb4b91d385a64b49412a11ba913b3c0364cd04ad107d59e31adbda74d34ed13a065d9a7825d79fb740e82a4dc66b7813a9837af4352ac9e16 SHA512 7459e9d2867308cac80a98d8dd0b0cce797e2830ea5ff55b878f7a37a6f5e1f0bc14340e1a29955298d660ba2be57754a1478d74851b1b90576dd5bc4231729f DIST unicode-width-0.1.9.crate 16745 BLAKE2B 38d4b92e47a284d6881a8073089be59a73d82b91efe5522f55be977f95f479890b6c02cd519544729f1b1e62eb21bcfff8c5f5382917f953603b760e39cf1ea7 SHA512 0f5ec46c57e3b5e50cb8430c89db8d9c129e80ca11a9c398b5312bfe95001e19ca3efbfeb01c3ac09c4ce7e26c6ee1f352f7e114ecef78cefd68c54d2d50f5f4 DIST unsafe-libyaml-0.2.7.crate 61483 BLAKE2B d850f08f3b50e2a50dabc3ff0849e424f1f44733b617dd744155f4f9582ca1695415ff75c52f3a554f77911f3a81de1229ede8f3f801ef4bbfd3508e92514726 SHA512 61d5d9ee537316295cb441f82cf9da49dbc3d6da0c6b009ed29de50800866ec082ad184701cfd65e8fb08080a39ded284008065fce75c482ce325280bc7b289f DIST url-2.2.2.crate 68555 BLAKE2B f8e59f784b6c2e16bacfba36ad68670a6af17c16ea3b0866b5aa98e5bf4686cf1b1aac9b1f0a0ea3b89a01e044a2ca37830416f42d147158ea8e88f23fd28ac2 SHA512 f9b6ad99d69ff303283b3fd9e98945fbd6cb411a3d141badcbb3a0566723a451375e6dd5d5357e3eb7a1b5b1ee5756a2347c43817db2de6fe35b9004b090e077 DIST utf8-width-0.1.6.crate 2935 BLAKE2B 819dffbf5203508fa3c30d8904295cc550cb7569d11346d8066061763982c7c78f3a0a7d6733c8e9ed38f943625b3c50f84da87b6f7a1d042db9a34cb57ebdd3 SHA512 2c51e38c7fa2a2c113ff74164067e49e2e615048144f3065c228a965804029447f7a1e65d926facccb8332a2ab2be02fffb7413d8eee6f883d941909b350844c -DIST uuid-0.8.2.crate 37909 BLAKE2B e6ede5f8ae05572d4c55909eb3fe6946de6f10ad9bf71bd357739bc01201bf93f59ccbb3dabcbfd7b3e54b0c98c3b52d21f1bf1877b7283c6df623e9b2b3f33f SHA512 5a1f5ead9a920b9bbc120c02049c24b62ec215765e486d3a15c5015ef49fa506206efb737e6f6555cf6e2eddddfe55f0ca1d7dcfa9aa8bcf3e0ef570a54fa2d8 +DIST utf8parse-0.2.1.crate 13435 BLAKE2B a1c111d7ffc60690f2aaa86f034c66ba1abe4e126f1774a4377d41eba3269369862f57515af387ea785d69a8adf46338b5e53761b5ee6f4f4380473f4d9cab0a SHA512 51fba8f1e7eb74b7020fd831e30a67fc8353ac2ee07335c8c3374a5570ac8117f165f6905d4b7f0360095b7b5ed3e739001d02a8cc3c89195baf2cd679136050 +DIST uuid-1.3.1.crate 53800 BLAKE2B 5d639558825fd0841b2d05873548dd5688629a4efe8d64a7df8e94da7914fbe173f986d1ced0ac9cb537309773c0c36479f518f9846e893a9d1cb71424040c53 SHA512 53f2782cf4ded7bd84614d819e10979c3d60fb05fbbdf6adc8d282ec6a89be829feccc38fff29203260a4b267f332243cbb4d940d3dd83fc210716bf46e8ba44 DIST vcpkg-0.2.15.crate 228735 BLAKE2B 6b6bacd9a7fa38919241f45a97f58cae957e58d3aac99df208a26aa718e4f1644f4ccefa31b09151e5c1952288e0e5837c363918b98c7f55079a948a952c1c50 SHA512 7322a21e8811b2fe4e79e09dc321458068ecdf1953f05d36233f3278ecc0b1dfc64194db7010dd46fcf692285f42475beb090c6c6cac0c8f9fe0eb5c770e3172 DIST vec_map-0.8.2.crate 14466 BLAKE2B 8f109fbff19604b82ea2aa61c952e2ce9b5597ccc8e1ef4e847648e2de08dece8c4debe92889edeccb8d393645fd0b62436b49d236ded7ad181c4a51239a9539 SHA512 4f1ef59bc2c437e79f1f84fe021bce5aa8ccd581f500f3d5776913d5f17d45b03ccee64f5bd03d47656318cfc9344a1f4311079d471fa409a8e4e94c143973f9 DIST version_check-0.9.4.crate 14895 BLAKE2B fa1fa4008af165bfc1fdbe560488afd9d232cfafee94104fbcc4cbc52f234849bff9ddfa88109a1ac682f6d9c1d86b0459893d223f64e65adc08966aaf93dc89 SHA512 b172dc9a3759a4a683ffc39b9a40b03b9974b626a088217de87090466cef695226557c226cf3e469b2b25ee7297b7eb0d7719878cab42457f80146a81943c0c8 @@ -343,20 +369,30 @@ DIST winapi-i686-pc-windows-gnu-0.4.0.crate 2918815 BLAKE2B 4d357e4d30f955297217 DIST winapi-util-0.1.5.crate 10164 BLAKE2B fc800aceae5249a858c806c3e969ef2545766099872d856ebee51c883d9acf1122278db9607d50ca53eac351502b700fd2463900932d342240f97f683d517963 SHA512 7baeb661f397c4693dfa001fdc774b323c51a7c55caad40f2de5112a1cefd1d6151e3df41fa4ee193460a5905917c83d2b1de5fa10b4bd014ad96690af95c0fd DIST winapi-x86_64-pc-windows-gnu-0.4.0.crate 2947998 BLAKE2B 2ad1ea8b5fa07d544e910ccba043ae925269b76b26c9da356305b34b86741dd8b9aff0b9ffe3d562db4fcd7d7c46a11ce9e3168b782b1d89ae6881742b7ede82 SHA512 4a654af6a5d649dc87e00497245096b35a2894ae66f155cb62389902c3b93ddcc5cf7d0d8b9dd97b291d2d80bc686af2298e80abef6ac69883f4a54e79712513 DIST windows-0.43.0.crate 11492640 BLAKE2B 793aa1a7f5ba07b864ee318d529f0003a979c3c5b588860cc317dd6abb499db73ae7ba98e2c18765f7539ffa3eb2af80fdd10d12238b5e0cfa1fbcf535a0ea9e SHA512 810a1a08ea65dad929ebacef8a2c2f13837f09680d97d1e9db7349b00b54a06ebc5fa1c7e9bb5ecf4a2d0cda54d4acd6b89e3eaeb9e7e1ac888ce105cfbcc139 +DIST windows-0.48.0.crate 11864177 BLAKE2B 39c0e4f058f68a829ee08721818a0b04287af20dfe6e03a125b75566b4c8a58b56557d685600f1f9c215811154f9782f12368d42848445d54dcf9bfd6471349d SHA512 7c906f885fa0a730f1cb1ef4e62f5b602a49d44343febe1d38fcd4cbc28e0342766983796042585fe457aa229333558715b6270e378946faa8f398a7ecc2af8c DIST windows-sys-0.36.1.crate 3347053 BLAKE2B 818f7812bd9a55a4e95b3d461fa5fcc14569a159882f950d20fd5a6b7d2a2841f082c0bccaab657f5830549e6286a37d9f8fdf825a42403f543b51e35b2d20d4 SHA512 80973e461bef3be0d0d0c13d02b2129aeb0d0700768d637544315654126f101b39f980738035fe325bd96f549493a2245bd7b82511f833efa7bbcb2f62266001 DIST windows-sys-0.42.0.crate 3006791 BLAKE2B 7a0962364ecc416cf0ae7e49cce1298a12d819003e488f6e77aff1a52710f00378638b6a05db5557a031e1b75659587657971ddc63eaab35495133762f99a7b2 SHA512 b07b119688f3e3ad234d36979947f34e8e19988fb62101afbe18ec8afc9c8a4261128939df8bbb849d5c5982422cb4c50dbcba70f2bf401fbb7c605df1b2b354 +DIST windows-sys-0.48.0.crate 2628884 BLAKE2B 551e900de4f67187ef034b60df9fd0e0d8f82a3100ef28e1eabd543ac129d882dc86ffcc1714071aba09e4cb2ae2d2f07ace1a32b99fd989ce525cf05991edab SHA512 bdf534bcf3face31e9ebe11427a911a53f89f4ff5eaea8cccd094e139bfe14b2aec602b1cab1df774794d999477439d9adc6b627a8e33c20334fc348ba2c47ed +DIST windows-targets-0.48.0.crate 7466 BLAKE2B 4ef6d89ad5b1acf26a1a24348122b86d3943bd95935499bc9032fbc7aa01c04999c723df7fecb4989854cb6b7cceffe141537dfb05a9eaf3902c4cb490533116 SHA512 1d2a29602a1e0846c8577ec9167c5f9972091998a5df449d67b13ad918bf37680e7f97247baf5e3010c166d0b3182418c2925470998b92893ee9469939b91e22 DIST windows_aarch64_gnullvm-0.42.0.crate 357917 BLAKE2B 58da715a46692ed786fa554338d446eaaa50c63ec1d4090cf0690a9211c0221034479e9066cad1c98234410519833826ae3163bf6724c3b06097d5b84d7b9fcf SHA512 8bd60142e8982ddb14dde4e93b9753f9ac34830c05c2a1dd4568377f9a928651bf9f026a0080e5bc7dfa62a45942376736954e3ac800855d00eef0c72929f338 +DIST windows_aarch64_gnullvm-0.48.0.crate 366543 BLAKE2B 9b10f65089fe6da3ff38a1061783f635644ae84f567f891eaced280af68f7ff3919b34289e8850aa34554bb0346903273ff0a7fa743ca8794c2d23a9f1b0185f SHA512 80c5aa74c5669f7acff3882a8e7575f15e8d7cc58c11a1cb731ff423eb9cc9ba43cc6b80e52803c0d44e6a9001655ba87de6f43a9fe858da6d6e3a5c983a2711 DIST windows_aarch64_msvc-0.36.1.crate 661960 BLAKE2B d503150a05c4aa6ec376d1094ad24a7a4b3579d8f60cae65f4a98adfe830dd776c8996d5c3acfbfca1a69598475b918b5de2a162e3253b0b28cd6aa17de2dc13 SHA512 d0c352c78caec9c71bbaa1a688baab8f39a33c903c0492b19398c76e08194183e254ecd3a8b24af3e7e5e1d9d97373dcbab54499236829898a4fd153cfde2ccf DIST windows_aarch64_msvc-0.42.0.crate 659424 BLAKE2B a8c9a288767756f2086bd0706774cdcce5c8639431ad76ed122d4b6d13c936ca8fb1a463d34835b3a2728f4444e2f4b91ee772f00c54f348094da69c05ce6b93 SHA512 20c0840adec84dde03b143e5b82bb0003fee675310487f0071a81ed7f40ee647c4018ccb9ebdbc4aeada717ec8600a30dfb15510c6b336f07becdb7167668fd0 +DIST windows_aarch64_msvc-0.48.0.crate 671479 BLAKE2B 0c80f210437628e1d878d1d14e884fea532c7539b3030aa76d46f27d02372c715c6e33d7efdbbd770666472b44a66c30711a33d819ede9cdcd51c96355802d45 SHA512 617e47a7202f1db4dbd3ecea509682135ccd85e3a458c0331b9bc7aa1d84e5756b59c881cb098d5c6d4c951248d13c8253a8e8a50938e1997bd19ceba77262df DIST windows_i686_gnu-0.36.1.crate 818115 BLAKE2B fdb78cf88e1049d1ed6c474f870dfd1ff37b48bc24726d754cfec5b3e77075162f291f93aa709c07c9fa38ccb21a6c31cb5149dabc2cc8ad8a85c03408384a0b SHA512 e2c60e6639beb879472a06ed4462667eb4a78385df6bcde1ca579af759cf2b4ac70e84f7dd7b736e7fbd1b129061555671fed4b83bcd81a6083cc013963194a5 DIST windows_i686_gnu-0.42.0.crate 728570 BLAKE2B b72079610b5c4fc798a79fa757b19f8c8baceaf7f4ce824193a65fadaac988ebdff1719a74d676b7dd017e11ceb029402bbac4e55c35206172e15a9bef422f78 SHA512 a24dd1ba5eb7d5231853bebadfde0575ae9071a565868d2f3d1bc6ec0a87380c569a621f0cba2552af7a1e46ac62f09f87cfbce3f674be06be1a7c1d3f421474 +DIST windows_i686_gnu-0.48.0.crate 741490 BLAKE2B 5a4a584f8d8ee5bbd2d4c5b6749a66f2d43fc9e4ef90faab2227709b270f0d46fc26578c029edd96877c71309316ddb32d91c39f46d88f9a484c614f866e3dbe SHA512 15149fdd48b61b6d993acd392dbd353d0280d984ea88745217e4207937174bb90cdd9701f69ff0fe06a842f03607cbb57937d20d79ab577181e605a8a8fadc68 DIST windows_i686_msvc-0.36.1.crate 724575 BLAKE2B cf964bec007d8432e2009644cf7f89ea7d910ccf9512c067b7bf5c6c825208ce4a36e9864c0cbca137f523983eb46e58e4bd01054cecd7ac7126d2ba9f67ac0c SHA512 02bb1507981229422498ce29f6c777d5e412358040128f84b09d948ccddf0461b078a0a20cc7f6ab7da8595121bb369453ae9ea1f0506aab715662e8c631e737 DIST windows_i686_msvc-0.42.0.crate 717477 BLAKE2B a37e068f45590f0c31349acbdb56848106d6de0e1f8030e6bd5e1e174bd9a46737db54fbd61de99054e5e8c5263eaef0508c440f43c39dca82baa77792ff2743 SHA512 740400e2b11c1d177f7f37f844cd2a0f84b97a5adb03a7656661deb026b593a799ace8da1f9013ba9f74446fc43260d01dff7d4be607129ec7d602f341b2b4d1 +DIST windows_i686_msvc-0.48.0.crate 730056 BLAKE2B 4e4ad6ed94948145199c2ed50fc65e4af08455a0fd058bb0f763d481f30b029f99a2b8dbac087b29e762500a19270f6683baf62ba99d141eb002a5b0b5c8ea05 SHA512 11a50800e709712dbea907275bc0faa46d2eb2969118445ed5b932d9c5957a09592a5b26a40e554c1f5fd56c6d074a07637e6f88eedd2224e1001e62df7b469b DIST windows_x86_64_gnu-0.36.1.crate 790934 BLAKE2B 9dec5d966bdc89efbc81989acca242d519f51676ec37487df2bfacd6bfbc5a8de2871be72c5b96a073a899c666e3a39aa60d493e7df39fa90efe869fb744a332 SHA512 598b69e4f2cd3d68f910d526a66dadb465ff30a8c261c9a4455aa1c5b952d23c04f8edaa063cd16fb43564c116a13f06d607f3a0a9c7495054b8bfe1c04d1865 DIST windows_x86_64_gnu-0.42.0.crate 692493 BLAKE2B e00eae443cfed3004809244654268ee1bec17975166ca876dd393dcfe8a2ef0ca65d81b04c8f513f95a0fae9405ba796c085951bc2c597d252a3122f7dbf6425 SHA512 7df7ee0c345f0a2c37d7f9ec3a2824116b4d7a943bf245787509e67809a4f31ebb1862e212efb2d943d82ccef77a716437cdc61004396ca86e95e688368c6dae +DIST windows_x86_64_gnu-0.48.0.crate 703595 BLAKE2B b227efb78a99c43d0538cceadada3fa1840df29adc665787fdcf845b73e77d782da8a9f9aa602e1da61401b550d0107176feb6c397c922a6240b38cc8f04a180 SHA512 38eff1164fb37dbd2bbe53404b20cba92de84cbbd5e4eb9ad60d51fb43d6fdb8b87a1488e2c88ebd4b3ff3b708f93fdc05df4b14a285d3ff11c33ff0d9828602 DIST windows_x86_64_gnullvm-0.42.0.crate 357906 BLAKE2B 02e08e696f18105f0c131fcf5db046ec945cb21ede76d2da477589e15d062ca6f04906dac80fdd2ef9fcda9244490aad86b401d0156eb6b65ba3599098e8cfe7 SHA512 242e11b4a0d50a0ffe8d0e26e971de30ef4d29260ae6749403d39cb4278297a240c1ec4112bb38151cbb11a6f3c8a743e84cd75b6a76adfeaee8e623649c9ecf +DIST windows_x86_64_gnullvm-0.48.0.crate 366536 BLAKE2B 295dc3aef18c604d1579978045f4058b1a315083a8ab842bddf5800ec3460b1530ad88c3464acab712a229290aca235810de8a3b6a253859a354d9fa97277e58 SHA512 8d82fad4c8445030844708aa026a62f1ca43362b8e15f14b0d226c7e9cda04ffa0715087b6a025dbb738e8891de24fcc4a2df071a532917cf03c4a46f934f396 DIST windows_x86_64_msvc-0.36.1.crate 661999 BLAKE2B 4cf967f10d4ce148bac967598168752d1996b4ddf5278a8fca53360566c37c1a014bfb4dfdc0ae2d96e01196c42eb4906ea80d8e9dd23b9e9f3163631c9e253e SHA512 89c22ed51a74f531662d80ae0fa5e0215728db1e6caf3c13eaeba95a93548b43c00b8474f52553ac866ac83c203b6c22dc44fbc870e882a4c9c97ba54b87c631 DIST windows_x86_64_msvc-0.42.0.crate 659377 BLAKE2B f01dbfcb86dcb7301790a1a704661864378021cbb92b147fdfcee978b7011bb770441c481b439985c298816c524c6a11f21a7bd81115e65882fa000a28566bcd SHA512 94d6554ae293785d2fc9dc9d53480c98bc08ab2b78bd8684a0606e7e0ec156a454c1a653d214c21de382bc7ab5d898e45000ed73e6110f679da513ffabbf3cb9 +DIST windows_x86_64_msvc-0.48.0.crate 671422 BLAKE2B abb063610dcc38581657133182b7d9efeed5553df67bd2bd6f30f1668a645186e4824f9ef556a5abc84ace10b1b437b6325bbda6df5a64ce880d7dcb743ac786 SHA512 6e598b8e3ac54912a8ebac01b0dd2c58fd282072527d7fedc7f6ebecdfb7dcb09ae46c22293bc0117849437f8b053db5e90406e7a38276f0f0afd06be3966795 DIST winnow-0.3.5.crate 176638 BLAKE2B 2caff1e0b16ed7aa084a4d09dc3d4c4061ad3455af1e54cfdd0715b35b0aa293da4dfe17318a0191c6eb8ff1908520d47b7ccdf0ef04107807e65479905b414d SHA512 e54b72098a8bf7f1adf0aff22da65ce2d8586433acfc39d0117c62868ba14bd6a1a8bbbceebb5f625ba6fb761d5535ccde7078ac45b6e90238d3886ba27ca731 DIST winres-0.1.12.crate 19772 BLAKE2B 645fc16e49061cd98c77217b991cb774151f7f8bd6df44cee622bcba121d2645aaf775d56c3e85de6278b193ea6a36256821799c33ba081f931d87ffa0e038f1 SHA512 9f61edafb4a262b56d130e48ac6bba94f5a432bf0a8c20243e6c8fa98c3f9e0d2ab00a77b35a2e49dd63585a272af597e236e089641b5f488760ac42d22f5a67 DIST xz2-0.1.7.crate 23892 BLAKE2B fd4b65cc82405f28a3d9fcc3db9dbffac41ae8ec7e767f3405bc9c7e45000b529cd571f72a76e41f2fb9866e7af8ab37d9f1ab8e6f14652495d306ba0a745879 SHA512 9969ae958b157f3d49708bd00640e57fe7c3826add2871575bdac03e6064aabd28392e3062bfbb833752df374195c50b19dc6b6c08ac41455c492213fb91fc74 diff --git a/app-misc/onefetch/files/onefetch-2.17.1-fix-missing-git-repo.patch b/app-misc/onefetch/files/onefetch-2.17.1-fix-missing-git-repo.patch new file mode 100644 index 0000000000..6e60b4b1b8 --- /dev/null +++ b/app-misc/onefetch/files/onefetch-2.17.1-fix-missing-git-repo.patch @@ -0,0 +1,170 @@ +Deduplicate the git repository setup function across integration +tests, unit tests and benchmarking and fix unit tests +test_info_style_info and test_info_style_subtitle which depend +on it. +Enable the corresponding feature "test-utils" by default when +running tests. +https://github.com/o2sh/onefetch/pull/1034 +--- a/Cargo.lock ++++ b/Cargo.lock +@@ -2481,6 +2481,7 @@ dependencies = [ + "insta", + "lazy_static", + "num-format", ++ "onefetch", + "onefetch-ascii", + "onefetch-image", + "onefetch-manifest", +--- a/Cargo.toml ++++ b/Cargo.toml +@@ -29,6 +29,7 @@ gix-features-for-configuration-only = { package = "gix-features", version = "0.2 + gix = { version = "0.44.1", default-features = false, features = [ + "max-performance-safe", + ] } ++gix-testtools = { version = "0.11.0", optional = true } + git2 = { version = "0.17.1", default-features = false } + human-panic = "1.1.4" + image = "0.24.6" +@@ -52,13 +53,18 @@ yaml-rust = "0.4.5" + + [dev-dependencies] + criterion = "0.4.0" +-gix-testtools = "0.11.0" + insta = { version = "1.29.0", features = ["json", "redactions"] } ++onefetch = { path = ".", features = ["test-utils"] } + pretty_assertions = "1.3.0" + + [[bench]] + name = "repo" + harness = false ++required-features = ["test-utils"] ++ ++[[test]] ++name = "repo" ++required-features = ["test-utils"] + + [build-dependencies] + lazy_static = "1" +@@ -75,3 +81,4 @@ enable-ansi-support = "0.2.1" + + [features] + fail-on-deprecated = [] ++test-utils = ["gix-testtools"] +--- a/benches/repo.rs ++++ b/benches/repo.rs +@@ -1,11 +1,9 @@ + use criterion::{black_box, criterion_group, criterion_main, Criterion}; +-use gix::{open, ThreadSafeRepository}; + use onefetch::{cli::CliOptions, info::Info}; ++use onefetch::utils::repo; + + fn bench_repo_info(c: &mut Criterion) { +- let name = "repo.sh".to_string(); +- let repo_path = gix_testtools::scripted_fixture_read_only(name).unwrap(); +- let repo = ThreadSafeRepository::open_opts(repo_path, open::Options::isolated()).unwrap(); ++ let repo = repo("repo.sh").unwrap(); + let config: CliOptions = CliOptions { + input: repo.path().to_path_buf(), + ..Default::default() +--- a/src/info/mod.rs ++++ b/src/info/mod.rs +@@ -309,7 +309,10 @@ fn get_style(is_bold: bool, color: DynColors) -> Style { + + #[cfg(test)] + mod tests { ++ #[cfg(feature = "test-utils")] + use crate::cli::TextForamttingCliOptions; ++ #[cfg(feature = "test-utils")] ++ use crate::utils::repo; + + use super::*; + use owo_colors::AnsiColors; +@@ -349,8 +352,11 @@ mod tests { + } + + #[test] ++ #[cfg(feature = "test-utils")] + fn test_info_style_info() -> Result<()> { ++ let repo = repo("basic_repo.sh")?; + let config: CliOptions = CliOptions { ++ input: repo.path().to_path_buf(), + text_formatting: TextForamttingCliOptions { + text_colors: vec![0, 0, 0, 0, 0, 0], + ..Default::default() +@@ -370,8 +376,11 @@ mod tests { + } + + #[test] ++ #[cfg(feature = "test-utils")] + fn test_info_style_subtitle() -> Result<()> { ++ let repo = repo("basic_repo.sh")?; + let config: CliOptions = CliOptions { ++ input: repo.path().to_path_buf(), + text_formatting: TextForamttingCliOptions { + text_colors: vec![0, 0, 0, 0, 15, 0], + no_bold: false, +--- a/src/info/title.rs ++++ b/src/info/title.rs +@@ -84,19 +84,13 @@ impl std::fmt::Display for Title { + } + } + #[cfg(test)] ++#[cfg(feature = "test-utils")] + mod tests { +- use super::*; + use anyhow::Result; +- use gix::{open, Repository, ThreadSafeRepository}; ++ use crate::utils::repo; ++ use super::*; + use owo_colors::AnsiColors; + +- fn repo(name: &str) -> Result { +- let name = name.to_string(); +- let repo_path = gix_testtools::scripted_fixture_read_only(name).unwrap(); +- let safe_repo = ThreadSafeRepository::open_opts(repo_path, open::Options::isolated())?; +- Ok(safe_repo.to_thread_local()) +- } +- + #[test] + fn test_get_git_username() -> Result<()> { + let repo = repo("basic_repo.sh")?; +--- a/src/lib.rs ++++ b/src/lib.rs +@@ -2,3 +2,7 @@ + pub mod cli; + pub mod info; + pub mod ui; ++// Provide the git repo setup function for benchmarks, integration tests and ++// some unit tests via a library module to avoid code duplication. ++#[cfg(feature = "test-utils")] ++pub mod utils; +--- /dev/null ++++ b/src/utils.rs +@@ -0,0 +1,9 @@ ++use anyhow::Result; ++use gix::{open, Repository, ThreadSafeRepository}; ++ ++pub fn repo(name: &str) -> Result { ++ let name = name.to_string(); ++ let repo_path = gix_testtools::scripted_fixture_read_only(name).unwrap(); ++ let safe_repo = ThreadSafeRepository::open_opts(repo_path, open::Options::isolated())?; ++ Ok(safe_repo.to_thread_local()) ++} +--- a/tests/repo.rs ++++ b/tests/repo.rs +@@ -1,14 +1,7 @@ + use anyhow::Result; +-use gix::{open, Repository, ThreadSafeRepository}; + use onefetch::cli::{CliOptions, TextForamttingCliOptions}; + use onefetch::info::{get_work_dir, Info}; +- +-fn repo(name: &str) -> Result { +- let name = name.to_string(); +- let repo_path = gix_testtools::scripted_fixture_read_only(name).unwrap(); +- let safe_repo = ThreadSafeRepository::open_opts(repo_path, open::Options::isolated())?; +- Ok(safe_repo.to_thread_local()) +-} ++use onefetch::utils::repo; + + #[test] + fn test_bare_repo() -> Result<()> { diff --git a/app-misc/onefetch/onefetch-2.17.0.ebuild b/app-misc/onefetch/onefetch-2.17.1.ebuild similarity index 78% rename from app-misc/onefetch/onefetch-2.17.0.ebuild rename to app-misc/onefetch/onefetch-2.17.1.ebuild index aee0c2b91e..d4fc3af15c 100644 --- a/app-misc/onefetch/onefetch-2.17.0.ebuild +++ b/app-misc/onefetch/onefetch-2.17.1.ebuild @@ -6,28 +6,34 @@ EAPI=8 CRATES=" - addr2line-0.17.0 + addr2line-0.19.0 adler-1.0.2 ahash-0.8.1 aho-corasick-0.7.18 android_system_properties-0.1.4 anes-0.1.6 ansi_term-0.12.1 - anyhow-1.0.66 + anstream-0.3.1 + anstyle-1.0.0 + anstyle-parse-0.2.0 + anstyle-query-1.0.0 + anstyle-wincon-1.0.1 + anyhow-1.0.70 arc-swap-1.5.0 arrayvec-0.7.2 askalono-0.4.6 atoi-2.0.0 atty-0.2.14 autocfg-1.1.0 - backtrace-0.3.66 + backtrace-0.3.67 base64-0.21.0 bit_field-0.10.1 bitflags-1.3.2 + bitflags-2.2.1 block-buffer-0.10.3 bstr-0.2.17 bstr-1.3.0 - btoi-0.4.2 + btoi-0.4.3 bumpalo-3.12.0 byte-unit-4.0.19 bytecount-0.6.3 @@ -47,17 +53,17 @@ CRATES=" ciborium-ll-0.2.0 clap-2.34.0 clap-3.2.23 - clap-4.1.6 + clap-4.2.4 + clap_builder-4.2.4 clap_complete-4.1.4 - clap_derive-4.1.0 + clap_derive-4.2.0 clap_lex-0.2.4 - clap_lex-0.3.0 + clap_lex-0.4.1 clru-0.6.1 cmake-0.1.48 color_quant-1.1.0 + colorchoice-1.0.0 compact_str-0.6.1 - concolor-0.0.11 - concolor-query-0.1.0 console-0.15.5 core-foundation-sys-0.8.3 cpufeatures-0.2.5 @@ -92,11 +98,12 @@ CRATES=" env_logger-0.8.4 erased-serde-0.3.24 errno-0.2.8 + errno-0.3.1 errno-dragonfly-0.1.2 exr-1.5.2 - fastrand-1.8.0 + fastrand-1.9.0 filetime-0.2.16 - flate2-1.0.23 + flate2-1.0.25 flume-0.10.12 fnv-1.0.7 form_urlencoded-1.0.1 @@ -107,45 +114,63 @@ CRATES=" getrandom-0.2.8 ghost-0.1.7 gif-0.12.0 - gimli-0.26.2 - git-features-0.23.1 - git-hash-0.9.11 - git2-0.16.1 - gix-0.36.1 + gimli-0.27.2 + git2-0.17.1 + gix-0.44.1 gix-actor-0.17.2 + gix-actor-0.20.0 + gix-attributes-0.12.0 gix-attributes-0.8.3 - gix-bitmap-0.2.1 + gix-bitmap-0.2.3 gix-chunk-0.4.1 gix-command-0.2.4 - gix-config-0.16.2 - gix-config-value-0.10.1 - gix-credentials-0.9.2 + gix-config-0.22.0 + gix-config-value-0.12.0 + gix-credentials-0.14.0 gix-date-0.4.3 - gix-diff-0.26.1 + gix-date-0.5.0 + gix-diff-0.29.0 gix-discover-0.13.1 + gix-discover-0.18.0 gix-features-0.26.5 + gix-features-0.29.0 + gix-fs-0.1.1 gix-glob-0.5.5 + gix-glob-0.7.0 gix-hash-0.10.3 + gix-hash-0.11.1 gix-hashtable-0.1.1 + gix-hashtable-0.2.0 + gix-ignore-0.2.0 gix-index-0.12.4 + gix-index-0.16.0 gix-lock-3.0.2 - gix-mailmap-0.9.3 + gix-lock-5.0.1 + gix-mailmap-0.12.0 gix-object-0.26.2 - gix-odb-0.40.2 - gix-pack-0.30.3 - gix-path-0.7.2 - gix-prompt-0.3.2 - gix-quote-0.4.2 + gix-object-0.29.1 + gix-odb-0.45.0 + gix-pack-0.35.0 + gix-path-0.7.4 + gix-path-0.8.0 + gix-prompt-0.5.0 + gix-quote-0.4.3 gix-ref-0.24.1 - gix-refspec-0.7.3 - gix-revision-0.10.4 + gix-ref-0.29.0 + gix-refspec-0.10.1 + gix-revision-0.13.0 gix-sec-0.6.2 + gix-sec-0.8.0 gix-tempfile-3.0.2 + gix-tempfile-5.0.3 gix-testtools-0.11.0 gix-traverse-0.22.1 - gix-url-0.13.3 - gix-validate-0.7.3 + gix-traverse-0.25.0 + gix-url-0.18.0 + gix-utils-0.1.1 + gix-validate-0.7.4 gix-worktree-0.12.3 + gix-worktree-0.17.0 globset-0.4.8 globwalk-0.8.1 grep-matcher-0.1.5 @@ -156,10 +181,10 @@ CRATES=" hashbrown-0.13.1 heck-0.4.0 hermit-abi-0.1.19 - hermit-abi-0.2.6 + hermit-abi-0.3.1 hex-0.4.3 - home-0.5.3 - human-panic-1.1.0 + home-0.5.5 + human-panic-1.1.4 human_format-1.0.3 humansize-1.1.1 humantime-2.1.0 @@ -169,12 +194,12 @@ CRATES=" image-0.24.6 imara-diff-0.1.5 indexmap-1.9.1 - insta-1.28.0 + insta-1.29.0 instant-0.1.12 inventory-0.3.3 io-close-0.3.7 - io-lifetimes-1.0.3 - is-terminal-0.4.2 + io-lifetimes-1.0.10 + is-terminal-0.4.7 is_ci-1.1.1 itertools-0.10.5 itoa-1.0.4 @@ -182,13 +207,16 @@ CRATES=" jpeg-decoder-0.3.0 js-sys-0.3.60 jwalk-0.8.1 + kstring-2.0.0 lazy_static-1.4.0 lebe-0.5.2 - libc-0.2.137 - libgit2-sys-0.14.2+1.5.1 - libz-sys-1.1.6 + libc-0.2.142 + libgit2-sys-0.15.1+1.6.4 + libz-ng-sys-1.1.8 + libz-sys-1.1.8 linked-hash-map-0.5.6 linux-raw-sys-0.1.3 + linux-raw-sys-0.3.4 lock_api-0.4.7 log-0.4.17 lzma-sys-0.1.19 @@ -198,10 +226,8 @@ CRATES=" memmap2-0.5.3 memoffset-0.6.5 minimal-lexical-0.2.1 - miniz_oxide-0.5.1 miniz_oxide-0.6.2 nanorand-0.7.0 - nix-0.26.1 nom-7.1.1 npm-package-json-0.1.3 num-format-0.4.4 @@ -210,10 +236,10 @@ CRATES=" num-traits-0.2.15 num_cpus-1.13.1 num_threads-0.1.6 - object-0.29.0 - once_cell-1.15.0 + object-0.30.3 + once_cell-1.17.1 oorandom-11.1.3 - os_info-2.0.8 + os_info-3.7.0 os_str_bytes-6.0.1 output_vt100-0.1.3 owo-colors-3.5.0 @@ -241,10 +267,8 @@ CRATES=" png-0.17.7 ppv-lite86-0.2.16 pretty_assertions-1.3.0 - proc-macro-error-1.0.4 - proc-macro-error-attr-1.0.4 proc-macro2-1.0.56 - prodash-23.0.0 + prodash-23.1.2 qoi-0.4.1 quick-error-2.0.1 quote-1.0.26 @@ -258,20 +282,20 @@ CRATES=" regex-1.6.0 regex-automata-0.1.10 regex-syntax-0.6.27 - remove_dir_all-0.5.3 rmp-0.8.11 rmp-serde-0.14.4 rustc-demangle-0.1.21 rustix-0.36.4 + rustix-0.37.15 rustversion-1.0.6 ryu-1.0.10 same-file-1.0.6 scopeguard-1.1.0 - serde-1.0.159 - serde_derive-1.0.159 - serde_json-1.0.89 + serde-1.0.160 + serde_derive-1.0.160 + serde_json-1.0.96 serde_spanned-0.6.1 - serde_yaml-0.9.19 + serde_yaml-0.9.21 sha1-0.10.5 sha1_smol-1.0.0 signal-hook-0.3.14 @@ -279,7 +303,7 @@ CRATES=" similar-2.2.0 siphasher-0.3.10 slug-0.1.4 - smallvec-1.9.0 + smallvec-1.10.0 spin-0.9.8 static_assertions-1.1.0 strsim-0.10.0 @@ -289,14 +313,14 @@ CRATES=" syn-1.0.109 syn-2.0.13 tar-0.4.38 - tempfile-3.3.0 + tempfile-3.4.0 tera-1.17.1 term_size-0.3.2 termcolor-1.1.3 textwrap-0.11.0 textwrap-0.16.0 - thiserror-1.0.35 - thiserror-impl-1.0.35 + thiserror-1.0.40 + thiserror-impl-1.0.40 thread_local-1.1.4 threadpool-1.8.1 tiff-0.8.1 @@ -313,8 +337,8 @@ CRATES=" toml_datetime-0.6.1 toml_edit-0.19.6 typenum-1.15.0 - typetag-0.2.7 - typetag-impl-0.2.7 + typetag-0.2.8 + typetag-impl-0.2.8 ucd-trie-0.1.3 uluru-3.0.0 uncased-0.9.7 @@ -326,13 +350,15 @@ CRATES=" unic-ucd-version-0.9.0 unicode-bidi-0.3.8 unicode-bom-1.1.4 + unicode-bom-2.0.2 unicode-ident-1.0.0 unicode-normalization-0.1.19 unicode-width-0.1.9 unsafe-libyaml-0.2.7 url-2.2.2 utf8-width-0.1.6 - uuid-0.8.2 + utf8parse-0.2.1 + uuid-1.3.1 vcpkg-0.2.15 vec_map-0.8.2 version_check-0.9.4 @@ -350,20 +376,30 @@ CRATES=" winapi-util-0.1.5 winapi-x86_64-pc-windows-gnu-0.4.0 windows-0.43.0 + windows-0.48.0 windows-sys-0.36.1 windows-sys-0.42.0 + windows-sys-0.48.0 + windows-targets-0.48.0 windows_aarch64_gnullvm-0.42.0 + windows_aarch64_gnullvm-0.48.0 windows_aarch64_msvc-0.36.1 windows_aarch64_msvc-0.42.0 + windows_aarch64_msvc-0.48.0 windows_i686_gnu-0.36.1 windows_i686_gnu-0.42.0 + windows_i686_gnu-0.48.0 windows_i686_msvc-0.36.1 windows_i686_msvc-0.42.0 + windows_i686_msvc-0.48.0 windows_x86_64_gnu-0.36.1 windows_x86_64_gnu-0.42.0 + windows_x86_64_gnu-0.48.0 windows_x86_64_gnullvm-0.42.0 + windows_x86_64_gnullvm-0.48.0 windows_x86_64_msvc-0.36.1 windows_x86_64_msvc-0.42.0 + windows_x86_64_msvc-0.48.0 winnow-0.3.5 winres-0.1.12 xz2-0.1.7 @@ -392,6 +428,9 @@ SLOT="0" KEYWORDS="~amd64" IUSE="test" RESTRICT="!test? ( test )" +PATCHES=( + "${FILESDIR}"/${P}-fix-missing-git-repo.patch +) BDEPEND="test? ( dev-vcs/git )" QA_FLAGS_IGNORED="usr/bin/onefetch" diff --git a/app-misc/termdown/termdown-1.18.0.ebuild b/app-misc/termdown/termdown-1.18.0.ebuild index 84b35bb17d..d4798f9b05 100644 --- a/app-misc/termdown/termdown-1.18.0.ebuild +++ b/app-misc/termdown/termdown-1.18.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools PYTHON_REQ_USE="ncurses(+)" inherit distutils-r1 optfeature diff --git a/app-misc/vocabsieve/vocabsieve-0.10.1.ebuild b/app-misc/vocabsieve/vocabsieve-0.10.1.ebuild index 5fb2947790..4c1cb00a77 100644 --- a/app-misc/vocabsieve/vocabsieve-0.10.1.ebuild +++ b/app-misc/vocabsieve/vocabsieve-0.10.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi diff --git a/app-office/pyspread/pyspread-2.1.1.ebuild b/app-office/pyspread/pyspread-2.1.1.ebuild index 4f1cd29e0a..e29c25f226 100644 --- a/app-office/pyspread/pyspread-2.1.1.ebuild +++ b/app-office/pyspread/pyspread-2.1.1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit xdg desktop distutils-r1 diff --git a/app-portage/pacvis/pacvis-0.4.2.ebuild b/app-portage/pacvis/pacvis-0.4.2.ebuild index bfe081ce84..c0cea507b0 100644 --- a/app-portage/pacvis/pacvis-0.4.2.ebuild +++ b/app-portage/pacvis/pacvis-0.4.2.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 diff --git a/app-portage/portage-lostfiles/portage-lostfiles-0.5.2.ebuild b/app-portage/portage-lostfiles/portage-lostfiles-0.5.2.ebuild index f0cd4ab7ce..348963c9a6 100644 --- a/app-portage/portage-lostfiles/portage-lostfiles-0.5.2.ebuild +++ b/app-portage/portage-lostfiles/portage-lostfiles-0.5.2.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 DESCRIPTION="A simple script to identify files not tracked by Portage package manager" diff --git a/app-shells/pokemon-colorscripts/pokemon-colorscripts-9999.ebuild b/app-shells/pokemon-colorscripts/pokemon-colorscripts-9999.ebuild index f5a6704e4a..4fa9fb5430 100644 --- a/app-shells/pokemon-colorscripts/pokemon-colorscripts-9999.ebuild +++ b/app-shells/pokemon-colorscripts/pokemon-colorscripts-9999.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=(python3_{9,10,11}) +PYTHON_COMPAT=(python3_{10,11}) inherit git-r3 python-single-r1 diff --git a/app-shells/zsh-history-to-fish/zsh-history-to-fish-0.3.0-r1.ebuild b/app-shells/zsh-history-to-fish/zsh-history-to-fish-0.3.0-r1.ebuild index 81c61cc042..f902ae1153 100644 --- a/app-shells/zsh-history-to-fish/zsh-history-to-fish-0.3.0-r1.ebuild +++ b/app-shells/zsh-history-to-fish/zsh-history-to-fish-0.3.0-r1.ebuild @@ -4,7 +4,7 @@ EAPI=8 PYPI_NO_NORMALIZE=1 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 pypi diff --git a/app-text/OCRmyPDF/OCRmyPDF-14.0.1-r4.ebuild b/app-text/OCRmyPDF/OCRmyPDF-14.0.1-r4.ebuild index 59a7f5bd34..a87af6dd2e 100644 --- a/app-text/OCRmyPDF/OCRmyPDF-14.0.1-r4.ebuild +++ b/app-text/OCRmyPDF/OCRmyPDF-14.0.1-r4.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 optfeature shell-completion diff --git a/app-text/OCRmyPDF/OCRmyPDF-14.1.0.ebuild b/app-text/OCRmyPDF/OCRmyPDF-14.1.0.ebuild index 2c6df65bbe..b5d6ab23a7 100644 --- a/app-text/OCRmyPDF/OCRmyPDF-14.1.0.ebuild +++ b/app-text/OCRmyPDF/OCRmyPDF-14.1.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 optfeature shell-completion diff --git a/app-text/cmark-gfm/cmark-gfm-0.29.0.3.ebuild b/app-text/cmark-gfm/cmark-gfm-0.29.0.3.ebuild index 914ab4379e..479034d997 100644 --- a/app-text/cmark-gfm/cmark-gfm-0.29.0.3.ebuild +++ b/app-text/cmark-gfm/cmark-gfm-0.29.0.3.ebuild @@ -4,7 +4,7 @@ EAPI=8 MYPV="$(ver_rs 3 '.gfm.')" -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit cmake python-any-r1 diff --git a/app-text/komikku/komikku-1.18.0.ebuild b/app-text/komikku/komikku-1.18.0.ebuild index f0bb3f7928..f4f1891809 100644 --- a/app-text/komikku/komikku-1.18.0.ebuild +++ b/app-text/komikku/komikku-1.18.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) PYTHON_REQ_USE="sqlite(+),ssl(+)" DISTUTILS_USE_PEP517=no DISTUTILS_SINGLE_IMPL=1 diff --git a/app-text/komikku/komikku-1.19.0.ebuild b/app-text/komikku/komikku-1.19.0.ebuild index f0bb3f7928..f4f1891809 100644 --- a/app-text/komikku/komikku-1.19.0.ebuild +++ b/app-text/komikku/komikku-1.19.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) PYTHON_REQ_USE="sqlite(+),ssl(+)" DISTUTILS_USE_PEP517=no DISTUTILS_SINGLE_IMPL=1 diff --git a/app-text/lizard/lizard-1.17.10.ebuild b/app-text/lizard/lizard-1.17.10.ebuild index 8fa36b6c22..157fe5111b 100644 --- a/app-text/lizard/lizard-1.17.10.ebuild +++ b/app-text/lizard/lizard-1.17.10.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 diff --git a/app-text/tldr/tldr-2.0.0-r1.ebuild b/app-text/tldr/tldr-2.0.0-r1.ebuild index 682a1b9e2a..99d5bb93bb 100644 --- a/app-text/tldr/tldr-2.0.0-r1.ebuild +++ b/app-text/tldr/tldr-2.0.0-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} pypy3 ) +PYTHON_COMPAT=( python3_10 pypy3 ) inherit distutils-r1 pypi diff --git a/app-vim/vimwiki-cli/vimwiki-cli-1.0.0.ebuild b/app-vim/vimwiki-cli/vimwiki-cli-1.0.0.ebuild index c6309bc811..0c5756bfa6 100644 --- a/app-vim/vimwiki-cli/vimwiki-cli-1.0.0.ebuild +++ b/app-vim/vimwiki-cli/vimwiki-cli-1.0.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 diff --git a/dev-R/reticulate/reticulate-1.25.ebuild b/dev-R/reticulate/reticulate-1.25.ebuild index e8f9d6a6ba..81f6a6ff58 100644 --- a/dev-R/reticulate/reticulate-1.25.ebuild +++ b/dev-R/reticulate/reticulate-1.25.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit python-single-r1 R-packages diff --git a/dev-cpp/dtl/dtl-1.20-r1.ebuild b/dev-cpp/dtl/dtl-1.20-r1.ebuild index b4584d4f58..2ac5f3c664 100644 --- a/dev-cpp/dtl/dtl-1.20-r1.ebuild +++ b/dev-cpp/dtl/dtl-1.20-r1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit python-any-r1 scons-utils toolchain-funcs diff --git a/dev-cpp/fbthrift/fbthrift-2023.02.06.00.ebuild b/dev-cpp/fbthrift/fbthrift-2023.02.06.00.ebuild index ac597c1305..791d6f978e 100644 --- a/dev-cpp/fbthrift/fbthrift-2023.02.06.00.ebuild +++ b/dev-cpp/fbthrift/fbthrift-2023.02.06.00.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit cmake python-single-r1 diff --git a/dev-cpp/scitokens-cpp/scitokens-cpp-0.7.3.ebuild b/dev-cpp/scitokens-cpp/scitokens-cpp-0.7.3.ebuild index 5d3e16ae92..d6173e21e9 100644 --- a/dev-cpp/scitokens-cpp/scitokens-cpp-0.7.3.ebuild +++ b/dev-cpp/scitokens-cpp/scitokens-cpp-0.7.3.ebuild @@ -36,7 +36,7 @@ PATCHES=( src_prepare() { # Unbundle dev-cpp/gtest, dev-cpp/jwt-cpp - rm -rvf vendor + rm -r vendor || die # Fix include path for picojson. find src/ \( -name '*.cpp' -o -name '*.h' \) -type f -print0 | xargs -0 sed -r -e "s:picojson/picojson\.h:picojson.h:g" -i || die cmake_src_prepare diff --git a/dev-cpp/scitokens-cpp/scitokens-cpp-1.0.0.ebuild b/dev-cpp/scitokens-cpp/scitokens-cpp-1.0.0.ebuild index e0b428f844..acf2c661de 100644 --- a/dev-cpp/scitokens-cpp/scitokens-cpp-1.0.0.ebuild +++ b/dev-cpp/scitokens-cpp/scitokens-cpp-1.0.0.ebuild @@ -32,7 +32,7 @@ RESTRICT="!test? ( test )" src_prepare() { # Unbundle dev-cpp/gtest, dev-cpp/jwt-cpp - rm -rvf vendor + rm -r vendor || die # Fix include path for picojson. find src/ \( -name '*.cpp' -o -name '*.h' \) -type f -print0 | \ xargs -0 sed -r -e "s:picojson/picojson\.h:picojson.h:g" -i || die diff --git a/dev-cpp/scitokens-cpp/scitokens-cpp-1.0.1.ebuild b/dev-cpp/scitokens-cpp/scitokens-cpp-1.0.1.ebuild index e0b428f844..acf2c661de 100644 --- a/dev-cpp/scitokens-cpp/scitokens-cpp-1.0.1.ebuild +++ b/dev-cpp/scitokens-cpp/scitokens-cpp-1.0.1.ebuild @@ -32,7 +32,7 @@ RESTRICT="!test? ( test )" src_prepare() { # Unbundle dev-cpp/gtest, dev-cpp/jwt-cpp - rm -rvf vendor + rm -r vendor || die # Fix include path for picojson. find src/ \( -name '*.cpp' -o -name '*.h' \) -type f -print0 | \ xargs -0 sed -r -e "s:picojson/picojson\.h:picojson.h:g" -i || die diff --git a/dev-cpp/tiny-dnn/tiny-dnn-1.0.0_alpha3-r2.ebuild b/dev-cpp/tiny-dnn/tiny-dnn-1.0.0_alpha3-r2.ebuild index 440b2b7e6f..e214612f2f 100644 --- a/dev-cpp/tiny-dnn/tiny-dnn-1.0.0_alpha3-r2.ebuild +++ b/dev-cpp/tiny-dnn/tiny-dnn-1.0.0_alpha3-r2.ebuild @@ -7,7 +7,7 @@ DOCS_BUILDER="sphinx" DOCS_DEPEND="dev-python/recommonmark" DOCS_DIR="docs" MYPV="${PV/_alpha/a}" -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit cmake python-any-r1 docs diff --git a/dev-cpp/vexcl/vexcl-1.4.3-r2.ebuild b/dev-cpp/vexcl/vexcl-1.4.3-r2.ebuild index 0e81bdfe7e..0889431c99 100644 --- a/dev-cpp/vexcl/vexcl-1.4.3-r2.ebuild +++ b/dev-cpp/vexcl/vexcl-1.4.3-r2.ebuild @@ -9,7 +9,7 @@ DOCS_DEPEND=" dev-python/sphinx-bootstrap-theme " DOCS_DIR="docs" -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit cmake python-any-r1 docs diff --git a/dev-cpp/xtensor/xtensor-0.24.4.ebuild b/dev-cpp/xtensor/xtensor-0.24.4.ebuild index 4dd40f3963..bc7de7f7ef 100644 --- a/dev-cpp/xtensor/xtensor-0.24.4.ebuild +++ b/dev-cpp/xtensor/xtensor-0.24.4.ebuild @@ -6,7 +6,7 @@ EAPI=8 # required because of manual install in src_install CMAKE_MAKEFILE_GENERATOR="emake" -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit cmake python-any-r1 optfeature toolchain-funcs diff --git a/dev-cpp/xtl/xtl-0.7.5.ebuild b/dev-cpp/xtl/xtl-0.7.5.ebuild index 5d11b2586e..d593daebe9 100644 --- a/dev-cpp/xtl/xtl-0.7.5.ebuild +++ b/dev-cpp/xtl/xtl-0.7.5.ebuild @@ -6,7 +6,7 @@ EAPI=8 # required because of manual install in src_install CMAKE_MAKEFILE_GENERATOR="emake" -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit cmake python-any-r1 diff --git a/dev-embedded/esp-idf/esp-idf-5.0.ebuild b/dev-embedded/esp-idf/esp-idf-5.0.ebuild index 1edac2122b..328cd094eb 100644 --- a/dev-embedded/esp-idf/esp-idf-5.0.ebuild +++ b/dev-embedded/esp-idf/esp-idf-5.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) VER="esp-2022r1" CROSSTOOL_URL="https://github.com/espressif/crosstool-NG/releases/download/${VER}" diff --git a/dev-embedded/idf-component-manager/idf-component-manager-1.1.4.ebuild b/dev-embedded/idf-component-manager/idf-component-manager-1.1.4.ebuild index 0ed9e006be..77924db675 100644 --- a/dev-embedded/idf-component-manager/idf-component-manager-1.1.4.ebuild +++ b/dev-embedded/idf-component-manager/idf-component-manager-1.1.4.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-embedded/rauc/rauc-1.9.ebuild b/dev-embedded/rauc/rauc-1.9.ebuild index fd62672298..a3aadea337 100644 --- a/dev-embedded/rauc/rauc-1.9.ebuild +++ b/dev-embedded/rauc/rauc-1.9.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DOCS_BUILDER="sphinx" DOCS_DIR="${S}/docs" diff --git a/dev-embedded/yosys/Manifest b/dev-embedded/yosys/Manifest deleted file mode 100644 index 13f6ee6f8c..0000000000 --- a/dev-embedded/yosys/Manifest +++ /dev/null @@ -1,4 +0,0 @@ -DIST berkeley-abc-ed90ce20df9c7c4d6e1db5d3f786f9b52e06bab1.tar.gz 5755034 BLAKE2B eef98b8768556c2a975fb1dd4f697a7ba7ac2adf305f477e5d0071b6873379eb5fe021a8cc20097af1156173af72f896a5f3c687796ae7c564e8d2af4829d6a3 SHA512 d71989603d2580c3db88c4a44a95ac89266c19a05cb49b62d117c9457166fdd1313bce7ac617beea0bd0bde47c7891c99b248ee77754e25f403f5f886ea7cfd4 -DIST yosys-0.27.tar.gz 2517825 BLAKE2B ca8186f2328e1712032e31ba1e6c26f0c9568d9ba39bdbb5142d2cd4cc291a172570101efaa9acb07c3efe2322c25a698d910175c992fbc8c87776d84765f1a0 SHA512 30eb63102422b4d5e06e60af84426cfffff0d2ed6944ac49c491aff7703c47737808481a43a061ebdce7c6bb8cf5a9475f42eec198b71e7f1bd32ceb55ff2408 -DIST yosys-abc-2c1c83f75b8078ced51f92c697da3e712feb3ac3.tar.gz 6071271 BLAKE2B 46a50ceaec7c98c17440bfadf62a630d15926e3ad34e8addc660b1c50477ed3cd1fe4263e97dd2a31a4f54f076ee84810198d46a5910f9e7d73edcf28cde153a SHA512 b48ac0ee78343f1406c4fc568da769b5d38534a1e7c32bf93acdc25931ed1ee1a7e0e0e55d2099f3a558182a9b58643eefee552eff8c07b0d14a60d96c1ed365 -DIST yosys-c9555c9adeba886a308c60615ac794ec20d9276e.tar.gz 1675435 BLAKE2B 9aca3d0e3efe1d24de5aabd6f12ccf7a8fe4f1db5f5dc2a3a1e70c67538f59c1f364cb6a9b3f79406371756f9118e5a1160d0c21d367a5fe4927b4b5d21495eb SHA512 5bba45de487a1299f7f7bacc3b538e80a91265b075112aeac17af6895580c3cf21712df6fffd7250fdf5b51d9f235c1cb0433deda6af2c404b6156c5a3c5c44e diff --git a/dev-embedded/yosys/metadata.xml b/dev-embedded/yosys/metadata.xml deleted file mode 100644 index 3438ba9442..0000000000 --- a/dev-embedded/yosys/metadata.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - cliffordwolf/yosys - - - Build with Berkeley ABC support - - diff --git a/dev-embedded/yosys/yosys-0.27.ebuild b/dev-embedded/yosys/yosys-0.27.ebuild deleted file mode 100644 index 600c318d08..0000000000 --- a/dev-embedded/yosys/yosys-0.27.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_9 ) -inherit python-any-r1 - -ABC_COMMIT="2c1c83f75b8078ced51f92c697da3e712feb3ac3" - -SRC_URI="https://github.com/YosysHQ/yosys/archive/refs/tags/yosys-${PV}.tar.gz -https://github.com/YosysHQ/abc/archive/${ABC_COMMIT}.tar.gz -> yosys-abc-${ABC_COMMIT}.tar.gz" - -DESCRIPTION="Yosys - Yosys Open SYnthesis Suite" -HOMEPAGE="http://www.clifford.at/icestorm/" -LICENSE="ISC" - -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND=" - sys-libs/readline:= - dev-libs/libffi:= - dev-vcs/git - dev-lang/tcl:=" - -DEPEND=" - ${PYTHON_DEPS} - sys-devel/bison - sys-devel/flex - sys-apps/gawk - virtual/pkgconfig - ${RDEPEND}" - -S="${WORKDIR}/${PN}-${P}" - -src_prepare() { - ln -s "${WORKDIR}/abc-${ABC_COMMIT}" abc - default -} - -src_configure() { - emake config-gcc -} - -src_compile() { - emake PREFIX="${EPREFIX}/usr" -} - -src_install() { - emake PREFIX="${ED}/usr" STRIP=true install -} diff --git a/dev-embedded/yosys/yosys-0.9_p20200324-r1.ebuild b/dev-embedded/yosys/yosys-0.9_p20200324-r1.ebuild deleted file mode 100644 index 2b4eba8364..0000000000 --- a/dev-embedded/yosys/yosys-0.9_p20200324-r1.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_9 ) -inherit eutils python-any-r1 - -ABC_COMMIT="ed90ce20df9c7c4d6e1db5d3f786f9b52e06bab1" -EGIT_COMMIT="c9555c9adeba886a308c60615ac794ec20d9276e" - -SRC_URI="https://github.com/cliffordwolf/${PN}/archive/${EGIT_COMMIT}.tar.gz -> ${PN}-${EGIT_COMMIT}.tar.gz https://github.com/berkeley-abc/abc/archive/${ABC_COMMIT}.tar.gz -> berkeley-abc-${ABC_COMMIT}.tar.gz" - -DESCRIPTION="Yosys - Yosys Open SYnthesis Suite" -HOMEPAGE="http://www.clifford.at/icestorm/" -LICENSE="ISC" - -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="+abc" - -RDEPEND=" - sys-libs/readline:= - dev-libs/libffi:= - dev-vcs/git - dev-lang/tcl:=" - -DEPEND=" - ${PYTHON_DEPS} - sys-devel/bison - sys-devel/flex - sys-apps/gawk - virtual/pkgconfig - ${RDEPEND}" - -S="${WORKDIR}/${PN}-${EGIT_COMMIT}" - -src_prepare() { - ln -s "${WORKDIR}/abc-${ABC_COMMIT}" abc - sed "s/^ABCREV = .*/ABCREV = default/g" -i Makefile - default -} - -src_configure() { - emake config-gcc - echo "ENABLE_ABC := $(usex abc 1 0)" >> "${S}/Makefile.conf" -} - -src_compile() { - emake PREFIX="${EPREFIX}/usr" -} - -src_install() { - emake PREFIX="${ED}/usr" STRIP=true install -} diff --git a/dev-embedded/yosys/yosys-9999.ebuild b/dev-embedded/yosys/yosys-9999.ebuild deleted file mode 100644 index 7fc925bc9e..0000000000 --- a/dev-embedded/yosys/yosys-9999.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python3_9 python3_10 python3_11 ) - -inherit git-r3 python-r1 multilib - -DESCRIPTION="RTL synthesis toolkit" -HOMEPAGE="https://yosyshq.net/yosys/" -SRC_URI="" -EGIT_REPO_URI="https://github.com/YosysHQ/yosys.git" -EGIT_BRANCH="master" - - -LICENSE="ISC" -SLOT="0" -KEYWORDS="" -PROPERTIES="live" -IUSE="+tcl +readline +zlib +abc" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - - -BDEPEND=" - sys-devel/gcc[cxx] - sys-devel/bison - sys-devel/flex - sys-apps/gawk - virtual/pkgconfig -" - -RDEPEND=" - dev-libs/libffi - media-gfx/xdot - media-gfx/graphviz - dev-libs/boost[python] - tcl? ( dev-lang/tcl:= ) - readline? ( sys-libs/readline:= ) - zlib? ( sys-libs/zlib ) - abc? ( sci-mathematics/abc[static-libs] ) -" - -DEPEND=" - ${PYTHON_DEPS} - ${RDEPEND} -" - - -src_configure() { - emake config-gcc - - echo "ENABLE_TCL := $(usex tcl 1 0)" >> "${S}"/Makefile.conf - echo "ENABLE_READLINE := $(usex readline 1 0)" >> "${S}"/Makefile.conf - echo "ENABLE_ZLIB := $(usex zlib 1 0)" >> "${S}"/Makefile.conf - echo "ENABLE_ABC := $(usex abc 1 0)" >> "${S}"/Makefile.conf - use abc && echo "ABCEXTERNAL := ${EPREFIX}/usr/bin/abc" >> "${S}"/Makefile.conf -} - - -src_compile() { - emake PREFIX="${EPREFIX}/usr" -} - - -src_install() { - emake PREFIX="${ED}/usr" install -} diff --git a/dev-games/surgescript/surgescript-0.5.5.ebuild b/dev-games/surgescript/surgescript-0.5.5.ebuild index 564ac01210..05291be2f5 100644 --- a/dev-games/surgescript/surgescript-0.5.5.ebuild +++ b/dev-games/surgescript/surgescript-0.5.5.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DOCS_BUILDER="mkdocs" DOCS_DEPEND="dev-python/mkdocs-material" diff --git a/dev-games/surgescript/surgescript-9999.ebuild b/dev-games/surgescript/surgescript-9999.ebuild index 564ac01210..05291be2f5 100644 --- a/dev-games/surgescript/surgescript-9999.ebuild +++ b/dev-games/surgescript/surgescript-9999.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DOCS_BUILDER="mkdocs" DOCS_DEPEND="dev-python/mkdocs-material" diff --git a/dev-lang/wabt/wabt-1.0.30.ebuild b/dev-lang/wabt/wabt-1.0.30.ebuild index 6e6515c80e..be0922b123 100644 --- a/dev-lang/wabt/wabt-1.0.30.ebuild +++ b/dev-lang/wabt/wabt-1.0.30.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit cmake python-any-r1 diff --git a/dev-lang/wren/Manifest b/dev-lang/wren/Manifest deleted file mode 100644 index b19b7d38e0..0000000000 --- a/dev-lang/wren/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST wren-0.3.0.tar.gz 1228834 BLAKE2B ff809008646970815b0f3ef3457d12ad1e6ac431b32f059035b15f1ad9f46247510a28d34d789472c6dc9fe1caeee71e09bd5484fe21dfdb356d8fcfc206a812 SHA512 8c05b69539b8a51289efecbd998bf1d054ff90944b949720b512b7a1202ace9ba56779f2e995097571459da6d8447f925f54c8170a3f6edeeaac6df265ffdc4c -DIST wren-cli-0.3.0.tar.gz 509755 BLAKE2B 13034a6aeaa7ef2a20163714233c4750f1ab88fb232758c26bd35f8616c239936b1f80bf95c95da4d2ad2436a7813f1763002637030473a9abed8d0a4532d61d SHA512 8d4894c5e669c0c03bfb546c37cb9e917990a6cb6c59d399cbb5a03a9c9de7954bc203646ac776643c73ab9cb6e331868707d82e7c2ebd8625a9d80f4aea4f20 diff --git a/dev-lang/wren/metadata.xml b/dev-lang/wren/metadata.xml deleted file mode 100644 index 1b770d7bcf..0000000000 --- a/dev-lang/wren/metadata.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - Wren is a small, fast, class-based concurrent scripting language - Think Smalltalk in a Lua-sized package with a dash of Erlang and wrapped up in a familiar, modern syntax. - - - m.santullo@posteo.net - Michele Santullo - - - https://github.com/wren-lang/wren/issues - wren-lang/wren - - diff --git a/dev-lang/wren/wren-0.3.0.ebuild b/dev-lang/wren/wren-0.3.0.ebuild deleted file mode 100644 index a969a3ea34..0000000000 --- a/dev-lang/wren/wren-0.3.0.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 2020-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_9 ) - -inherit distutils-r1 toolchain-funcs - -DESCRIPTION="The Wren Programming Language" -HOMEPAGE="https://wren.io/" -SRC_URI=" - https://github.com/wren-lang/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz - https://github.com/wren-lang/${PN}-cli/archive/${PV}.tar.gz -> ${PN}-cli-${PV}.tar.gz -" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" - -RDEPEND="dev-libs/libuv" -DEPEND="${RDEPEND}" - -src_prepare() { - default - - # Don't pre-strip - sed -i 's/-s$//' projects/make/wren_shared.make || die - sed -i 's/-s$//' "${WORKDIR}"/wren-cli-${PV}/projects/make/wren_cli.make || die - - cat < ${PN}.pc -prefix="${EPREFIX}/usr" -libdir="\${prefix}/$(get_libdir)" -includedir="\${prefix}/include" - -Name: ${PN} -Description: ${DESCRIPTION} -URL: ${HOMEPAGE} -Version: ${PV} -Libs: "-L\${libdir}" -l${PN} -Cflags: "-I\${includedir}" -EOF -} - -src_compile() { - tc-export CC - cd projects/make - emake verbose=1 - cd "${WORKDIR}/wren-cli-${PV}/projects/make" - emake verbose=1 -} - -python_test() { - ${EPYTHON} util/test.py || die -} - -src_install() { - newbin "${WORKDIR}"/wren-cli-${PV}/bin/wren_cli wren - dolib.so lib/libwren.so - doheader src/include/wren.h - doheader src/include/wren.hpp - - insinto /usr/$(get_libdir)/pkgconfig - doins ${PN}.pc - einstalldocs -} diff --git a/dev-libs/StringiFor/StringiFor-1.1.4.ebuild b/dev-libs/StringiFor/StringiFor-1.1.4.ebuild index 996040d573..db9e99c2f4 100644 --- a/dev-libs/StringiFor/StringiFor-1.1.4.ebuild +++ b/dev-libs/StringiFor/StringiFor-1.1.4.ebuild @@ -4,7 +4,7 @@ EAPI=8 FORTRAN_STANDARD=2003 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit fortran-2 python-any-r1 toolchain-funcs diff --git a/dev-libs/fastText/fastText-0.9.2.ebuild b/dev-libs/fastText/fastText-0.9.2.ebuild index b406af447f..ffdf9b3ddf 100644 --- a/dev-libs/fastText/fastText-0.9.2.ebuild +++ b/dev-libs/fastText/fastText-0.9.2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools DISTUTILS_OPTIONAL=1 inherit cmake distutils-r1 edo diff --git a/dev-libs/fortran-stdlib/fortran-stdlib-0.2.1-r1.ebuild b/dev-libs/fortran-stdlib/fortran-stdlib-0.2.1-r1.ebuild index 94738186e4..ef89ae1da2 100644 --- a/dev-libs/fortran-stdlib/fortran-stdlib-0.2.1-r1.ebuild +++ b/dev-libs/fortran-stdlib/fortran-stdlib-0.2.1-r1.ebuild @@ -4,7 +4,7 @@ EAPI=8 FORTRAN_STANDARD="2003" -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit cmake fortran-2 python-any-r1 diff --git a/dev-libs/fortran-stdlib/fortran-stdlib-9999.ebuild b/dev-libs/fortran-stdlib/fortran-stdlib-9999.ebuild index 991195003c..e21cbaf16d 100644 --- a/dev-libs/fortran-stdlib/fortran-stdlib-9999.ebuild +++ b/dev-libs/fortran-stdlib/fortran-stdlib-9999.ebuild @@ -4,7 +4,7 @@ EAPI=8 FORTRAN_STANDARD="2003" -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit cmake fortran-2 git-r3 python-any-r1 diff --git a/dev-libs/memkind/memkind-1.13.0.ebuild b/dev-libs/memkind/memkind-1.13.0.ebuild index 67adcc8cfb..40fa0288ed 100644 --- a/dev-libs/memkind/memkind-1.13.0.ebuild +++ b/dev-libs/memkind/memkind-1.13.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit autotools linux-info python-any-r1 toolchain-funcs diff --git a/dev-libs/open62541/open62541-1.3.5.ebuild b/dev-libs/open62541/open62541-1.3.5.ebuild index cee39db05c..c82ac9dc92 100644 --- a/dev-libs/open62541/open62541-1.3.5.ebuild +++ b/dev-libs/open62541/open62541-1.3.5.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit cmake python-single-r1 diff --git a/dev-libs/zfp/zfp-0.5.5-r1.ebuild b/dev-libs/zfp/zfp-0.5.5-r1.ebuild index 4c6e4c921f..20d8336ccf 100644 --- a/dev-libs/zfp/zfp-0.5.5-r1.ebuild +++ b/dev-libs/zfp/zfp-0.5.5-r1.ebuild @@ -5,7 +5,7 @@ EAPI=8 #DOCS_BUILDER="sphinx" #DOCS_DIR="docs/source" -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit cmake fortran-2 python-single-r1 #docs diff --git a/dev-octave/symbolic/symbolic-2.9.0.ebuild b/dev-octave/symbolic/symbolic-2.9.0.ebuild index 68dcf66e68..683b1f2149 100644 --- a/dev-octave/symbolic/symbolic-2.9.0.ebuild +++ b/dev-octave/symbolic/symbolic-2.9.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit octaveforge python-single-r1 diff --git a/dev-python/BTrees/BTrees-5.0-r1.ebuild b/dev-python/BTrees/BTrees-5.0-r1.ebuild index a2cd504677..571aab9e6b 100644 --- a/dev-python/BTrees/BTrees-5.0-r1.ebuild +++ b/dev-python/BTrees/BTrees-5.0-r1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) PYPI_NO_NORMALIZE=1 inherit distutils-r1 pypi diff --git a/dev-python/DAWG-Python/DAWG-Python-0.7.2.ebuild b/dev-python/DAWG-Python/DAWG-Python-0.7.2.ebuild index b11c5c52e3..33b5e58375 100644 --- a/dev-python/DAWG-Python/DAWG-Python-0.7.2.ebuild +++ b/dev-python/DAWG-Python/DAWG-Python-0.7.2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools PYPI_NO_NORMALIZE=1 inherit distutils-r1 pypi diff --git a/dev-python/EbookLib/EbookLib-0.17.1.ebuild b/dev-python/EbookLib/EbookLib-0.17.1.ebuild index e9abe67d70..a882c0f4e5 100644 --- a/dev-python/EbookLib/EbookLib-0.17.1.ebuild +++ b/dev-python/EbookLib/EbookLib-0.17.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools PYPI_NO_NORMALIZE=1 inherit distutils-r1 pypi diff --git a/dev-python/ManimPango/ManimPango-0.4.3.ebuild b/dev-python/ManimPango/ManimPango-0.4.3.ebuild index 551bc5b468..6aae4faa19 100644 --- a/dev-python/ManimPango/ManimPango-0.4.3.ebuild +++ b/dev-python/ManimPango/ManimPango-0.4.3.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/MutatorMath/MutatorMath-3.0.1-r2.ebuild b/dev-python/MutatorMath/MutatorMath-3.0.1-r2.ebuild index 92758d4592..eb41378dac 100644 --- a/dev-python/MutatorMath/MutatorMath-3.0.1-r2.ebuild +++ b/dev-python/MutatorMath/MutatorMath-3.0.1-r2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools PYPI_NO_NORMALIZE=1 inherit distutils-r1 pypi diff --git a/dev-python/PGPy/PGPy-0.6.0.ebuild b/dev-python/PGPy/PGPy-0.6.0.ebuild index a589f860f6..865ab01601 100644 --- a/dev-python/PGPy/PGPy-0.6.0.ebuild +++ b/dev-python/PGPy/PGPy-0.6.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/Pyro5/Pyro5-5.14.ebuild b/dev-python/Pyro5/Pyro5-5.14.ebuild index a054f5f34c..2f7bdd1c8a 100644 --- a/dev-python/Pyro5/Pyro5-5.14.ebuild +++ b/dev-python/Pyro5/Pyro5-5.14.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi diff --git a/dev-python/SLPP/SLPP-1.2.3.ebuild b/dev-python/SLPP/SLPP-1.2.3.ebuild index bd3d267c03..6b4394724e 100644 --- a/dev-python/SLPP/SLPP-1.2.3.ebuild +++ b/dev-python/SLPP/SLPP-1.2.3.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools PYPI_NO_NORMALIZE=1 inherit distutils-r1 pypi diff --git a/dev-python/SQLAlchemy-Utils/SQLAlchemy-Utils-0.39.0.ebuild b/dev-python/SQLAlchemy-Utils/SQLAlchemy-Utils-0.39.0.ebuild index 3946d89a8e..623392d8df 100644 --- a/dev-python/SQLAlchemy-Utils/SQLAlchemy-Utils-0.39.0.ebuild +++ b/dev-python/SQLAlchemy-Utils/SQLAlchemy-Utils-0.39.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) DISTUTILS_USE_PEP517=setuptools PYPI_NO_NORMALIZE=1 inherit distutils-r1 pypi diff --git a/dev-python/TakeTheTime/TakeTheTime-0.3.1.ebuild b/dev-python/TakeTheTime/TakeTheTime-0.3.1.ebuild index 190a25b748..a8a43745f1 100644 --- a/dev-python/TakeTheTime/TakeTheTime-0.3.1.ebuild +++ b/dev-python/TakeTheTime/TakeTheTime-0.3.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools PYPI_NO_NORMALIZE=1 inherit distutils-r1 pypi diff --git a/dev-python/XenAPI/XenAPI-2.14-r1.ebuild b/dev-python/XenAPI/XenAPI-2.14-r1.ebuild index 1c9145286d..fb8cda8d14 100644 --- a/dev-python/XenAPI/XenAPI-2.14-r1.ebuild +++ b/dev-python/XenAPI/XenAPI-2.14-r1.ebuild @@ -4,7 +4,7 @@ EAPI=8 PYPI_NO_NORMALIZE=1 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 pypi diff --git a/dev-python/aiomysql/aiomysql-0.1.1.ebuild b/dev-python/aiomysql/aiomysql-0.1.1.ebuild index c731e68b05..d3088f7b7f 100644 --- a/dev-python/aiomysql/aiomysql-0.1.1.ebuild +++ b/dev-python/aiomysql/aiomysql-0.1.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit databases distutils-r1 diff --git a/dev-python/aiopg/aiopg-1.4.0.ebuild b/dev-python/aiopg/aiopg-1.4.0.ebuild index aba8ba10a3..b137e318f0 100644 --- a/dev-python/aiopg/aiopg-1.4.0.ebuild +++ b/dev-python/aiopg/aiopg-1.4.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 optfeature diff --git a/dev-python/aiounittest/aiounittest-1.4.2.ebuild b/dev-python/aiounittest/aiounittest-1.4.2.ebuild index ff3e1e69cf..4bc6ae0ca0 100644 --- a/dev-python/aiounittest/aiounittest-1.4.2.ebuild +++ b/dev-python/aiounittest/aiounittest-1.4.2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/almost/almost-0.1.5.ebuild b/dev-python/almost/almost-0.1.5.ebuild index 1212321e03..cac0f440d1 100644 --- a/dev-python/almost/almost-0.1.5.ebuild +++ b/dev-python/almost/almost-0.1.5.ebuild @@ -5,7 +5,7 @@ EAPI="8" COMMIT="cc3eeb0abde7ff95a222d571443989c74a112ff7" DISTUTILS_USE_SETUPTOOLS=rdepend -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 diff --git a/dev-python/anyascii/anyascii-0.3.1.ebuild b/dev-python/anyascii/anyascii-0.3.1.ebuild index 8dab3cac6d..a18d44a527 100644 --- a/dev-python/anyascii/anyascii-0.3.1.ebuild +++ b/dev-python/anyascii/anyascii-0.3.1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=flit -PYTHON_COMPAT=(python3_{9..11}) +PYTHON_COMPAT=(python3_{10..11}) inherit distutils-r1 DESCRIPTION="Unicode to ASCII transliteration" diff --git a/dev-python/anyascii/anyascii-9999.ebuild b/dev-python/anyascii/anyascii-9999.ebuild index 19d5e82206..62d7181644 100644 --- a/dev-python/anyascii/anyascii-9999.ebuild +++ b/dev-python/anyascii/anyascii-9999.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=flit -PYTHON_COMPAT=(python3_{9..11}) +PYTHON_COMPAT=(python3_{10..11}) inherit distutils-r1 DESCRIPTION="Unicode to ASCII transliteration" diff --git a/dev-python/asciimatics/Manifest b/dev-python/asciimatics/Manifest deleted file mode 100644 index d92fb4dc1b..0000000000 --- a/dev-python/asciimatics/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST asciimatics-1.13.0.tar.gz 2521962 BLAKE2B 35b564f7b0a33c658b93ad8bdad5bfb53c12da8dbe3347c1651fe3e1886c1721282455c7a668cbc85a12cd34944cc4d701d86862a622efb384739122ad983ba5 SHA512 b3943765c151b030e41bb08f3e85891449fb51533b18fae792289274f53b8548d2c7507533a56eb45797c9f44ae4963c0c247c37d6f375535900a4204238a95f diff --git a/dev-python/asciimatics/asciimatics-1.13.0.ebuild b/dev-python/asciimatics/asciimatics-1.13.0.ebuild deleted file mode 100644 index 45fb01bf13..0000000000 --- a/dev-python/asciimatics/asciimatics-1.13.0.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DISTUTILS_USE_SETUPTOOLS=bdepend -PYTHON_COMPAT=( python3_9 ) -inherit distutils-r1 - -DESCRIPTION="Package for curses-like operations, text UIs and ASCII art animations" -HOMEPAGE="https://pypi.org/project/asciimatics/ https://github.com/peterbrittain/asciimatics" - -if [[ "${PV}" == 9999 ]] -then - inherit git-r3 - EGIT_REPO_URI="https://github.com/peterbrittain/asciimatics.git" -else - SRC_URI="https://github.com/peterbrittain/asciimatics/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64" -fi - -LICENSE="Apache-2.0" -SLOT="0" - -RESTRICT="mirror test" - -RDEPEND=" - >=dev-python/pyfiglet-0.7.2[${PYTHON_USEDEP}] - >=dev-python/pillow-2.7.0[${PYTHON_USEDEP}] - dev-python/wcwidth[${PYTHON_USEDEP}] - dev-python/future[${PYTHON_USEDEP}] -" - -src_prepare() { - default - sed -i -e "s/use_scm_version={/\0'fallback_version': '${PV}',/" setup.py -} diff --git a/dev-python/asciimatics/asciimatics-9999.ebuild b/dev-python/asciimatics/asciimatics-9999.ebuild deleted file mode 100644 index 068ad4db88..0000000000 --- a/dev-python/asciimatics/asciimatics-9999.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DISTUTILS_USE_SETUPTOOLS=bdepend -PYTHON_COMPAT=( python3_9 ) -inherit distutils-r1 - -DESCRIPTION="Package for curses-like operations, text UIs and ASCII art animations" -HOMEPAGE="https://pypi.org/project/asciimatics/ https://github.com/peterbrittain/asciimatics" - -if [[ "${PV}" == 9999 ]] -then - inherit git-r3 - EGIT_REPO_URI="https://github.com/peterbrittain/asciimatics.git" -else - SRC_URI="https://github.com/peterbrittain/asciimatics/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64" -fi - -LICENSE="Apache-2.0" -SLOT="0" - -RESTRICT="mirror" - -RDEPEND=" - >=dev-python/pyfiglet-0.7.2[${PYTHON_USEDEP}] - >=dev-python/pillow-2.7.0[${PYTHON_USEDEP}] - dev-python/wcwidth[${PYTHON_USEDEP}] - dev-python/future[${PYTHON_USEDEP}] -" -BDEPEND=" - test? ( - ${RDEPEND} - dev-python/mock - ) -" - -distutils_enable_tests nose diff --git a/dev-python/asciimatics/metadata.xml b/dev-python/asciimatics/metadata.xml deleted file mode 100644 index 4af86ce657..0000000000 --- a/dev-python/asciimatics/metadata.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - coppens.matthias.abc@gmail.com - Matthias Coppens - - - https://asciimatics.readthedocs.io/en/stable/ - peterbrittain/asciimatics - asciimatics - https://github.com/peterbrittain/asciimatics/issues - - diff --git a/dev-python/ascim/ascim-0.1.1.ebuild b/dev-python/ascim/ascim-0.1.1.ebuild index 86d288d691..7644c33335 100644 --- a/dev-python/ascim/ascim-0.1.1.ebuild +++ b/dev-python/ascim/ascim-0.1.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/asgi-lifespan/asgi-lifespan-2.0.0.ebuild b/dev-python/asgi-lifespan/asgi-lifespan-2.0.0.ebuild index f9aa981b74..d230503fe1 100644 --- a/dev-python/asgi-lifespan/asgi-lifespan-2.0.0.ebuild +++ b/dev-python/asgi-lifespan/asgi-lifespan-2.0.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/asgi-lifespan/asgi-lifespan-2.1.0.ebuild b/dev-python/asgi-lifespan/asgi-lifespan-2.1.0.ebuild index 770764e5fe..dfe2d87590 100644 --- a/dev-python/asgi-lifespan/asgi-lifespan-2.1.0.ebuild +++ b/dev-python/asgi-lifespan/asgi-lifespan-2.1.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/aspectlib/aspectlib-2.0.0.ebuild b/dev-python/aspectlib/aspectlib-2.0.0.ebuild index 36b6fcc371..7fc9a29481 100644 --- a/dev-python/aspectlib/aspectlib-2.0.0.ebuild +++ b/dev-python/aspectlib/aspectlib-2.0.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/asyncinotify/asyncinotify-4.0.1.ebuild b/dev-python/asyncinotify/asyncinotify-4.0.1.ebuild index 08cd3997a2..3e93c0b788 100644 --- a/dev-python/asyncinotify/asyncinotify-4.0.1.ebuild +++ b/dev-python/asyncinotify/asyncinotify-4.0.1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=flit -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/asyncmy/asyncmy-0.2.5.ebuild b/dev-python/asyncmy/asyncmy-0.2.5.ebuild index db4d1e5049..0523fa2c63 100644 --- a/dev-python/asyncmy/asyncmy-0.2.5.ebuild +++ b/dev-python/asyncmy/asyncmy-0.2.5.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) PYTHON_REQ_USE="ssl" DISTUTILS_USE_PEP517=poetry inherit databases distutils-r1 optfeature diff --git a/dev-python/asyncmy/asyncmy-0.2.7.ebuild b/dev-python/asyncmy/asyncmy-0.2.7.ebuild index 07c5e3498e..139ab0cca2 100644 --- a/dev-python/asyncmy/asyncmy-0.2.7.ebuild +++ b/dev-python/asyncmy/asyncmy-0.2.7.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) PYTHON_REQ_USE="ssl" DISTUTILS_USE_PEP517=poetry inherit databases distutils-r1 optfeature diff --git a/dev-python/asyncpg/asyncpg-0.26.0.ebuild b/dev-python/asyncpg/asyncpg-0.26.0.ebuild index d043c4ad2a..3ff4d663da 100644 --- a/dev-python/asyncpg/asyncpg-0.26.0.ebuild +++ b/dev-python/asyncpg/asyncpg-0.26.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) # doesn't build with pypy3 +PYTHON_COMPAT=( python3_{10..11} ) # doesn't build with pypy3 DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/asyncpg/asyncpg-0.27.0.ebuild b/dev-python/asyncpg/asyncpg-0.27.0.ebuild index 197ef3017c..2e4da70d19 100644 --- a/dev-python/asyncpg/asyncpg-0.27.0.ebuild +++ b/dev-python/asyncpg/asyncpg-0.27.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) # doesn't build with pypy3 +PYTHON_COMPAT=( python3_{10..11} ) # doesn't build with pypy3 DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi diff --git a/dev-python/asyncssh/asyncssh-2.13.1.ebuild b/dev-python/asyncssh/asyncssh-2.13.1.ebuild index 2383aaab97..50d85b6e1e 100644 --- a/dev-python/asyncssh/asyncssh-2.13.1.ebuild +++ b/dev-python/asyncssh/asyncssh-2.13.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 optfeature pypi diff --git a/dev-python/auditok/auditok-0.1.5.ebuild b/dev-python/auditok/auditok-0.1.5.ebuild index c11d8570af..fd9be3f99c 100644 --- a/dev-python/auditok/auditok-0.1.5.ebuild +++ b/dev-python/auditok/auditok-0.1.5.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 optfeature diff --git a/dev-python/auditok/auditok-0.2.0.ebuild b/dev-python/auditok/auditok-0.2.0.ebuild index 94e9b8d786..c32af9e20d 100644 --- a/dev-python/auditok/auditok-0.2.0.ebuild +++ b/dev-python/auditok/auditok-0.2.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 optfeature diff --git a/dev-python/autoflake/autoflake-1.4-r1.ebuild b/dev-python/autoflake/autoflake-1.4-r1.ebuild index 445253325d..901a3f1400 100644 --- a/dev-python/autoflake/autoflake-1.4-r1.ebuild +++ b/dev-python/autoflake/autoflake-1.4-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/avro/avro-1.11.0.ebuild b/dev-python/avro/avro-1.11.0.ebuild index 3944d5ed2d..b1892990f4 100644 --- a/dev-python/avro/avro-1.11.0.ebuild +++ b/dev-python/avro/avro-1.11.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 pypi diff --git a/dev-python/azure-core/azure-core-1.26.3.ebuild b/dev-python/azure-core/azure-core-1.26.3.ebuild index d12fb53a2a..ca8bc33407 100644 --- a/dev-python/azure-core/azure-core-1.26.3.ebuild +++ b/dev-python/azure-core/azure-core-1.26.3.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools PYPI_NO_NORMALIZE=1 inherit distutils-r1 optfeature pypi diff --git a/dev-python/azure-core/azure-core-1.26.4.ebuild b/dev-python/azure-core/azure-core-1.26.4.ebuild index d12fb53a2a..ca8bc33407 100644 --- a/dev-python/azure-core/azure-core-1.26.4.ebuild +++ b/dev-python/azure-core/azure-core-1.26.4.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools PYPI_NO_NORMALIZE=1 inherit distutils-r1 optfeature pypi diff --git a/dev-python/b2sdk/Manifest b/dev-python/b2sdk/Manifest index 05576c6cdb..38085fc652 100644 --- a/dev-python/b2sdk/Manifest +++ b/dev-python/b2sdk/Manifest @@ -1,2 +1 @@ -DIST b2sdk-1.12.0.tar.gz 273412 BLAKE2B e67cf20a6d7277c3d2990e6f6c46cf9df253b3a46a8c8672cbdc810ca851e8c0cd6b6033b9034ce00283a577e2838cdb0c15410b12546f87c480581b5920074b SHA512 4d5eff1f9efed551c474a472a4c531b67b3356e959dde1d1058aad797abd5fd160781700753019d62ac2f05bd711bf1e6a0b15c0f5f86fd93bab17347a83cb13 DIST b2sdk-1.17.2.tar.gz 308753 BLAKE2B 07b6f71f604475d861257a1a7c567fc561a90c1c8c5768d21d63a82ff1c57240a81f8ebf96f1b3113cbea181140a128ebad9ed524e410a9c163a04a1de1ee2a0 SHA512 e618e18de16b021dc86a4b5ee9d315294eba5c3421318a4ea668681dc0420d6c3798f17c17be6475dddad7cfada8bf615916a5dc41ef905b8ecd7623b2a0c7bb diff --git a/dev-python/b2sdk/b2sdk-1.12.0.ebuild b/dev-python/b2sdk/b2sdk-1.12.0.ebuild deleted file mode 100644 index 829e3d5ae2..0000000000 --- a/dev-python/b2sdk/b2sdk-1.12.0.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_9 ) -inherit distutils-r1 - -DESCRIPTION="The client library for BackBlaze's B2 product" -HOMEPAGE="https://github.com/Backblaze/b2-sdk-python" -SRC_URI="https://github.com/Backblaze/b2-sdk-python/releases/download/v${PV}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -PATCHES=( - "${FILESDIR}/${PN}-1.8.0-disable-requirement-installation.patch" -) - -RDEPEND=" - $(python_gen_cond_dep ' - >=dev-python/arrow-0.8.0[${PYTHON_USEDEP}] - >=dev-python/logfury-0.1.2[${PYTHON_USEDEP}] - >=dev-python/requests-2.9.1[${PYTHON_USEDEP}] - >=dev-python/tqdm-4.5.0[${PYTHON_USEDEP}] - ') - $(python_gen_cond_dep ' - dev-python/importlib_metadata[${PYTHON_USEDEP}] - ' pypy3 python3_7) -" - -distutils_enable_tests pytest - -BDEPEND+=" test? ( - $(python_gen_cond_dep ' - >=dev-python/pytest-mock-3.3.1[${PYTHON_USEDEP}] - dev-python/pytest-lazy-fixture[${PYTHON_USEDEP}] - ') -)" - -# These tests seem to require some b2 authentication (they're integration tests -# so this is not unreasonable) -python_test() { - epytest \ - --deselect test/integration/test_large_files.py::TestLargeFile::test_large_file \ - --deselect test/integration/test_raw_api.py::test_raw_api -} diff --git a/dev-python/b2sdk/b2sdk-1.17.2.ebuild b/dev-python/b2sdk/b2sdk-1.17.2.ebuild index d37e7d691b..a99cc31eb4 100644 --- a/dev-python/b2sdk/b2sdk-1.17.2.ebuild +++ b/dev-python/b2sdk/b2sdk-1.17.2.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 DESCRIPTION="The client library for BackBlaze's B2 product" diff --git a/dev-python/baron/baron-0.9.ebuild b/dev-python/baron/baron-0.9.ebuild index 5268f6612d..79ba62ebfa 100644 --- a/dev-python/baron/baron-0.9.ebuild +++ b/dev-python/baron/baron-0.9.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/base58/base58-2.1.1-r1.ebuild b/dev-python/base58/base58-2.1.1-r1.ebuild index 8a1bc3939a..5ba205fa5d 100644 --- a/dev-python/base58/base58-2.1.1-r1.ebuild +++ b/dev-python/base58/base58-2.1.1-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi diff --git a/dev-python/betamax-serializers/betamax-serializers-0.2.1.ebuild b/dev-python/betamax-serializers/betamax-serializers-0.2.1.ebuild index f02243b65a..b8893b5f26 100644 --- a/dev-python/betamax-serializers/betamax-serializers-0.2.1.ebuild +++ b/dev-python/betamax-serializers/betamax-serializers-0.2.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( pypy3 python3_{9..11} ) +PYTHON_COMPAT=( pypy3 python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools PYPI_NO_NORMALIZE=1 inherit distutils-r1 optfeature pypi diff --git a/dev-python/betterproto/betterproto-2.0.0_beta4.ebuild b/dev-python/betterproto/betterproto-2.0.0_beta4.ebuild index b01239c687..d14f1bea4a 100644 --- a/dev-python/betterproto/betterproto-2.0.0_beta4.ebuild +++ b/dev-python/betterproto/betterproto-2.0.0_beta4.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=poetry -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 optfeature diff --git a/dev-python/betterproto/betterproto-2.0.0_beta5.ebuild b/dev-python/betterproto/betterproto-2.0.0_beta5.ebuild index bbc0e306e6..954c2ac038 100644 --- a/dev-python/betterproto/betterproto-2.0.0_beta5.ebuild +++ b/dev-python/betterproto/betterproto-2.0.0_beta5.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=poetry -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 optfeature diff --git a/dev-python/betterproto/betterproto-9999.ebuild b/dev-python/betterproto/betterproto-9999.ebuild index afbd420e9a..e54eff02a6 100644 --- a/dev-python/betterproto/betterproto-9999.ebuild +++ b/dev-python/betterproto/betterproto-9999.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=poetry -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 optfeature diff --git a/dev-python/beziers/beziers-0.4.0-r2.ebuild b/dev-python/beziers/beziers-0.4.0-r2.ebuild index 69501c49d8..09093cf5a5 100644 --- a/dev-python/beziers/beziers-0.4.0-r2.ebuild +++ b/dev-python/beziers/beziers-0.4.0-r2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 optfeature pypi diff --git a/dev-python/bidict/bidict-0.22.1.ebuild b/dev-python/bidict/bidict-0.22.1.ebuild index 5e30a95406..696a8ca243 100644 --- a/dev-python/bidict/bidict-0.22.1.ebuild +++ b/dev-python/bidict/bidict-0.22.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/billiard/billiard-4.0.2.ebuild b/dev-python/billiard/billiard-4.0.2.ebuild index 11c8725eb4..d15a684af1 100644 --- a/dev-python/billiard/billiard-4.0.2.ebuild +++ b/dev-python/billiard/billiard-4.0.2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/bitbox02/Manifest b/dev-python/bitbox02/Manifest deleted file mode 100644 index f90182aba4..0000000000 --- a/dev-python/bitbox02/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST bitbox02-5.3.0.tar.gz 54294 BLAKE2B acb2188b272787a86643b1884b87441d4753ef3d792a3a400046984a9272635aa8ceac874193e7b85fb73583da2b71a7450802f34a32d529ccd182bcd82d4e4c SHA512 4be284b431ddc5dcf2b774286b7383523f6dc2fda32f95c9676bb2f1ef3f88f692966b31d906e0fa272a92c4e1d3314a2f2e09adca6dab66b75487e0e0b2206f diff --git a/dev-python/bitbox02/bitbox02-5.3.0.ebuild b/dev-python/bitbox02/bitbox02-5.3.0.ebuild deleted file mode 100644 index 81d12151c8..0000000000 --- a/dev-python/bitbox02/bitbox02-5.3.0.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 2021-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_9 ) -inherit distutils-r1 pypi - -DESCRIPTION="Python API for communicating with the BitBox02 device" -HOMEPAGE="https://github.com/digitalbitbox/bitbox02-firmware" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" - -RDEPEND=" - >=dev-python/base58-2.0.0[${PYTHON_USEDEP}] - >=dev-python/ecdsa-0.14.0[${PYTHON_USEDEP}] - >=dev-python/hidapi-0.7.99[${PYTHON_USEDEP}] - >=dev-python/noiseprotocol-0.3.0[${PYTHON_USEDEP}] - >=dev-python/protobuf-python-3.7.0[${PYTHON_USEDEP}] - >=dev-python/semver-2.8.1[${PYTHON_USEDEP}] - >=dev-python/typing-extensions-3.7.4[${PYTHON_USEDEP}]" -BDEPEND="" diff --git a/dev-python/bitbox02/metadata.xml b/dev-python/bitbox02/metadata.xml deleted file mode 100644 index e00e4a2f99..0000000000 --- a/dev-python/bitbox02/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - a.zuber@gmx.ch - Andreas Zuber - - - digitalbitbox/bitbox02-firmware - - diff --git a/dev-python/blurhash/blurhash-1.1.4.ebuild b/dev-python/blurhash/blurhash-1.1.4.ebuild index 9349c11608..e5c1d85075 100644 --- a/dev-python/blurhash/blurhash-1.1.4.ebuild +++ b/dev-python/blurhash/blurhash-1.1.4.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi diff --git a/dev-python/booleanOperations/booleanOperations-0.9.0-r2.ebuild b/dev-python/booleanOperations/booleanOperations-0.9.0-r2.ebuild index b796f43699..a5ac5cf256 100644 --- a/dev-python/booleanOperations/booleanOperations-0.9.0-r2.ebuild +++ b/dev-python/booleanOperations/booleanOperations-0.9.0-r2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools PYPI_NO_NORMALIZE=1 inherit distutils-r1 pypi diff --git a/dev-python/browserstack-local-python/browserstack-local-python-1.2.3.ebuild b/dev-python/browserstack-local-python/browserstack-local-python-1.2.3.ebuild index 4049b764cc..448f4419b7 100644 --- a/dev-python/browserstack-local-python/browserstack-local-python-1.2.3.ebuild +++ b/dev-python/browserstack-local-python/browserstack-local-python-1.2.3.ebuild @@ -5,7 +5,7 @@ EAPI=8 MYP="${P/-python/}" MYPN="${PN/-python/}" -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 diff --git a/dev-python/bson/bson-0.5.10.ebuild b/dev-python/bson/bson-0.5.10.ebuild index a44151829c..89b9066c96 100644 --- a/dev-python/bson/bson-0.5.10.ebuild +++ b/dev-python/bson/bson-0.5.10.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 diff --git a/dev-python/cffsubr/cffsubr-0.2.9_p1.ebuild b/dev-python/cffsubr/cffsubr-0.2.9_p1.ebuild index 60dae3b8b4..94a3b83f98 100644 --- a/dev-python/cffsubr/cffsubr-0.2.9_p1.ebuild +++ b/dev-python/cffsubr/cffsubr-0.2.9_p1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 MY_PV="${PV/_p/.post}" diff --git a/dev-python/click-repl/click-repl-0.2.0-r1.ebuild b/dev-python/click-repl/click-repl-0.2.0-r1.ebuild index 1974a023f1..35657b29fd 100644 --- a/dev-python/click-repl/click-repl-0.2.0-r1.ebuild +++ b/dev-python/click-repl/click-repl-0.2.0-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/clufter/clufter-0.77.2.ebuild b/dev-python/clufter/clufter-0.77.2.ebuild index 6a3e713f50..f6104ca15e 100644 --- a/dev-python/clufter/clufter-0.77.2.ebuild +++ b/dev-python/clufter/clufter-0.77.2.ebuild @@ -4,7 +4,7 @@ EAPI=7 DISTUTILS_USE_SETUPTOOLS=rdepend -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 diff --git a/dev-python/cmarkgfm/cmarkgfm-2022.10.27.ebuild b/dev-python/cmarkgfm/cmarkgfm-2022.10.27.ebuild index a18a0903f2..c12c621c1e 100644 --- a/dev-python/cmarkgfm/cmarkgfm-2022.10.27.ebuild +++ b/dev-python/cmarkgfm/cmarkgfm-2022.10.27.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 edos2unix diff --git a/dev-python/codecov/codecov-2.1.12.ebuild b/dev-python/codecov/codecov-2.1.12.ebuild index 022d60293a..5aa1360c7e 100644 --- a/dev-python/codecov/codecov-2.1.12.ebuild +++ b/dev-python/codecov/codecov-2.1.12.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/colored/colored-1.4.2.ebuild b/dev-python/colored/colored-1.4.2.ebuild index d4cfbb9776..9985bba407 100644 --- a/dev-python/colored/colored-1.4.2.ebuild +++ b/dev-python/colored/colored-1.4.2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} pypy3 ) +PYTHON_COMPAT=( python3_10 pypy3 ) inherit distutils-r1 EGIT_REPO_URI="https://gitlab.com/dslackw/${PN}" diff --git a/dev-python/colored/colored-1.4.3.ebuild b/dev-python/colored/colored-1.4.3.ebuild index ff0a82bfd5..e767c29823 100644 --- a/dev-python/colored/colored-1.4.3.ebuild +++ b/dev-python/colored/colored-1.4.3.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} pypy3 ) +PYTHON_COMPAT=( python3_10 pypy3 ) inherit distutils-r1 EGIT_REPO_URI="https://gitlab.com/dslackw/${PN}" diff --git a/dev-python/commandlines/commandlines-0.4.1-r1.ebuild b/dev-python/commandlines/commandlines-0.4.1-r1.ebuild index 38f9195bb1..17a83237c6 100644 --- a/dev-python/commandlines/commandlines-0.4.1-r1.ebuild +++ b/dev-python/commandlines/commandlines-0.4.1-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/compreffor/compreffor-0.5.2.ebuild b/dev-python/compreffor/compreffor-0.5.2.ebuild index 88cfc3ac97..6cebfb487b 100644 --- a/dev-python/compreffor/compreffor-0.5.2.ebuild +++ b/dev-python/compreffor/compreffor-0.5.2.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 pypi DESCRIPTION="A CFF table subroutinizer for FontTools" diff --git a/dev-python/confluent-kafka/confluent-kafka-1.8.2-r1.ebuild b/dev-python/confluent-kafka/confluent-kafka-1.8.2-r1.ebuild index e928365290..5854fcf7eb 100644 --- a/dev-python/confluent-kafka/confluent-kafka-1.8.2-r1.ebuild +++ b/dev-python/confluent-kafka/confluent-kafka-1.8.2-r1.ebuild @@ -5,7 +5,7 @@ EAPI=8 EPYTEST_IGNORE=( tests/integration ) MYPN="${PN}-python" -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 optfeature diff --git a/dev-python/confluent-kafka/confluent-kafka-1.9.0.ebuild b/dev-python/confluent-kafka/confluent-kafka-1.9.0.ebuild index 0e2ea85d41..feaa94d9ee 100644 --- a/dev-python/confluent-kafka/confluent-kafka-1.9.0.ebuild +++ b/dev-python/confluent-kafka/confluent-kafka-1.9.0.ebuild @@ -5,7 +5,7 @@ EAPI=8 EPYTEST_IGNORE=( tests/integration ) MYPN="${PN}-python" -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 optfeature diff --git a/dev-python/convertdate/convertdate-2.4.0.ebuild b/dev-python/convertdate/convertdate-2.4.0.ebuild index 5749ed5d36..bc3a578f70 100644 --- a/dev-python/convertdate/convertdate-2.4.0.ebuild +++ b/dev-python/convertdate/convertdate-2.4.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/cryptg/cryptg-0.4.ebuild b/dev-python/cryptg/cryptg-0.4.ebuild index a25b13f6b6..4bb3fbef02 100644 --- a/dev-python/cryptg/cryptg-0.4.ebuild +++ b/dev-python/cryptg/cryptg-0.4.ebuild @@ -70,7 +70,7 @@ CRATES=" windows_x86_64_msvc-0.42.0 " DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit cargo distutils-r1 diff --git a/dev-python/cu2qu/cu2qu-1.6.7_p2.ebuild b/dev-python/cu2qu/cu2qu-1.6.7_p2.ebuild index e9434bd5ca..776d4caebc 100644 --- a/dev-python/cu2qu/cu2qu-1.6.7_p2.ebuild +++ b/dev-python/cu2qu/cu2qu-1.6.7_p2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 optfeature pypi diff --git a/dev-python/curio/curio-1.6.ebuild b/dev-python/curio/curio-1.6.ebuild index fc7805ff92..d231c33d2e 100644 --- a/dev-python/curio/curio-1.6.ebuild +++ b/dev-python/curio/curio-1.6.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi diff --git a/dev-python/cx-oracle/cx-oracle-8.3.0.ebuild b/dev-python/cx-oracle/cx-oracle-8.3.0.ebuild index 9e648c8511..4e613d180d 100644 --- a/dev-python/cx-oracle/cx-oracle-8.3.0.ebuild +++ b/dev-python/cx-oracle/cx-oracle-8.3.0.ebuild @@ -3,7 +3,7 @@ EAPI="8" -PYTHON_COMPAT=( python3_{9,10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 diff --git a/dev-python/dacite/dacite-1.6.0.ebuild b/dev-python/dacite/dacite-1.6.0.ebuild index 00e4861e97..cf4e330d75 100644 --- a/dev-python/dacite/dacite-1.6.0.ebuild +++ b/dev-python/dacite/dacite-1.6.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 diff --git a/dev-python/daff/daff-1.3.46.ebuild b/dev-python/daff/daff-1.3.46.ebuild index 30bd0585ee..e507624d13 100644 --- a/dev-python/daff/daff-1.3.46.ebuild +++ b/dev-python/daff/daff-1.3.46.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 pypi diff --git a/dev-python/daiquiri/daiquiri-3.0.1.ebuild b/dev-python/daiquiri/daiquiri-3.0.1.ebuild index 303919786c..36c96adb07 100644 --- a/dev-python/daiquiri/daiquiri-3.0.1.ebuild +++ b/dev-python/daiquiri/daiquiri-3.0.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} pypy3 ) +PYTHON_COMPAT=( python3_10 pypy3 ) inherit distutils-r1 pypi diff --git a/dev-python/darkdetect/darkdetect-0.8.0.ebuild b/dev-python/darkdetect/darkdetect-0.8.0.ebuild index ba7706aff5..2037ee6cb3 100644 --- a/dev-python/darkdetect/darkdetect-0.8.0.ebuild +++ b/dev-python/darkdetect/darkdetect-0.8.0.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi diff --git a/dev-python/dasbus/dasbus-1.7.ebuild b/dev-python/dasbus/dasbus-1.7.ebuild index 1ab8eee570..2f43a9d74e 100644 --- a/dev-python/dasbus/dasbus-1.7.ebuild +++ b/dev-python/dasbus/dasbus-1.7.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 DESCRIPTION="DBus library in Python 3" diff --git a/dev-python/dataclasses_json/dataclasses_json-0.5.7.ebuild b/dev-python/dataclasses_json/dataclasses_json-0.5.7.ebuild index 318479d797..7ddb358474 100644 --- a/dev-python/dataclasses_json/dataclasses_json-0.5.7.ebuild +++ b/dev-python/dataclasses_json/dataclasses_json-0.5.7.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 diff --git a/dev-python/dateparser/dateparser-1.1.7.ebuild b/dev-python/dateparser/dateparser-1.1.7.ebuild index 475fd531ec..744f0b6ad5 100644 --- a/dev-python/dateparser/dateparser-1.1.7.ebuild +++ b/dev-python/dateparser/dateparser-1.1.7.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 optfeature pypi diff --git a/dev-python/dateparser/dateparser-1.1.8.ebuild b/dev-python/dateparser/dateparser-1.1.8.ebuild index 28056e4646..5133e74d74 100644 --- a/dev-python/dateparser/dateparser-1.1.8.ebuild +++ b/dev-python/dateparser/dateparser-1.1.8.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 optfeature pypi diff --git a/dev-python/decopatch/decopatch-1.4.10.ebuild b/dev-python/decopatch/decopatch-1.4.10.ebuild index 2995de0646..e4e7446c82 100644 --- a/dev-python/decopatch/decopatch-1.4.10.ebuild +++ b/dev-python/decopatch/decopatch-1.4.10.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools DOCS_BUILDER="mkdocs" diff --git a/dev-python/decopatch/decopatch-1.4.9.ebuild b/dev-python/decopatch/decopatch-1.4.9.ebuild index 49a3552e64..4512c93df7 100644 --- a/dev-python/decopatch/decopatch-1.4.9.ebuild +++ b/dev-python/decopatch/decopatch-1.4.9.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools DOCS_BUILDER="mkdocs" diff --git a/dev-python/defcon/defcon-0.10.2.ebuild b/dev-python/defcon/defcon-0.10.2.ebuild index 8e91f7cf27..68aa76f5cc 100644 --- a/dev-python/defcon/defcon-0.10.2.ebuild +++ b/dev-python/defcon/defcon-0.10.2.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 pypi DESCRIPTION="A set of UFO based objects for use in font editing applications" diff --git a/dev-python/desktop-notifier/Manifest b/dev-python/desktop-notifier/Manifest index 9ae8cee461..6d34efc32c 100644 --- a/dev-python/desktop-notifier/Manifest +++ b/dev-python/desktop-notifier/Manifest @@ -1 +1,2 @@ DIST desktop-notifier-3.4.3.tar.gz 29196 BLAKE2B 975ff8e7f9b775a5272c3db426ddb35aacff4986531bd18dc4c06859f14966cf8d701ed2695fe5cf9f42f650ae881c7c27d66a4edc0c2305f304b9122083bb2c SHA512 163ef300c3929f3e92a8ac1018d5f22b439d5381df825dab08796897267b7bbf8e3053cd2428c2a41b875b44ee4f7637974a87897e24db0f43448342dd243265 +DIST desktop-notifier-3.5.1.tar.gz 29448 BLAKE2B 243749ab20a12fee23dec5e4803b13478c63fc32969d2821fefc5cadf2b4b662e92887ee6d8641c0005a131dae847daa567665a18159214d4096c9e8c974937f SHA512 729a20c30d9bb85f521dbdf8967b1dd0b1cce0afd0053854143596353ac0bc4db834651ea442f7eae3060e40906af7c4405d902568637b74d3e1032f7233c28b diff --git a/dev-python/desktop-notifier/desktop-notifier-3.4.3.ebuild b/dev-python/desktop-notifier/desktop-notifier-3.4.3.ebuild index 9df37dfe61..3d2b20f5aa 100644 --- a/dev-python/desktop-notifier/desktop-notifier-3.4.3.ebuild +++ b/dev-python/desktop-notifier/desktop-notifier-3.4.3.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools PYPI_NO_NORMALIZE=1 diff --git a/dev-python/desktop-notifier/desktop-notifier-3.5.1.ebuild b/dev-python/desktop-notifier/desktop-notifier-3.5.1.ebuild new file mode 100644 index 0000000000..3d2b20f5aa --- /dev/null +++ b/dev-python/desktop-notifier/desktop-notifier-3.5.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 2021-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..11} ) +DISTUTILS_USE_PEP517=setuptools +PYPI_NO_NORMALIZE=1 + +inherit distutils-r1 pypi + +DESCRIPTION="desktop-notifier is a Python library for cross-platform desktop notifications" +HOMEPAGE=" + https://desktop-notifier.readthedocs.io + https://pypi.org/project/desktop-notifier/ + https://github.com/samschott/desktop-notifier +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-python/wheel[${PYTHON_USEDEP}] + dev-python/packaging[${PYTHON_USEDEP}] + dev-python/dbus-next[${PYTHON_USEDEP}] +" +BDEPEND=" + dev-python/build[${PYTHON_USEDEP}] +" diff --git a/dev-python/devtools/devtools-0.10.0-r1.ebuild b/dev-python/devtools/devtools-0.10.0-r1.ebuild index 28ecb35661..417e5be129 100644 --- a/dev-python/devtools/devtools-0.10.0-r1.ebuild +++ b/dev-python/devtools/devtools-0.10.0-r1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=hatchling -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DOCS_BUILDER=mkdocs DOCS_DEPEND=( diff --git a/dev-python/digitalocean/digitalocean-1.17.0-r1.ebuild b/dev-python/digitalocean/digitalocean-1.17.0-r1.ebuild index ac7a7f6ad0..4d9fea2c00 100644 --- a/dev-python/digitalocean/digitalocean-1.17.0-r1.ebuild +++ b/dev-python/digitalocean/digitalocean-1.17.0-r1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 DESCRIPTION="Digitalocean API access library" diff --git a/dev-python/digitalocean/digitalocean-1.17.0.ebuild b/dev-python/digitalocean/digitalocean-1.17.0.ebuild index 69b793acaf..9d80c2b00c 100644 --- a/dev-python/digitalocean/digitalocean-1.17.0.ebuild +++ b/dev-python/digitalocean/digitalocean-1.17.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 DESCRIPTION="Digitalocean API access library" diff --git a/dev-python/django-bleach/django-bleach-3.0.1.ebuild b/dev-python/django-bleach/django-bleach-3.0.1.ebuild index fb07aaeca1..f06ca6b3d6 100644 --- a/dev-python/django-bleach/django-bleach-3.0.1.ebuild +++ b/dev-python/django-bleach/django-bleach-3.0.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/django-markdownify/django-markdownify-0.9.2.ebuild b/dev-python/django-markdownify/django-markdownify-0.9.2.ebuild index 59df97da2e..8448b9b91f 100644 --- a/dev-python/django-markdownify/django-markdownify-0.9.2.ebuild +++ b/dev-python/django-markdownify/django-markdownify-0.9.2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/django-widget-tweaks/django-widget-tweaks-1.4.12.ebuild b/dev-python/django-widget-tweaks/django-widget-tweaks-1.4.12.ebuild index b9fc60a629..2107541bbc 100644 --- a/dev-python/django-widget-tweaks/django-widget-tweaks-1.4.12.ebuild +++ b/dev-python/django-widget-tweaks/django-widget-tweaks-1.4.12.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/dotmap/dotmap-1.3.30-r1.ebuild b/dev-python/dotmap/dotmap-1.3.30-r1.ebuild index 8ad8bacc18..fb71f13e3f 100644 --- a/dev-python/dotmap/dotmap-1.3.30-r1.ebuild +++ b/dev-python/dotmap/dotmap-1.3.30-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi diff --git a/dev-python/doubles/doubles-1.5.3.ebuild b/dev-python/doubles/doubles-1.5.3.ebuild index 1a07de7980..8329c86551 100644 --- a/dev-python/doubles/doubles-1.5.3.ebuild +++ b/dev-python/doubles/doubles-1.5.3.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/doxypypy/doxypypy-0.8.8.6_p20210405.ebuild b/dev-python/doxypypy/doxypypy-0.8.8.6_p20210405.ebuild index 3037d2a661..a5dfdcac2c 100644 --- a/dev-python/doxypypy/doxypypy-0.8.8.6_p20210405.ebuild +++ b/dev-python/doxypypy/doxypypy-0.8.8.6_p20210405.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 COMMIT="39115c3d061d2f83e4a030bcb8642ec6f3203e61" diff --git a/dev-python/dropbox/dropbox-11.36.1.ebuild b/dev-python/dropbox/dropbox-11.36.1.ebuild index adf7529511..cc7624868f 100644 --- a/dev-python/dropbox/dropbox-11.36.1.ebuild +++ b/dev-python/dropbox/dropbox-11.36.1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 GH_PN=dropbox-sdk-python diff --git a/dev-python/emailthreads/emailthreads-0.1.3.ebuild b/dev-python/emailthreads/emailthreads-0.1.3.ebuild index 668228dabe..4a02155fb0 100644 --- a/dev-python/emailthreads/emailthreads-0.1.3.ebuild +++ b/dev-python/emailthreads/emailthreads-0.1.3.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/etcd3/etcd3-0.12.0.ebuild b/dev-python/etcd3/etcd3-0.12.0.ebuild index 8760814e46..b467a0c96d 100644 --- a/dev-python/etcd3/etcd3-0.12.0.ebuild +++ b/dev-python/etcd3/etcd3-0.12.0.ebuild @@ -9,7 +9,7 @@ EPYTEST_DESELECT=( tests/test_etcd3.py::TestEtcd3 tests/test_etcd3.py::TestAlarms ) -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 pypi diff --git a/dev-python/etcd3gw/etcd3gw-1.0.2.ebuild b/dev-python/etcd3gw/etcd3gw-1.0.2.ebuild index f2ae738b38..f13bf7185c 100644 --- a/dev-python/etcd3gw/etcd3gw-1.0.2.ebuild +++ b/dev-python/etcd3gw/etcd3gw-1.0.2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 pypi diff --git a/dev-python/eventlet/eventlet-0.33.3.ebuild b/dev-python/eventlet/eventlet-0.33.3.ebuild index a037497621..8438bfa947 100644 --- a/dev-python/eventlet/eventlet-0.33.3.ebuild +++ b/dev-python/eventlet/eventlet-0.33.3.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/exifread/exifread-3.0.0.ebuild b/dev-python/exifread/exifread-3.0.0.ebuild index 4cbb9724fc..d603e6af8a 100644 --- a/dev-python/exifread/exifread-3.0.0.ebuild +++ b/dev-python/exifread/exifread-3.0.0.ebuild @@ -5,7 +5,7 @@ EAPI=8 DISTUTILS_USE_SETUPTOOLS=bdepend MY_PN="exif-py" -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 diff --git a/dev-python/factory-boy/factory-boy-3.2.1-r1.ebuild b/dev-python/factory-boy/factory-boy-3.2.1-r1.ebuild index 85de6e6817..198eebe428 100644 --- a/dev-python/factory-boy/factory-boy-3.2.1-r1.ebuild +++ b/dev-python/factory-boy/factory-boy-3.2.1-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi diff --git a/dev-python/fake-useragent/fake-useragent-1.1.2.ebuild b/dev-python/fake-useragent/fake-useragent-1.1.2.ebuild index 5da9302018..73b27cb3e8 100644 --- a/dev-python/fake-useragent/fake-useragent-1.1.2.ebuild +++ b/dev-python/fake-useragent/fake-useragent-1.1.2.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 DESCRIPTION="Up to date simple useragent faker with real world database" diff --git a/dev-python/fastavro/fastavro-1.7.0.ebuild b/dev-python/fastavro/fastavro-1.7.0.ebuild index f61b1b0335..6a1024faa5 100644 --- a/dev-python/fastavro/fastavro-1.7.0.ebuild +++ b/dev-python/fastavro/fastavro-1.7.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 optfeature pypi diff --git a/dev-python/filecheck/filecheck-0.0.22.ebuild b/dev-python/filecheck/filecheck-0.0.22.ebuild index 58ac67a5fa..a529a9c561 100644 --- a/dev-python/filecheck/filecheck-0.0.22.ebuild +++ b/dev-python/filecheck/filecheck-0.0.22.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=poetry -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 pypi diff --git a/dev-python/flask-restx/flask-restx-0.5.1.ebuild b/dev-python/flask-restx/flask-restx-0.5.1.ebuild index b6610141cc..22760a33c3 100644 --- a/dev-python/flask-restx/flask-restx-0.5.1.ebuild +++ b/dev-python/flask-restx/flask-restx-0.5.1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..10}) +PYTHON_COMPAT=( python3_10) inherit distutils-r1 DESCRIPTION="Framework API development with Flask" diff --git a/dev-python/font-v/font-v-2.1.0-r1.ebuild b/dev-python/font-v/font-v-2.1.0-r1.ebuild index 2a70cb0b8d..e7fe3b5a57 100644 --- a/dev-python/font-v/font-v-2.1.0-r1.ebuild +++ b/dev-python/font-v/font-v-2.1.0-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 edo diff --git a/dev-python/fontMath/fontMath-0.9.3.ebuild b/dev-python/fontMath/fontMath-0.9.3.ebuild index 7ee929cb90..37cc5c2f15 100644 --- a/dev-python/fontMath/fontMath-0.9.3.ebuild +++ b/dev-python/fontMath/fontMath-0.9.3.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools PYPI_NO_NORMALIZE=1 inherit distutils-r1 pypi diff --git a/dev-python/fontParts/fontParts-0.10.6-r1.ebuild b/dev-python/fontParts/fontParts-0.10.6-r1.ebuild index ebd194dfbc..446ad918c4 100644 --- a/dev-python/fontParts/fontParts-0.10.6-r1.ebuild +++ b/dev-python/fontParts/fontParts-0.10.6-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/fontPens/fontPens-0.2.4-r2.ebuild b/dev-python/fontPens/fontPens-0.2.4-r2.ebuild index 65fa0b05ba..3c75bbb520 100644 --- a/dev-python/fontPens/fontPens-0.2.4-r2.ebuild +++ b/dev-python/fontPens/fontPens-0.2.4-r2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools PYPI_NO_NORMALIZE=1 inherit distutils-r1 pypi diff --git a/dev-python/funcsigs/funcsigs-0.4.ebuild b/dev-python/funcsigs/funcsigs-0.4.ebuild index 87a4b28e57..0e3e095a73 100644 --- a/dev-python/funcsigs/funcsigs-0.4.ebuild +++ b/dev-python/funcsigs/funcsigs-0.4.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/furl/furl-2.1.3.ebuild b/dev-python/furl/furl-2.1.3.ebuild index 0044f1e7c2..2b8e29b8fe 100644 --- a/dev-python/furl/furl-2.1.3.ebuild +++ b/dev-python/furl/furl-2.1.3.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi diff --git a/dev-python/futurist/futurist-2.4.1.ebuild b/dev-python/futurist/futurist-2.4.1.ebuild index e21c90b115..702558c805 100644 --- a/dev-python/futurist/futurist-2.4.1.ebuild +++ b/dev-python/futurist/futurist-2.4.1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 pypi diff --git a/dev-python/gabbi/gabbi-2.7.1.ebuild b/dev-python/gabbi/gabbi-2.7.1.ebuild index 353b656e13..77eb7d61bb 100644 --- a/dev-python/gabbi/gabbi-2.7.1.ebuild +++ b/dev-python/gabbi/gabbi-2.7.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 pypi diff --git a/dev-python/gazpacho/gazpacho-1.1.ebuild b/dev-python/gazpacho/gazpacho-1.1.ebuild index bf70ddeb58..55e7800cf7 100644 --- a/dev-python/gazpacho/gazpacho-1.1.ebuild +++ b/dev-python/gazpacho/gazpacho-1.1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/gbinder/gbinder-1.1.1-r10.ebuild b/dev-python/gbinder/gbinder-1.1.1-r10.ebuild index 257da1c10d..cbccaee389 100644 --- a/dev-python/gbinder/gbinder-1.1.1-r10.ebuild +++ b/dev-python/gbinder/gbinder-1.1.1-r10.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517="setuptools" diff --git a/dev-python/gbinder/gbinder-1.1.1.ebuild b/dev-python/gbinder/gbinder-1.1.1.ebuild index 0e97a353e1..809b0e6384 100644 --- a/dev-python/gbinder/gbinder-1.1.1.ebuild +++ b/dev-python/gbinder/gbinder-1.1.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/gbinder/gbinder-9999.ebuild b/dev-python/gbinder/gbinder-9999.ebuild index 0e97a353e1..809b0e6384 100644 --- a/dev-python/gbinder/gbinder-9999.ebuild +++ b/dev-python/gbinder/gbinder-9999.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/gemcall/gemcall-0.9.1.ebuild b/dev-python/gemcall/gemcall-0.9.1.ebuild index ed133124c9..50602950a5 100644 --- a/dev-python/gemcall/gemcall-0.9.1.ebuild +++ b/dev-python/gemcall/gemcall-0.9.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi diff --git a/dev-python/gflanguages/gflanguages-0.4.0-r1.ebuild b/dev-python/gflanguages/gflanguages-0.4.0-r1.ebuild index 6886c1d2e7..233cb18c7e 100644 --- a/dev-python/gflanguages/gflanguages-0.4.0-r1.ebuild +++ b/dev-python/gflanguages/gflanguages-0.4.0-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi diff --git a/dev-python/github-sublee-glicko2/github-sublee-glicko2-0_pre20191010-r1.ebuild b/dev-python/github-sublee-glicko2/github-sublee-glicko2-0_pre20191010-r1.ebuild index 417fd85c2c..d298972eeb 100644 --- a/dev-python/github-sublee-glicko2/github-sublee-glicko2-0_pre20191010-r1.ebuild +++ b/dev-python/github-sublee-glicko2/github-sublee-glicko2-0_pre20191010-r1.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI="7" -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_SETUPTOOLS="rdepend" inherit distutils-r1 diff --git a/dev-python/glicko2/glicko2-2.0.0-r2.ebuild b/dev-python/glicko2/glicko2-2.0.0-r2.ebuild index b3b4a16f3d..f68e1fac9e 100644 --- a/dev-python/glicko2/glicko2-2.0.0-r2.ebuild +++ b/dev-python/glicko2/glicko2-2.0.0-r2.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 pypi diff --git a/dev-python/glyphsLib/glyphsLib-6.0.5.ebuild b/dev-python/glyphsLib/glyphsLib-6.0.5.ebuild index f0a8c46387..816f26e5b2 100644 --- a/dev-python/glyphsLib/glyphsLib-6.0.5.ebuild +++ b/dev-python/glyphsLib/glyphsLib-6.0.5.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 DESCRIPTION="A library to provide a bridge from Glyphs source files to UFOs" diff --git a/dev-python/glyphsets/glyphsets-0.5.4-r1.ebuild b/dev-python/glyphsets/glyphsets-0.5.4-r1.ebuild index 5a80dff3dd..5a6033615d 100644 --- a/dev-python/glyphsets/glyphsets-0.5.4-r1.ebuild +++ b/dev-python/glyphsets/glyphsets-0.5.4-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/gnuplot-py/gnuplot-py-1.8_p8.ebuild b/dev-python/gnuplot-py/gnuplot-py-1.8_p8.ebuild index 06f320b2f7..18c889f1a7 100644 --- a/dev-python/gnuplot-py/gnuplot-py-1.8_p8.ebuild +++ b/dev-python/gnuplot-py/gnuplot-py-1.8_p8.ebuild @@ -6,7 +6,7 @@ EAPI=8 MYPN="python-gnuplot" MYPV="$(ver_cut 1-2)" MYP="${PN}-${MYPV}" -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/google-cloud-storage/Manifest b/dev-python/google-cloud-storage/Manifest deleted file mode 100644 index e429deb952..0000000000 --- a/dev-python/google-cloud-storage/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST google-cloud-storage-1.36.0.tar.gz 5448275 BLAKE2B 17ba528dc8adb92eddd1153fcb103fbb1fe0c8c85b05d1263c7180313c08c3975619cd7c102f95d97c3a20a392665cb9610fc437d4253c0c8b168246a3ec645d SHA512 213704d2bbe344aaeb54487ded8879204be9178a3dbbe111234ea42d903b9de15c030fa9b585714cdc4c65db9a895f4e9713c1fe8c19ad2bcf49c4d04f599642 diff --git a/dev-python/google-cloud-storage/google-cloud-storage-1.36.0.ebuild b/dev-python/google-cloud-storage/google-cloud-storage-1.36.0.ebuild deleted file mode 100644 index d5308695f9..0000000000 --- a/dev-python/google-cloud-storage/google-cloud-storage-1.36.0.ebuild +++ /dev/null @@ -1,15 +0,0 @@ -# Copyright 2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_9 ) -inherit distutils-r1 - -DESCRIPTION="Google Cloud Storage API client library" -HOMEPAGE="https://pypi.org/project/google-cloud-storage/" -SRC_URI="https://files.pythonhosted.org/packages/6d/5c/8f311c50661d907cbe5786c1be91ac75c59fdab4b69d8f679d0926b79820/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64" diff --git a/dev-python/google-cloud-storage/metadata.xml b/dev-python/google-cloud-storage/metadata.xml deleted file mode 100644 index c8244df324..0000000000 --- a/dev-python/google-cloud-storage/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - svdm-gentoo@protonmail.com - Simon van der Maas - - diff --git a/dev-python/googletrans/googletrans-4.0.0_rc1.ebuild b/dev-python/googletrans/googletrans-4.0.0_rc1.ebuild index 2d3c8afd4c..85a9085138 100644 --- a/dev-python/googletrans/googletrans-4.0.0_rc1.ebuild +++ b/dev-python/googletrans/googletrans-4.0.0_rc1.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=8 -PYTHON_COMPAT=( python3_{9..10} pypy3 ) +PYTHON_COMPAT=( python3_10 pypy3 ) inherit distutils-r1 MY_PV=${PV/_/} diff --git a/dev-python/googletransx/googletransx-2.4.2-r2.ebuild b/dev-python/googletransx/googletransx-2.4.2-r2.ebuild index d6a7c9a08c..4e46f5312c 100644 --- a/dev-python/googletransx/googletransx-2.4.2-r2.ebuild +++ b/dev-python/googletransx/googletransx-2.4.2-r2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 pypi diff --git a/dev-python/gpxpy/gpxpy-1.5.0.ebuild b/dev-python/gpxpy/gpxpy-1.5.0.ebuild index abc324c9ae..032a3597ba 100644 --- a/dev-python/gpxpy/gpxpy-1.5.0.ebuild +++ b/dev-python/gpxpy/gpxpy-1.5.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 diff --git a/dev-python/graphene/graphene-3.0.0.ebuild b/dev-python/graphene/graphene-3.0.0.ebuild index ce04d85836..d5fd10404a 100644 --- a/dev-python/graphene/graphene-3.0.0.ebuild +++ b/dev-python/graphene/graphene-3.0.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 diff --git a/dev-python/graphene/graphene-3.2.2.ebuild b/dev-python/graphene/graphene-3.2.2.ebuild index aee9f128e8..58c97877b6 100644 --- a/dev-python/graphene/graphene-3.2.2.ebuild +++ b/dev-python/graphene/graphene-3.2.2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/graphql-core/graphql-core-3.2.3.ebuild b/dev-python/graphql-core/graphql-core-3.2.3.ebuild index 746425e777..a78e07eb1f 100644 --- a/dev-python/graphql-core/graphql-core-3.2.3.ebuild +++ b/dev-python/graphql-core/graphql-core-3.2.3.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=poetry PYPI_NO_NORMALIZE=1 inherit distutils-r1 pypi diff --git a/dev-python/graphql-relay/graphql-relay-3.1.0.ebuild b/dev-python/graphql-relay/graphql-relay-3.1.0.ebuild index e8cea6a3f8..e89d0924ed 100644 --- a/dev-python/graphql-relay/graphql-relay-3.1.0.ebuild +++ b/dev-python/graphql-relay/graphql-relay-3.1.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 PYPI_NO_NORMALIZE=1 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 pypi diff --git a/dev-python/graphql-relay/graphql-relay-3.2.0.ebuild b/dev-python/graphql-relay/graphql-relay-3.2.0.ebuild index 9d7939b001..bae4e46346 100644 --- a/dev-python/graphql-relay/graphql-relay-3.2.0.ebuild +++ b/dev-python/graphql-relay/graphql-relay-3.2.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=poetry PYPI_NO_NORMALIZE=1 inherit distutils-r1 pypi diff --git a/dev-python/griffe/griffe-0.25.4.ebuild b/dev-python/griffe/griffe-0.25.4.ebuild index 08b8d875e9..5cdd386043 100644 --- a/dev-python/griffe/griffe-0.25.4.ebuild +++ b/dev-python/griffe/griffe-0.25.4.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=pdm -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 DESCRIPTION="Signatures for entire Python programs." diff --git a/dev-python/grpclib/grpclib-0.4.2.ebuild b/dev-python/grpclib/grpclib-0.4.2.ebuild index 66f400d1e2..3576b0e421 100644 --- a/dev-python/grpclib/grpclib-0.4.2.ebuild +++ b/dev-python/grpclib/grpclib-0.4.2.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/grpclib/grpclib-0.4.3.ebuild b/dev-python/grpclib/grpclib-0.4.3.ebuild index abc0d93b0c..398d964086 100644 --- a/dev-python/grpclib/grpclib-0.4.3.ebuild +++ b/dev-python/grpclib/grpclib-0.4.3.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/guidata/guidata-2.3.0.ebuild b/dev-python/guidata/guidata-2.3.0.ebuild index 79274e40d0..31d313ad3f 100644 --- a/dev-python/guidata/guidata-2.3.0.ebuild +++ b/dev-python/guidata/guidata-2.3.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 pypi diff --git a/dev-python/hachoir/hachoir-3.2.0.ebuild b/dev-python/hachoir/hachoir-3.2.0.ebuild index 0471ea3039..6227da7157 100644 --- a/dev-python/hachoir/hachoir-3.2.0.ebuild +++ b/dev-python/hachoir/hachoir-3.2.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/hijri-converter/hijri-converter-2.2.4.ebuild b/dev-python/hijri-converter/hijri-converter-2.2.4.ebuild index 657fc7c8a1..41c7ce1b23 100644 --- a/dev-python/hijri-converter/hijri-converter-2.2.4.ebuild +++ b/dev-python/hijri-converter/hijri-converter-2.2.4.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 diff --git a/dev-python/hijridate/hijridate-2.3.0.ebuild b/dev-python/hijridate/hijridate-2.3.0.ebuild index 1a3b7733f3..3f03e203fa 100644 --- a/dev-python/hijridate/hijridate-2.3.0.ebuild +++ b/dev-python/hijridate/hijridate-2.3.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 diff --git a/dev-python/hstspreload/hstspreload-2021.12.1.ebuild b/dev-python/hstspreload/hstspreload-2021.12.1.ebuild index c2b8ff135f..9a107b2d39 100644 --- a/dev-python/hstspreload/hstspreload-2021.12.1.ebuild +++ b/dev-python/hstspreload/hstspreload-2021.12.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/http-ece/http-ece-1.1.0.ebuild b/dev-python/http-ece/http-ece-1.1.0.ebuild index 73bb35e41c..e81674c31a 100644 --- a/dev-python/http-ece/http-ece-1.1.0.ebuild +++ b/dev-python/http-ece/http-ece-1.1.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/hunter/hunter-3.5.1.ebuild b/dev-python/hunter/hunter-3.5.1.ebuild index 34d2f5b6df..c1bc7942dd 100644 --- a/dev-python/hunter/hunter-3.5.1.ebuild +++ b/dev-python/hunter/hunter-3.5.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 multiprocessing diff --git a/dev-python/hunter/hunter-3.6.0.ebuild b/dev-python/hunter/hunter-3.6.0.ebuild index 87f6407453..991057eb40 100644 --- a/dev-python/hunter/hunter-3.6.0.ebuild +++ b/dev-python/hunter/hunter-3.6.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=standalone DISTUTILS_EXT=1 inherit distutils-r1 multiprocessing diff --git a/dev-python/hwi/Manifest b/dev-python/hwi/Manifest deleted file mode 100644 index b46b59def6..0000000000 --- a/dev-python/hwi/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST hwi-1.2.1.tar.gz 200755 BLAKE2B b426dcd78f0ff6039541b768155a0be11f591ee4e72957fce16ffd26841cd92c3e80ce57daefc531c31f912ec94139f53db8823a3fadf347f0153c1d47f1ad08 SHA512 b8cdda0ce9d4d9734e2754a47343fa7f331f55c609448561b1bed304629b6f01d80dadba55193633ad6ac1a8ba595f4574ae8aa32cfc841c34cbeff315310071 -DIST hwi-2.0.2.tar.gz 2777606 BLAKE2B eacdf86c96f9123a3fef08f349a9540669dc3d304d8ef3d5c0c37baf923ec31265c1de4e8b9e68cf377ebaf212bd6b6abf935d9050b26955b335db6f3edf6126 SHA512 6c415d0ac3a673e38c87c8d9d64e789743226beff8c0148d2df3d5fc504ccce40159ddf190c1158d19f9adff4ce8ac7cf1b2ed654b1a9b9dd42181677d9823f2 diff --git a/dev-python/hwi/hwi-1.2.1.ebuild b/dev-python/hwi/hwi-1.2.1.ebuild deleted file mode 100644 index 07eadafda6..0000000000 --- a/dev-python/hwi/hwi-1.2.1.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 2020-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_9 ) -DISTUTILS_USE_SETUPTOOLS=rdepend - -inherit distutils-r1 udev - -DESCRIPTION="Library and command line tool for interacting with hardware wallets" -HOMEPAGE="https://github.com/bitcoin-core/HWI" - -MY_PN="HWI" -MY_P="${MY_PN}-${PV}" -SRC_URI="https://github.com/bitcoin-core/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" -IUSE="udev doc" - -BDEPEND="" -RDEPEND=" - >=dev-python/bitbox02-4.1.0[${PYTHON_USEDEP}] - >=dev-python/ecdsa-0.13.0[${PYTHON_USEDEP}] - >=dev-python/hidapi-0.7.99[${PYTHON_USEDEP}] - >=dev-python/libusb1-1.7.0[${PYTHON_USEDEP}] - >=dev-python/mnemonic-0.18.0[${PYTHON_USEDEP}] - >=dev-python/pyaes-1.6.0[${PYTHON_USEDEP}] - >=dev-python/typing-extensions-3.7.4.1[${PYTHON_USEDEP}]" - -distutils_enable_tests unittest - -S="${WORKDIR}/${MY_P}" - -python_prepare_all() { - # remove upper bounds on dependencies from setup.py file - sed 's/,<[0-9.]\+//' -i setup.py || die "sed failed" - - pushd test - # remove tests that require hardware emulation - rm test_coldcard.py test_device.py test_digitalbitbox.py test_keepkey.py test_ledger.py test_trezor.py - # remove udev tests because it expects the rules are installed in the libs folder - rm test_udevrules.py - popd - - distutils-r1_python_prepare_all -} - -python_install_all() { - use udev && udev_dorules hwilib/udev/*.rules - use doc && dodoc -r docs - - distutils-r1_python_install_all -} diff --git a/dev-python/hwi/hwi-2.0.2.ebuild b/dev-python/hwi/hwi-2.0.2.ebuild deleted file mode 100644 index 6e0aaa8df8..0000000000 --- a/dev-python/hwi/hwi-2.0.2.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 2020-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_9 ) -inherit distutils-r1 udev - -DESCRIPTION="Library and command line tool for interacting with hardware wallets" -HOMEPAGE="https://github.com/bitcoin-core/HWI" - -MY_PN="HWI" -MY_P="${MY_PN}-${PV}" -SRC_URI="https://github.com/bitcoin-core/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/${MY_P}" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" -IUSE="udev" - -RDEPEND=" - >=dev-python/bitbox02-5.3.0[${PYTHON_USEDEP}] - >=dev-python/ecdsa-0.13.0[${PYTHON_USEDEP}] - >=dev-python/hidapi-0.7.99[${PYTHON_USEDEP}] - >=dev-python/libusb1-1.7.0[${PYTHON_USEDEP}] - >=dev-python/mnemonic-0.18.0[${PYTHON_USEDEP}] - >=dev-python/pyaes-1.6.0[${PYTHON_USEDEP}] - >=dev-python/typing-extensions-3.7.4.1[${PYTHON_USEDEP}]" - -distutils_enable_tests unittest - -distutils_enable_sphinx docs \ - dev-python/sphinx-rtd-theme \ - dev-python/sphinxcontrib-autoprogram - -python_prepare_all() { - # remove upper bounds on dependencies from setup.py file - sed 's/,<[0-9.]\+//' -i setup.py || die - - pushd test || die - # remove tests that require hardware emulation - rm test_coldcard.py test_device.py test_digitalbitbox.py test_keepkey.py test_ledger.py test_trezor.py || die - # remove udev tests because it expects the rules are installed in the libs folder - rm test_udevrules.py || die - popd || die - - distutils-r1_python_prepare_all -} - -python_install_all() { - use udev && udev_dorules hwilib/udev/*.rules - use doc && dodoc -r docs - - distutils-r1_python_install_all -} diff --git a/dev-python/hwi/metadata.xml b/dev-python/hwi/metadata.xml deleted file mode 100644 index 2ea85663d7..0000000000 --- a/dev-python/hwi/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - a.zuber@gmx.ch - Andreas Zuber - - - bitcoin-core/HWI - - diff --git a/dev-python/hyperglot/hyperglot-0.4.4.ebuild b/dev-python/hyperglot/hyperglot-0.4.4.ebuild index cb0607ebb9..b3892afa7c 100644 --- a/dev-python/hyperglot/hyperglot-0.4.4.ebuild +++ b/dev-python/hyperglot/hyperglot-0.4.4.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/hypothesmith/hypothesmith-0.2.0.ebuild b/dev-python/hypothesmith/hypothesmith-0.2.0.ebuild index acccd17ac7..a678376012 100644 --- a/dev-python/hypothesmith/hypothesmith-0.2.0.ebuild +++ b/dev-python/hypothesmith/hypothesmith-0.2.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) # python3_11 depends on dev-python/libcst +PYTHON_COMPAT=( python3_10 ) # python3_11 depends on dev-python/libcst inherit distutils-r1 pypi diff --git a/dev-python/i3ipc/i3ipc-2.2.1-r1.ebuild b/dev-python/i3ipc/i3ipc-2.2.1-r1.ebuild index bdd7661eae..a1115ee945 100644 --- a/dev-python/i3ipc/i3ipc-2.2.1-r1.ebuild +++ b/dev-python/i3ipc/i3ipc-2.2.1-r1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517="setuptools" -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 virtualx pypi diff --git a/dev-python/i3ipc/i3ipc-2.2.1.ebuild b/dev-python/i3ipc/i3ipc-2.2.1.ebuild index 035232e644..3eb8fbbae2 100644 --- a/dev-python/i3ipc/i3ipc-2.2.1.ebuild +++ b/dev-python/i3ipc/i3ipc-2.2.1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 diff --git a/dev-python/inscriptis/inscriptis-2.3.1.ebuild b/dev-python/inscriptis/inscriptis-2.3.1.ebuild index b5a27deddc..addd3e19eb 100644 --- a/dev-python/inscriptis/inscriptis-2.3.1.ebuild +++ b/dev-python/inscriptis/inscriptis-2.3.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/inscriptis/inscriptis-2.3.2.ebuild b/dev-python/inscriptis/inscriptis-2.3.2.ebuild index b5a27deddc..addd3e19eb 100644 --- a/dev-python/inscriptis/inscriptis-2.3.2.ebuild +++ b/dev-python/inscriptis/inscriptis-2.3.2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/insipid-sphinx-theme/insipid-sphinx-theme-0.4.0.ebuild b/dev-python/insipid-sphinx-theme/insipid-sphinx-theme-0.4.0.ebuild index ad099a6404..afb6dc496c 100644 --- a/dev-python/insipid-sphinx-theme/insipid-sphinx-theme-0.4.0.ebuild +++ b/dev-python/insipid-sphinx-theme/insipid-sphinx-theme-0.4.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( pypy3 python3_{9..11} ) +PYTHON_COMPAT=( pypy3 python3_{10..11} ) inherit distutils-r1 DESCRIPTION="An insipid Sphinx theme" diff --git a/dev-python/insipid-sphinx-theme/insipid-sphinx-theme-0.4.1.ebuild b/dev-python/insipid-sphinx-theme/insipid-sphinx-theme-0.4.1.ebuild index edea47891b..e66e672b5d 100644 --- a/dev-python/insipid-sphinx-theme/insipid-sphinx-theme-0.4.1.ebuild +++ b/dev-python/insipid-sphinx-theme/insipid-sphinx-theme-0.4.1.ebuild @@ -5,7 +5,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools PYPI_NO_NORMALIZE=1 -PYTHON_COMPAT=( pypy3 python3_{9..11} ) +PYTHON_COMPAT=( pypy3 python3_{10..11} ) inherit distutils-r1 pypi DESCRIPTION="An insipid Sphinx theme" diff --git a/dev-python/isosurfaces/isosurfaces-0.1.0.ebuild b/dev-python/isosurfaces/isosurfaces-0.1.0.ebuild index f6f4fada50..df0ab1331b 100644 --- a/dev-python/isosurfaces/isosurfaces-0.1.0.ebuild +++ b/dev-python/isosurfaces/isosurfaces-0.1.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 DESCRIPTION="Construct isolines/isosurfaces of a 2D/3D scalar field defined by a function" diff --git a/dev-python/itemadapter/itemadapter-0.6.0.ebuild b/dev-python/itemadapter/itemadapter-0.6.0.ebuild index 26f7618f43..a7f2eb1474 100644 --- a/dev-python/itemadapter/itemadapter-0.6.0.ebuild +++ b/dev-python/itemadapter/itemadapter-0.6.0.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 DESCRIPTION="Common interface for scrapy data container classes" diff --git a/dev-python/itemadapter/itemadapter-0.7.0.ebuild b/dev-python/itemadapter/itemadapter-0.7.0.ebuild index 3e0ee92e58..e8e5caabd2 100644 --- a/dev-python/itemadapter/itemadapter-0.7.0.ebuild +++ b/dev-python/itemadapter/itemadapter-0.7.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 DESCRIPTION="Common interface for scrapy data container classes" diff --git a/dev-python/itemloaders/itemloaders-1.0.4.ebuild b/dev-python/itemloaders/itemloaders-1.0.4.ebuild index 4befc26760..a652f2eb4d 100644 --- a/dev-python/itemloaders/itemloaders-1.0.4.ebuild +++ b/dev-python/itemloaders/itemloaders-1.0.4.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 DESCRIPTION="Library to populate items using XPath and CSS with a convenient API" diff --git a/dev-python/itemloaders/itemloaders-1.0.6.ebuild b/dev-python/itemloaders/itemloaders-1.0.6.ebuild index b992a31885..ff51453250 100644 --- a/dev-python/itemloaders/itemloaders-1.0.6.ebuild +++ b/dev-python/itemloaders/itemloaders-1.0.6.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 DESCRIPTION="Library to populate items using XPath and CSS with a convenient API" diff --git a/dev-python/iuliia/iuliia-0.11.5.ebuild b/dev-python/iuliia/iuliia-0.11.5.ebuild index b4785cc62a..463af70dfd 100644 --- a/dev-python/iuliia/iuliia-0.11.5.ebuild +++ b/dev-python/iuliia/iuliia-0.11.5.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517="flit" inherit distutils-r1 pypi diff --git a/dev-python/j1m-sphinxautozconfig/j1m-sphinxautozconfig-0.1.0.ebuild b/dev-python/j1m-sphinxautozconfig/j1m-sphinxautozconfig-0.1.0.ebuild index 1a33eb13dc..d970db1b87 100644 --- a/dev-python/j1m-sphinxautozconfig/j1m-sphinxautozconfig-0.1.0.ebuild +++ b/dev-python/j1m-sphinxautozconfig/j1m-sphinxautozconfig-0.1.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) PYPI_NO_NORMALIZE=1 PYPI_PN="${PN/-/\.}" diff --git a/dev-python/jinja2-cli/jinja2-cli-0.8.2.ebuild b/dev-python/jinja2-cli/jinja2-cli-0.8.2.ebuild index d0ff139317..8270925b4c 100644 --- a/dev-python/jinja2-cli/jinja2-cli-0.8.2.ebuild +++ b/dev-python/jinja2-cli/jinja2-cli-0.8.2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/jplephem/jplephem-2.16.ebuild b/dev-python/jplephem/jplephem-2.16.ebuild index 81775e3d41..8fe6deb5a1 100644 --- a/dev-python/jplephem/jplephem-2.16.ebuild +++ b/dev-python/jplephem/jplephem-2.16.ebuild @@ -4,7 +4,7 @@ EAPI=7 DISTUTILS_USE_SETUPTOOLS=no -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 pypi diff --git a/dev-python/jsonpath-rw-ext/jsonpath-rw-ext-1.2.2.ebuild b/dev-python/jsonpath-rw-ext/jsonpath-rw-ext-1.2.2.ebuild index 08e1716b9a..b4b3df2186 100644 --- a/dev-python/jsonpath-rw-ext/jsonpath-rw-ext-1.2.2.ebuild +++ b/dev-python/jsonpath-rw-ext/jsonpath-rw-ext-1.2.2.ebuild @@ -8,7 +8,7 @@ EPYTEST_DESELECT=( jsonpath_rw_ext/tests/test_jsonpath_rw_ext.py::TestJsonpath_rw_ext::test_shortcut_functions ) PYPI_NO_NORMALIZE=1 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 pypi diff --git a/dev-python/jsonpath-rw/jsonpath-rw-1.4.0.ebuild b/dev-python/jsonpath-rw/jsonpath-rw-1.4.0.ebuild index e894699ec0..8cd5392286 100644 --- a/dev-python/jsonpath-rw/jsonpath-rw-1.4.0.ebuild +++ b/dev-python/jsonpath-rw/jsonpath-rw-1.4.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 MYPN="python-${PN}" -PYTHON_COMPAT=( python3_{9..10} pypy3 ) +PYTHON_COMPAT=( python3_10 pypy3 ) inherit distutils-r1 diff --git a/dev-python/jupyter-sphinx/jupyter-sphinx-0.4.0.ebuild b/dev-python/jupyter-sphinx/jupyter-sphinx-0.4.0.ebuild index a8d29b646e..bf94368d07 100644 --- a/dev-python/jupyter-sphinx/jupyter-sphinx-0.4.0.ebuild +++ b/dev-python/jupyter-sphinx/jupyter-sphinx-0.4.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/langdetect/langdetect-1.0.9.ebuild b/dev-python/langdetect/langdetect-1.0.9.ebuild index 08e68138f6..5a5c248cb1 100644 --- a/dev-python/langdetect/langdetect-1.0.9.ebuild +++ b/dev-python/langdetect/langdetect-1.0.9.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi diff --git a/dev-python/libcst/libcst-0.4.3_p20220607.ebuild b/dev-python/libcst/libcst-0.4.3_p20220607.ebuild index 916cd4b963..e9d473f64d 100644 --- a/dev-python/libcst/libcst-0.4.3_p20220607.ebuild +++ b/dev-python/libcst/libcst-0.4.3_p20220607.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) # python3_11 depends on dev-python/black +PYTHON_COMPAT=( python3_10 ) # python3_11 depends on dev-python/black # Make sure to remove 'libcst', 'libcst_native' from crates list CRATES=" diff --git a/dev-python/libusb1/libusb1-2.0.1.ebuild b/dev-python/libusb1/libusb1-2.0.1.ebuild index 3872620b15..80390ac655 100644 --- a/dev-python/libusb1/libusb1-2.0.1.ebuild +++ b/dev-python/libusb1/libusb1-2.0.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} pypy3 ) +PYTHON_COMPAT=( python3_10 pypy3 ) inherit distutils-r1 pypi diff --git a/dev-python/manhole/manhole-1.8.0-r1.ebuild b/dev-python/manhole/manhole-1.8.0-r1.ebuild index aa13854168..a0d3e53599 100644 --- a/dev-python/manhole/manhole-1.8.0-r1.ebuild +++ b/dev-python/manhole/manhole-1.8.0-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/markdown-include/markdown-include-0.8.1.ebuild b/dev-python/markdown-include/markdown-include-0.8.1.ebuild index 04ed109b22..ed4e07389f 100644 --- a/dev-python/markdown-include/markdown-include-0.8.1.ebuild +++ b/dev-python/markdown-include/markdown-include-0.8.1.ebuild @@ -5,7 +5,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools PYPI_NO_NORMALIZE=1 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 pypi diff --git a/dev-python/markdownify/markdownify-0.11.6.ebuild b/dev-python/markdownify/markdownify-0.11.6.ebuild index 1ba13d8653..089b945874 100644 --- a/dev-python/markdownify/markdownify-0.11.6.ebuild +++ b/dev-python/markdownify/markdownify-0.11.6.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi diff --git a/dev-python/marshmallow_enum/marshmallow_enum-1.5.1.ebuild b/dev-python/marshmallow_enum/marshmallow_enum-1.5.1.ebuild index 381f0740a1..44fca4de0b 100644 --- a/dev-python/marshmallow_enum/marshmallow_enum-1.5.1.ebuild +++ b/dev-python/marshmallow_enum/marshmallow_enum-1.5.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/mastodon-py/mastodon-py-1.8.0.ebuild b/dev-python/mastodon-py/mastodon-py-1.8.0.ebuild index cad6a34bff..b9beddb14d 100644 --- a/dev-python/mastodon-py/mastodon-py-1.8.0.ebuild +++ b/dev-python/mastodon-py/mastodon-py-1.8.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 optfeature MY_PN="Mastodon.py" diff --git a/dev-python/mastodon-py/mastodon-py-1.8.1.ebuild b/dev-python/mastodon-py/mastodon-py-1.8.1.ebuild index 7325ee507b..8120456200 100644 --- a/dev-python/mastodon-py/mastodon-py-1.8.1.ebuild +++ b/dev-python/mastodon-py/mastodon-py-1.8.1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) PYPI_NO_NORMALIZE=1 PYPI_PN="Mastodon.py" inherit distutils-r1 optfeature pypi diff --git a/dev-python/material-color-utilities/material-color-utilities-0.1.5.ebuild b/dev-python/material-color-utilities/material-color-utilities-0.1.5.ebuild index 030d3cc732..ac144e4502 100644 --- a/dev-python/material-color-utilities/material-color-utilities-0.1.5.ebuild +++ b/dev-python/material-color-utilities/material-color-utilities-0.1.5.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=(python3_{9..11}) +PYTHON_COMPAT=(python3_{10..11}) DISTUTILS_USE_PEP517=poetry inherit distutils-r1 diff --git a/dev-python/material-color-utilities/material-color-utilities-9999.ebuild b/dev-python/material-color-utilities/material-color-utilities-9999.ebuild index 030d3cc732..ac144e4502 100644 --- a/dev-python/material-color-utilities/material-color-utilities-9999.ebuild +++ b/dev-python/material-color-utilities/material-color-utilities-9999.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=(python3_{9..11}) +PYTHON_COMPAT=(python3_{10..11}) DISTUTILS_USE_PEP517=poetry inherit distutils-r1 diff --git a/dev-python/mautrix/mautrix-0.19.13.ebuild b/dev-python/mautrix/mautrix-0.19.13.ebuild index 8067c5fd3f..82b63f60ff 100644 --- a/dev-python/mautrix/mautrix-0.19.13.ebuild +++ b/dev-python/mautrix/mautrix-0.19.13.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 optfeature pypi diff --git a/dev-python/minio/minio-7.1.14.ebuild b/dev-python/minio/minio-7.1.14.ebuild index ae2d24881a..2620a6929f 100644 --- a/dev-python/minio/minio-7.1.14.ebuild +++ b/dev-python/minio/minio-7.1.14.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi diff --git a/dev-python/mistletoe/mistletoe-1.0.1.ebuild b/dev-python/mistletoe/mistletoe-1.0.1.ebuild index 6145116497..f623e99eb5 100644 --- a/dev-python/mistletoe/mistletoe-1.0.1.ebuild +++ b/dev-python/mistletoe/mistletoe-1.0.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi diff --git a/dev-python/mitype/mitype-0.2.4.ebuild b/dev-python/mitype/mitype-0.2.4.ebuild index 7f11c7c378..9455c90a42 100644 --- a/dev-python/mitype/mitype-0.2.4.ebuild +++ b/dev-python/mitype/mitype-0.2.4.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/mkdocs-autorefs/mkdocs-autorefs-0.4.1.ebuild b/dev-python/mkdocs-autorefs/mkdocs-autorefs-0.4.1.ebuild index 54162f0186..62a3d867c4 100644 --- a/dev-python/mkdocs-autorefs/mkdocs-autorefs-0.4.1.ebuild +++ b/dev-python/mkdocs-autorefs/mkdocs-autorefs-0.4.1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=pdm -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/mkdocs-blog-plugin/mkdocs-blog-plugin-9999.ebuild b/dev-python/mkdocs-blog-plugin/mkdocs-blog-plugin-9999.ebuild index a159aaa07c..a838cd45f1 100644 --- a/dev-python/mkdocs-blog-plugin/mkdocs-blog-plugin-9999.ebuild +++ b/dev-python/mkdocs-blog-plugin/mkdocs-blog-plugin-9999.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 git-r3 diff --git a/dev-python/mkdocs-exclude/mkdocs-exclude-1.0.2-r1.ebuild b/dev-python/mkdocs-exclude/mkdocs-exclude-1.0.2-r1.ebuild index 84263ee9b3..f7217451f1 100644 --- a/dev-python/mkdocs-exclude/mkdocs-exclude-1.0.2-r1.ebuild +++ b/dev-python/mkdocs-exclude/mkdocs-exclude-1.0.2-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools PYPI_NO_NORMALIZE=1 diff --git a/dev-python/mkdocs-mkdocstrings-python/mkdocs-mkdocstrings-python-0.9.0.ebuild b/dev-python/mkdocs-mkdocstrings-python/mkdocs-mkdocstrings-python-0.9.0.ebuild index bb0866aeb5..f929e7258b 100644 --- a/dev-python/mkdocs-mkdocstrings-python/mkdocs-mkdocstrings-python-0.9.0.ebuild +++ b/dev-python/mkdocs-mkdocstrings-python/mkdocs-mkdocstrings-python-0.9.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=pdm -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/mkdocs-mkdocstrings/mkdocs-mkdocstrings-0.21.2.ebuild b/dev-python/mkdocs-mkdocstrings/mkdocs-mkdocstrings-0.21.2.ebuild index fef37a574e..7fbf89babd 100644 --- a/dev-python/mkdocs-mkdocstrings/mkdocs-mkdocstrings-0.21.2.ebuild +++ b/dev-python/mkdocs-mkdocstrings/mkdocs-mkdocstrings-0.21.2.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=pdm -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/mkdocs-swagger-ui-tag/mkdocs-swagger-ui-tag-0.6.0.ebuild b/dev-python/mkdocs-swagger-ui-tag/mkdocs-swagger-ui-tag-0.6.0.ebuild index bb97d7ca5f..c38fad8789 100644 --- a/dev-python/mkdocs-swagger-ui-tag/mkdocs-swagger-ui-tag-0.6.0.ebuild +++ b/dev-python/mkdocs-swagger-ui-tag/mkdocs-swagger-ui-tag-0.6.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 DESCRIPTION="MkDocs Swagger UI Tag" diff --git a/dev-python/mkdocs-swagger-ui-tag/mkdocs-swagger-ui-tag-0.6.1.ebuild b/dev-python/mkdocs-swagger-ui-tag/mkdocs-swagger-ui-tag-0.6.1.ebuild index bb97d7ca5f..c38fad8789 100644 --- a/dev-python/mkdocs-swagger-ui-tag/mkdocs-swagger-ui-tag-0.6.1.ebuild +++ b/dev-python/mkdocs-swagger-ui-tag/mkdocs-swagger-ui-tag-0.6.1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 DESCRIPTION="MkDocs Swagger UI Tag" diff --git a/dev-python/mnemonic/Manifest b/dev-python/mnemonic/Manifest deleted file mode 100644 index 1d1bbd0959..0000000000 --- a/dev-python/mnemonic/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST mnemonic-0.19.tar.gz 70481 BLAKE2B dc7d42915da65ede66ea7a3b9b467ebbe1a3e5e3cf6e7c44a273fecc3cc49e3461c6456cb03b6036ac34076c3583158f0c3707cf6f77d68e267388d322b2379e SHA512 4388587d4607d0c110851c1f2f53383f2fa282bd01d93b9770c9c15292a01aea5429c410874855c16e12abe9bcd38a82bbe10d0371fb35f472ad2fe81ff19cb0 diff --git a/dev-python/mnemonic/metadata.xml b/dev-python/mnemonic/metadata.xml deleted file mode 100644 index f7a0643500..0000000000 --- a/dev-python/mnemonic/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - a.zuber@gmx.ch - Andreas Zuber - - - trezor/python-mnemonic - - diff --git a/dev-python/mnemonic/mnemonic-0.19.ebuild b/dev-python/mnemonic/mnemonic-0.19.ebuild deleted file mode 100644 index cca4223d97..0000000000 --- a/dev-python/mnemonic/mnemonic-0.19.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_9 ) -inherit distutils-r1 - -DESCRIPTION="Reference implementation of BIP-0039 for generating deterministic keys" -HOMEPAGE="https://github.com/trezor/python-mnemonic" - -MY_PN="python-mnemonic" -MY_P="${MY_PN}-${PV}" -SRC_URI="https://github.com/trezor/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND="" -BDEPEND="" - -distutils_enable_tests unittest - -S="${WORKDIR}/${MY_P}" diff --git a/dev-python/mobi/mobi-0.3.3.ebuild b/dev-python/mobi/mobi-0.3.3.ebuild index c78e69f37a..7bf67a6d3f 100644 --- a/dev-python/mobi/mobi-0.3.3.ebuild +++ b/dev-python/mobi/mobi-0.3.3.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=poetry inherit distutils-r1 diff --git a/dev-python/moreorless/moreorless-0.4.0.ebuild b/dev-python/moreorless/moreorless-0.4.0.ebuild index 5fc2d4ffe8..f7c57d9c60 100644 --- a/dev-python/moreorless/moreorless-0.4.0.ebuild +++ b/dev-python/moreorless/moreorless-0.4.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 pypi diff --git a/dev-python/multipart/multipart-0.2.4.ebuild b/dev-python/multipart/multipart-0.2.4.ebuild index 450d3180dc..0d128827f9 100644 --- a/dev-python/multipart/multipart-0.2.4.ebuild +++ b/dev-python/multipart/multipart-0.2.4.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 pypi diff --git a/dev-python/noiseprotocol/Manifest b/dev-python/noiseprotocol/Manifest deleted file mode 100644 index 0c5d463e98..0000000000 --- a/dev-python/noiseprotocol/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST noiseprotocol-0.3.1.tar.gz 308729 BLAKE2B ac8e885da15cab760bc41a6953e70af6496df5865a441df1816aca02d06820aa0ceec10d27cd9bf089d0dff83f7e8e10eee6165d3f66705792bbc071a6a4b823 SHA512 2b25b80c4d187e5529b9de0bb50698646d74aa40e9c09e6b3acf5463603eb3415027c92cfe1f25bc3a6143958aa60cb014561ab390bb63db373ec04067146216 diff --git a/dev-python/noiseprotocol/metadata.xml b/dev-python/noiseprotocol/metadata.xml deleted file mode 100644 index b1a528f4f6..0000000000 --- a/dev-python/noiseprotocol/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - a.zuber@gmx.ch - Andreas Zuber - - - plizonczyk/noiseprotocol - - diff --git a/dev-python/noiseprotocol/noiseprotocol-0.3.1.ebuild b/dev-python/noiseprotocol/noiseprotocol-0.3.1.ebuild deleted file mode 100644 index 79dcb58f17..0000000000 --- a/dev-python/noiseprotocol/noiseprotocol-0.3.1.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_9 ) -inherit distutils-r1 - -DESCRIPTION="Python implementation of Noise Protocol Framework" -HOMEPAGE="https://github.com/plizonczyk/noiseprotocol" -NOISEPROTOCOL_GIT_REVISION="73375448c55af85df0230841af868b7f31942f0a" -SRC_URI="https://github.com/plizonczyk/${PN}/archive/${NOISEPROTOCOL_GIT_REVISION}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND=">=dev-python/cryptography-2.8[${PYTHON_USEDEP}]" -BDEPEND="" - -distutils_enable_tests pytest - -python_prepare_all() { - sed -e "/find_packages/s:'examples':'examples', 'examples.\*':" -i setup.py || die - - distutils-r1_python_prepare_all -} - -S="${WORKDIR}/${PN}-${NOISEPROTOCOL_GIT_REVISION}" diff --git a/dev-python/notion-client/notion-client-2.0.0.ebuild b/dev-python/notion-client/notion-client-2.0.0.ebuild index 14e9ee5a56..3d67a71ba9 100644 --- a/dev-python/notion-client/notion-client-2.0.0.ebuild +++ b/dev-python/notion-client/notion-client-2.0.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/notofonttools/notofonttools-0.2.17-r1.ebuild b/dev-python/notofonttools/notofonttools-0.2.17-r1.ebuild index bb912335c4..e58727749f 100644 --- a/dev-python/notofonttools/notofonttools-0.2.17-r1.ebuild +++ b/dev-python/notofonttools/notofonttools-0.2.17-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 optfeature pypi diff --git a/dev-python/olm/olm-3.2.14-r5.ebuild b/dev-python/olm/olm-3.2.14-r5.ebuild index 01f211a57b..771ef756bb 100644 --- a/dev-python/olm/olm-3.2.14-r5.ebuild +++ b/dev-python/olm/olm-3.2.14-r5.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/openstep-plist/openstep-plist-0.3.0_p1.ebuild b/dev-python/openstep-plist/openstep-plist-0.3.0_p1.ebuild index 905fbd86d3..02f114b22f 100644 --- a/dev-python/openstep-plist/openstep-plist-0.3.0_p1.ebuild +++ b/dev-python/openstep-plist/openstep-plist-0.3.0_p1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi diff --git a/dev-python/opentracing/opentracing-2.4.0.ebuild b/dev-python/opentracing/opentracing-2.4.0.ebuild index e427f1c3b5..f1015f4711 100644 --- a/dev-python/opentracing/opentracing-2.4.0.ebuild +++ b/dev-python/opentracing/opentracing-2.4.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi diff --git a/dev-python/opentypespec/opentypespec-1.9.1.ebuild b/dev-python/opentypespec/opentypespec-1.9.1.ebuild index 72216aa3f3..c8a131f741 100644 --- a/dev-python/opentypespec/opentypespec-1.9.1.ebuild +++ b/dev-python/opentypespec/opentypespec-1.9.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi diff --git a/dev-python/orderedmultidict/orderedmultidict-1.0.1.ebuild b/dev-python/orderedmultidict/orderedmultidict-1.0.1.ebuild index 28e0b631c6..7692a0a895 100644 --- a/dev-python/orderedmultidict/orderedmultidict-1.0.1.ebuild +++ b/dev-python/orderedmultidict/orderedmultidict-1.0.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/os-api-ref/os-api-ref-2.3.0.ebuild b/dev-python/os-api-ref/os-api-ref-2.3.0.ebuild index 699a29205b..cd6e364a9c 100644 --- a/dev-python/os-api-ref/os-api-ref-2.3.0.ebuild +++ b/dev-python/os-api-ref/os-api-ref-2.3.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 EPYTEST_DESELECT=( os_api_ref/tests/test_microversions.py::TestMicroversions::test_parameters_table ) -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 diff --git a/dev-python/oscrypto/oscrypto-1.3.0-r1.ebuild b/dev-python/oscrypto/oscrypto-1.3.0-r1.ebuild index 6f73f68eb5..529e25c832 100644 --- a/dev-python/oscrypto/oscrypto-1.3.0-r1.ebuild +++ b/dev-python/oscrypto/oscrypto-1.3.0-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools inherit edo distutils-r1 optfeature diff --git a/dev-python/ots-python/ots-python-8.2.1.ebuild b/dev-python/ots-python/ots-python-8.2.1.ebuild index 17f3fca729..4e08548e53 100644 --- a/dev-python/ots-python/ots-python-8.2.1.ebuild +++ b/dev-python/ots-python/ots-python-8.2.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 diff --git a/dev-python/parsel/parsel-1.7.0.ebuild b/dev-python/parsel/parsel-1.7.0.ebuild index 259be5e2f4..bc507d5ae5 100644 --- a/dev-python/parsel/parsel-1.7.0.ebuild +++ b/dev-python/parsel/parsel-1.7.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi diff --git a/dev-python/pem/pem-21.2.0.ebuild b/dev-python/pem/pem-21.2.0.ebuild index 6407315936..20e198ce50 100644 --- a/dev-python/pem/pem-21.2.0.ebuild +++ b/dev-python/pem/pem-21.2.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 DESCRIPTION="Easy PEM file parsing in Python" diff --git a/dev-python/persist-queue/persist-queue-0.8.0.ebuild b/dev-python/persist-queue/persist-queue-0.8.0.ebuild index 92fcc06d01..dff9d13166 100644 --- a/dev-python/persist-queue/persist-queue-0.8.0.ebuild +++ b/dev-python/persist-queue/persist-queue-0.8.0.ebuild @@ -5,7 +5,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools PYPI_NO_NORMALIZE=1 -PYTHON_COMPAT=( python3_{9..10}) +PYTHON_COMPAT=( python3_10) inherit distutils-r1 pypi diff --git a/dev-python/persistent/persistent-5.0.ebuild b/dev-python/persistent/persistent-5.0.ebuild index 9e9d5b6142..13865178d7 100644 --- a/dev-python/persistent/persistent-5.0.ebuild +++ b/dev-python/persistent/persistent-5.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/pg8000/pg8000-1.29.2.ebuild b/dev-python/pg8000/pg8000-1.29.2.ebuild index 07c6a0f7a9..3de8debf52 100644 --- a/dev-python/pg8000/pg8000-1.29.2.ebuild +++ b/dev-python/pg8000/pg8000-1.29.2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) DISTUTILS_USE_PEP517=setuptools inherit databases distutils-r1 edo pypi diff --git a/dev-python/pg8000/pg8000-1.29.4.ebuild b/dev-python/pg8000/pg8000-1.29.4.ebuild index 42ff166747..fcb5c6c053 100644 --- a/dev-python/pg8000/pg8000-1.29.4.ebuild +++ b/dev-python/pg8000/pg8000-1.29.4.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit databases distutils-r1 edo pypi diff --git a/dev-python/phx-class-registry/phx-class-registry-3.0.5-r1.ebuild b/dev-python/phx-class-registry/phx-class-registry-3.0.5-r1.ebuild index 20c4146e6c..da930eef0b 100644 --- a/dev-python/phx-class-registry/phx-class-registry-3.0.5-r1.ebuild +++ b/dev-python/phx-class-registry/phx-class-registry-3.0.5-r1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{9..10} pypy3 ) +PYTHON_COMPAT=( python3_10 pypy3 ) inherit distutils-r1 DESCRIPTION="An intersection of the Registry and Factory pattern" diff --git a/dev-python/pifpaf/pifpaf-3.1.5.ebuild b/dev-python/pifpaf/pifpaf-3.1.5.ebuild index 7f287899d9..1183064e23 100644 --- a/dev-python/pifpaf/pifpaf-3.1.5.ebuild +++ b/dev-python/pifpaf/pifpaf-3.1.5.ebuild @@ -4,7 +4,7 @@ EAPI=8 EPYTEST_DESELECT=( pifpaf/tests/test_cli.py::TestCli::test_non_existing_command ) -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 pypi diff --git a/dev-python/pip-api/pip-api-0.0.30.ebuild b/dev-python/pip-api/pip-api-0.0.30.ebuild index 51a226e339..33a0978b8f 100644 --- a/dev-python/pip-api/pip-api-0.0.30.ebuild +++ b/dev-python/pip-api/pip-api-0.0.30.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/playsound/playsound-1.3.0.ebuild b/dev-python/playsound/playsound-1.3.0.ebuild index 0bbe389694..d5436219f1 100644 --- a/dev-python/playsound/playsound-1.3.0.ebuild +++ b/dev-python/playsound/playsound-1.3.0.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=8 -PYTHON_COMPAT=( python3_{9..10} pypy3 ) +PYTHON_COMPAT=( python3_10 pypy3 ) inherit distutils-r1 pypi DESCRIPTION="Single function module with no dependencies for playing sounds." diff --git a/dev-python/portio/portio-0.5-r1.ebuild b/dev-python/portio/portio-0.5-r1.ebuild index f2b80cff27..db55d3c725 100644 --- a/dev-python/portio/portio-0.5-r1.ebuild +++ b/dev-python/portio/portio-0.5-r1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_SETUPTOOLS=no -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 pypi diff --git a/dev-python/portion/portion-2.4.0.ebuild b/dev-python/portion/portion-2.4.0.ebuild index cf4fbbdee0..6ad18e5235 100644 --- a/dev-python/portion/portion-2.4.0.ebuild +++ b/dev-python/portion/portion-2.4.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi diff --git a/dev-python/pproxy/pproxy-2.7.8-r1.ebuild b/dev-python/pproxy/pproxy-2.7.8-r1.ebuild index 0fcebb4553..25da66ad27 100644 --- a/dev-python/pproxy/pproxy-2.7.8-r1.ebuild +++ b/dev-python/pproxy/pproxy-2.7.8-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools PYPI_NO_NORMALIZE=1 inherit distutils-r1 optfeature pypi diff --git a/dev-python/praw/praw-7.6.1.ebuild b/dev-python/praw/praw-7.6.1.ebuild index c9855fbad0..b775ae5365 100644 --- a/dev-python/praw/praw-7.6.1.ebuild +++ b/dev-python/praw/praw-7.6.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/praw/praw-7.7.0.ebuild b/dev-python/praw/praw-7.7.0.ebuild index c9855fbad0..b775ae5365 100644 --- a/dev-python/praw/praw-7.7.0.ebuild +++ b/dev-python/praw/praw-7.7.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/prawcore/prawcore-2.3.0.ebuild b/dev-python/prawcore/prawcore-2.3.0.ebuild index 95ec30e3fd..04bf2262d8 100644 --- a/dev-python/prawcore/prawcore-2.3.0.ebuild +++ b/dev-python/prawcore/prawcore-2.3.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi diff --git a/dev-python/promise/promise-2.3.0.ebuild b/dev-python/promise/promise-2.3.0.ebuild index 90109e2c6f..71274d0020 100644 --- a/dev-python/promise/promise-2.3.0.ebuild +++ b/dev-python/promise/promise-2.3.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 DESCRIPTION="Promises/A+ implementation for Python" diff --git a/dev-python/protego/protego-0.2.1-r1.ebuild b/dev-python/protego/protego-0.2.1-r1.ebuild index 120a162c1c..1513c3585b 100644 --- a/dev-python/protego/protego-0.2.1-r1.ebuild +++ b/dev-python/protego/protego-0.2.1-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/proxy_tools/proxy_tools-0.1.0_p1.ebuild b/dev-python/proxy_tools/proxy_tools-0.1.0_p1.ebuild index 01bc8a8f30..25024d4380 100644 --- a/dev-python/proxy_tools/proxy_tools-0.1.0_p1.ebuild +++ b/dev-python/proxy_tools/proxy_tools-0.1.0_p1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517="setuptools" -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/psautohint/psautohint-2.4.0-r1.ebuild b/dev-python/psautohint/psautohint-2.4.0-r1.ebuild index 3d4309ef7a..d09478843b 100644 --- a/dev-python/psautohint/psautohint-2.4.0-r1.ebuild +++ b/dev-python/psautohint/psautohint-2.4.0-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit meson distutils-r1 diff --git a/dev-python/psycopg2cffi/psycopg2cffi-2.9.0-r1.ebuild b/dev-python/psycopg2cffi/psycopg2cffi-2.9.0-r1.ebuild index 965fa97889..9c0d6351b2 100644 --- a/dev-python/psycopg2cffi/psycopg2cffi-2.9.0-r1.ebuild +++ b/dev-python/psycopg2cffi/psycopg2cffi-2.9.0-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools inherit databases distutils-r1 edo diff --git a/dev-python/pure-protobuf/pure-protobuf-2.2.2.ebuild b/dev-python/pure-protobuf/pure-protobuf-2.2.2.ebuild index 32c5ff9e53..a737d0c949 100644 --- a/dev-python/pure-protobuf/pure-protobuf-2.2.2.ebuild +++ b/dev-python/pure-protobuf/pure-protobuf-2.2.2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=hatchling inherit distutils-r1 pypi diff --git a/dev-python/pure-protobuf/pure-protobuf-2.2.3.ebuild b/dev-python/pure-protobuf/pure-protobuf-2.2.3.ebuild index 32c5ff9e53..a737d0c949 100644 --- a/dev-python/pure-protobuf/pure-protobuf-2.2.3.ebuild +++ b/dev-python/pure-protobuf/pure-protobuf-2.2.3.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=hatchling inherit distutils-r1 pypi diff --git a/dev-python/py-nanoid/py-nanoid-9999.ebuild b/dev-python/py-nanoid/py-nanoid-9999.ebuild index 75a5c7ae02..4abac8e61d 100644 --- a/dev-python/py-nanoid/py-nanoid-9999.ebuild +++ b/dev-python/py-nanoid/py-nanoid-9999.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 git-r3 diff --git a/dev-python/pyagentx/pyagentx-0.4.ebuild b/dev-python/pyagentx/pyagentx-0.4.ebuild index d718b19104..73526de94b 100644 --- a/dev-python/pyagentx/pyagentx-0.4.ebuild +++ b/dev-python/pyagentx/pyagentx-0.4.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 diff --git a/dev-python/pybrowserstack-screenshots/pybrowserstack-screenshots-0.1-r1.ebuild b/dev-python/pybrowserstack-screenshots/pybrowserstack-screenshots-0.1-r1.ebuild index 11a65e8b51..f7dc795cc8 100644 --- a/dev-python/pybrowserstack-screenshots/pybrowserstack-screenshots-0.1-r1.ebuild +++ b/dev-python/pybrowserstack-screenshots/pybrowserstack-screenshots-0.1-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 diff --git a/dev-python/pyclip/pyclip-0.5.4.ebuild b/dev-python/pyclip/pyclip-0.5.4.ebuild index aa8272eb82..2a02813e7c 100644 --- a/dev-python/pyclip/pyclip-0.5.4.ebuild +++ b/dev-python/pyclip/pyclip-0.5.4.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_SETUPTOOLS=bdepend inherit distutils-r1 diff --git a/dev-python/pyclip/pyclip-0.6.0.ebuild b/dev-python/pyclip/pyclip-0.6.0.ebuild index 338e7e6fc3..180b72d438 100644 --- a/dev-python/pyclip/pyclip-0.6.0.ebuild +++ b/dev-python/pyclip/pyclip-0.6.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_SETUPTOOLS=bdepend inherit distutils-r1 diff --git a/dev-python/pyclip/pyclip-0.7.0.ebuild b/dev-python/pyclip/pyclip-0.7.0.ebuild index 39bc3e4728..c0da4724b1 100644 --- a/dev-python/pyclip/pyclip-0.7.0.ebuild +++ b/dev-python/pyclip/pyclip-0.7.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517="setuptools" diff --git a/dev-python/pyclip/pyclip-9999.ebuild b/dev-python/pyclip/pyclip-9999.ebuild index 39bc3e4728..c0da4724b1 100644 --- a/dev-python/pyclip/pyclip-9999.ebuild +++ b/dev-python/pyclip/pyclip-9999.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517="setuptools" diff --git a/dev-python/pydispatcher/pydispatcher-2.0.7.ebuild b/dev-python/pydispatcher/pydispatcher-2.0.7.ebuild index b57575fe3b..5668f0552e 100644 --- a/dev-python/pydispatcher/pydispatcher-2.0.7.ebuild +++ b/dev-python/pydispatcher/pydispatcher-2.0.7.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/pydub/pydub-0.25.1.ebuild b/dev-python/pydub/pydub-0.25.1.ebuild index ac842c48f8..32e4a3527d 100644 --- a/dev-python/pydub/pydub-0.25.1.ebuild +++ b/dev-python/pydub/pydub-0.25.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 optfeature diff --git a/dev-python/pyfiglet/pyfiglet-0.8_p1.ebuild b/dev-python/pyfiglet/pyfiglet-0.8_p1.ebuild index a6464087bb..ab06b42387 100644 --- a/dev-python/pyfiglet/pyfiglet-0.8_p1.ebuild +++ b/dev-python/pyfiglet/pyfiglet-0.8_p1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi diff --git a/dev-python/pygaljs/pygaljs-1.0.2-r1.ebuild b/dev-python/pygaljs/pygaljs-1.0.2-r1.ebuild index 20476d851b..188d9f16d3 100644 --- a/dev-python/pygaljs/pygaljs-1.0.2-r1.ebuild +++ b/dev-python/pygaljs/pygaljs-1.0.2-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi diff --git a/dev-python/pygments-promql/pygments-promql-0.0.9.ebuild b/dev-python/pygments-promql/pygments-promql-0.0.9.ebuild index b696e91574..b520351502 100644 --- a/dev-python/pygments-promql/pygments-promql-0.0.9.ebuild +++ b/dev-python/pygments-promql/pygments-promql-0.0.9.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 DESCRIPTION="A PromQL lexer for Pygments" diff --git a/dev-python/pygsl/pygsl-2.3.3.ebuild b/dev-python/pygsl/pygsl-2.3.3.ebuild index 72f4777e01..02c874743c 100644 --- a/dev-python/pygsl/pygsl-2.3.3.ebuild +++ b/dev-python/pygsl/pygsl-2.3.3.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/pyinstaller/Manifest b/dev-python/pyinstaller/Manifest deleted file mode 100644 index c31d065ba4..0000000000 --- a/dev-python/pyinstaller/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST pyinstaller-4.2.tar.gz 3596102 BLAKE2B 2b273c043c4b584741cb4a4a2ef1df5b4305c775155f7195d2441b7dd69d169b768143d11141df6e0b3a27400f4f978460f0c923192c21695c26d0189a2b8855 SHA512 54acf059756cbbaa37fb559e9691dc8b3af77f7f57885f8fb142050662769f9138477686d0b768274f23166d2d327b4f9d4924b7077cdf1736790d7e2a3e161d diff --git a/dev-python/pyinstaller/metadata.xml b/dev-python/pyinstaller/metadata.xml deleted file mode 100644 index c8244df324..0000000000 --- a/dev-python/pyinstaller/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - svdm-gentoo@protonmail.com - Simon van der Maas - - diff --git a/dev-python/pyinstaller/pyinstaller-4.2-r1.ebuild b/dev-python/pyinstaller/pyinstaller-4.2-r1.ebuild deleted file mode 100644 index 4c84edc485..0000000000 --- a/dev-python/pyinstaller/pyinstaller-4.2-r1.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DISTUTILS_USE_SETUPTOOLS=rdepend - -PYTHON_COMPAT=( python3_9 ) -inherit distutils-r1 - -DESCRIPTION="Bundles a Python application and all its dependencies into a single package." -HOMEPAGE="https://pypi.org/project/pyinstaller/" -SRC_URI="https://files.pythonhosted.org/packages/b4/83/9f6ff034650abe9778c9a4f86bcead63f89a62acf02b1b47fc2bfc6bf8dd/${P}.tar.gz" - -LICENSE="GPL-2+-with-Pyinstaller-Bootloader-exception" -SLOT="0" -KEYWORDS="~amd64" - -QA_PRESTRIPPED="usr/lib/python.*/site-packages/PyInstaller/bootloader/Linux-.*/run.*" diff --git a/dev-python/pykeepass/pykeepass-4.0.2.ebuild b/dev-python/pykeepass/pykeepass-4.0.2.ebuild index 6962e779c9..cbf415b5e0 100644 --- a/dev-python/pykeepass/pykeepass-4.0.2.ebuild +++ b/dev-python/pykeepass/pykeepass-4.0.2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 diff --git a/dev-python/pymeeus/pymeeus-0.5.11.ebuild b/dev-python/pymeeus/pymeeus-0.5.11.ebuild index 0f26c055b4..9fcfead255 100644 --- a/dev-python/pymeeus/pymeeus-0.5.11.ebuild +++ b/dev-python/pymeeus/pymeeus-0.5.11.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/pymeeus/pymeeus-0.5.12.ebuild b/dev-python/pymeeus/pymeeus-0.5.12.ebuild index 0f26c055b4..9fcfead255 100644 --- a/dev-python/pymeeus/pymeeus-0.5.12.ebuild +++ b/dev-python/pymeeus/pymeeus-0.5.12.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/pymemcache/pymemcache-4.0.0.ebuild b/dev-python/pymemcache/pymemcache-4.0.0.ebuild index 72d511437f..c0b9d34de5 100644 --- a/dev-python/pymemcache/pymemcache-4.0.0.ebuild +++ b/dev-python/pymemcache/pymemcache-4.0.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit databases distutils-r1 pypi diff --git a/dev-python/pymorphy2-dicts-ru/pymorphy2-dicts-ru-2.4.417127.4579844.ebuild b/dev-python/pymorphy2-dicts-ru/pymorphy2-dicts-ru-2.4.417127.4579844.ebuild index df10756209..b6693c3914 100644 --- a/dev-python/pymorphy2-dicts-ru/pymorphy2-dicts-ru-2.4.417127.4579844.ebuild +++ b/dev-python/pymorphy2-dicts-ru/pymorphy2-dicts-ru-2.4.417127.4579844.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{9..10} pypy3 ) +PYTHON_COMPAT=( python3_10 pypy3 ) DISTUTILS_USE_SETUPTOOLS=bdepend PYPI_NO_NORMALIZE=1 inherit distutils-r1 pypi diff --git a/dev-python/pymorphy2-dicts-uk/pymorphy2-dicts-uk-2.4.1.1.1460299261.ebuild b/dev-python/pymorphy2-dicts-uk/pymorphy2-dicts-uk-2.4.1.1.1460299261.ebuild index d1baac4b2b..fd3c241f99 100644 --- a/dev-python/pymorphy2-dicts-uk/pymorphy2-dicts-uk-2.4.1.1.1460299261.ebuild +++ b/dev-python/pymorphy2-dicts-uk/pymorphy2-dicts-uk-2.4.1.1.1460299261.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{9..10} pypy3 ) +PYTHON_COMPAT=( python3_10 pypy3 ) DISTUTILS_USE_SETUPTOOLS=bdepend PYPI_NO_NORMALIZE=1 inherit distutils-r1 pypi diff --git a/dev-python/pymorphy2-dicts/pymorphy2-dicts-2.4.393442.3710985.ebuild b/dev-python/pymorphy2-dicts/pymorphy2-dicts-2.4.393442.3710985.ebuild index a9c7ba4995..dc045ab533 100644 --- a/dev-python/pymorphy2-dicts/pymorphy2-dicts-2.4.393442.3710985.ebuild +++ b/dev-python/pymorphy2-dicts/pymorphy2-dicts-2.4.393442.3710985.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{9..10} pypy3 ) +PYTHON_COMPAT=( python3_10 pypy3 ) DISTUTILS_USE_SETUPTOOLS=bdepend PYPI_NO_NORMALIZE=1 inherit distutils-r1 pypi diff --git a/dev-python/pymorphy2/pymorphy2-0.9.1.ebuild b/dev-python/pymorphy2/pymorphy2-0.9.1.ebuild index f29ee4a710..8e5ed984ed 100644 --- a/dev-python/pymorphy2/pymorphy2-0.9.1.ebuild +++ b/dev-python/pymorphy2/pymorphy2-0.9.1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{9..10} pypy3 ) +PYTHON_COMPAT=( python3_10 pypy3 ) DISTUTILS_USE_SETUPTOOLS=bdepend inherit distutils-r1 pypi diff --git a/dev-python/pynmea2/pynmea2-1.18.0.ebuild b/dev-python/pynmea2/pynmea2-1.18.0.ebuild index 4821a17cfc..1b31091ff7 100644 --- a/dev-python/pynmea2/pynmea2-1.18.0.ebuild +++ b/dev-python/pynmea2/pynmea2-1.18.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} pypy3 ) +PYTHON_COMPAT=( python3_10 pypy3 ) inherit distutils-r1 diff --git a/dev-python/pyodbc/pyodbc-4.0.35.ebuild b/dev-python/pyodbc/pyodbc-4.0.35.ebuild index 2466c42ff4..eeecbb51d8 100644 --- a/dev-python/pyodbc/pyodbc-4.0.35.ebuild +++ b/dev-python/pyodbc/pyodbc-4.0.35.ebuild @@ -4,7 +4,7 @@ EAPI=8 # No pypy3 support: https://github.com/mkleehammer/pyodbc/issues/915 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit databases edo distutils-r1 optfeature pypi diff --git a/dev-python/pyqtdarktheme/pyqtdarktheme-2.1.0.ebuild b/dev-python/pyqtdarktheme/pyqtdarktheme-2.1.0.ebuild index 252bf084ae..ec213302ad 100644 --- a/dev-python/pyqtdarktheme/pyqtdarktheme-2.1.0.ebuild +++ b/dev-python/pyqtdarktheme/pyqtdarktheme-2.1.0.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=poetry inherit distutils-r1 pypi diff --git a/dev-python/pyrr/pyrr-0.10.3.ebuild b/dev-python/pyrr/pyrr-0.10.3.ebuild index 038b8a4999..898a0f9ca8 100644 --- a/dev-python/pyrr/pyrr-0.10.3.ebuild +++ b/dev-python/pyrr/pyrr-0.10.3.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/pysaml2/pysaml2-7.1.2-r1.ebuild b/dev-python/pysaml2/pysaml2-7.1.2-r1.ebuild index c338e77f4d..685a280237 100644 --- a/dev-python/pysaml2/pysaml2-7.1.2-r1.ebuild +++ b/dev-python/pysaml2/pysaml2-7.1.2-r1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/pystardict/pystardict-0.8-r1.ebuild b/dev-python/pystardict/pystardict-0.8-r1.ebuild index a427270d8e..cf2d83f947 100644 --- a/dev-python/pystardict/pystardict-0.8-r1.ebuild +++ b/dev-python/pystardict/pystardict-0.8-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi diff --git a/dev-python/pysubs2/pysubs2-1.4.4.ebuild b/dev-python/pysubs2/pysubs2-1.4.4.ebuild index 2883035895..387f00cdbd 100644 --- a/dev-python/pysubs2/pysubs2-1.4.4.ebuild +++ b/dev-python/pysubs2/pysubs2-1.4.4.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/pysubs2/pysubs2-1.5.0.ebuild b/dev-python/pysubs2/pysubs2-1.5.0.ebuild index 2883035895..387f00cdbd 100644 --- a/dev-python/pysubs2/pysubs2-1.5.0.ebuild +++ b/dev-python/pysubs2/pysubs2-1.5.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/pysubs2/pysubs2-1.6.1.ebuild b/dev-python/pysubs2/pysubs2-1.6.1.ebuild index 2883035895..387f00cdbd 100644 --- a/dev-python/pysubs2/pysubs2-1.6.1.ebuild +++ b/dev-python/pysubs2/pysubs2-1.6.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/pytest-benchmark/pytest-benchmark-3.4.1.ebuild b/dev-python/pytest-benchmark/pytest-benchmark-3.4.1.ebuild index 7e3a8dafe9..834f35f3ca 100644 --- a/dev-python/pytest-benchmark/pytest-benchmark-3.4.1.ebuild +++ b/dev-python/pytest-benchmark/pytest-benchmark-3.4.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/pytest-benchmark/pytest-benchmark-4.0.0.ebuild b/dev-python/pytest-benchmark/pytest-benchmark-4.0.0.ebuild index 11891ff60c..1baabf8e24 100644 --- a/dev-python/pytest-benchmark/pytest-benchmark-4.0.0.ebuild +++ b/dev-python/pytest-benchmark/pytest-benchmark-4.0.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/pytest-cases/pytest-cases-3.6.13.ebuild b/dev-python/pytest-cases/pytest-cases-3.6.13.ebuild index bd13143869..f38ffa7b42 100644 --- a/dev-python/pytest-cases/pytest-cases-3.6.13.ebuild +++ b/dev-python/pytest-cases/pytest-cases-3.6.13.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools DOCS_BUILDER="mkdocs" diff --git a/dev-python/pytest-cases/pytest-cases-3.6.14.ebuild b/dev-python/pytest-cases/pytest-cases-3.6.14.ebuild index ff477b6b89..b24ac8c873 100644 --- a/dev-python/pytest-cases/pytest-cases-3.6.14.ebuild +++ b/dev-python/pytest-cases/pytest-cases-3.6.14.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools PYPI_NO_NORMALIZE=1 diff --git a/dev-python/pytest-click/pytest-click-1.1.0.ebuild b/dev-python/pytest-click/pytest-click-1.1.0.ebuild index 17aa45058a..9fa40b5462 100644 --- a/dev-python/pytest-click/pytest-click-1.1.0.ebuild +++ b/dev-python/pytest-click/pytest-click-1.1.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( pypy3 python3_{9..11} ) +PYTHON_COMPAT=( pypy3 python3_{10..11} ) inherit distutils-r1 MY_PN="${PN//-/_}" diff --git a/dev-python/pytest-cython/pytest-cython-0.2.1.ebuild b/dev-python/pytest-cython/pytest-cython-0.2.1.ebuild index 22d0c4a15f..6666c51f5a 100644 --- a/dev-python/pytest-cython/pytest-cython-0.2.1.ebuild +++ b/dev-python/pytest-cython/pytest-cython-0.2.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools PYPI_NO_NORMALIZE=1 inherit distutils-r1 pypi diff --git a/dev-python/pytest-flask/pytest-flask-1.2.0.ebuild b/dev-python/pytest-flask/pytest-flask-1.2.0.ebuild index 8d0bfeb085..13396d3e0d 100644 --- a/dev-python/pytest-flask/pytest-flask-1.2.0.ebuild +++ b/dev-python/pytest-flask/pytest-flask-1.2.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..10} pypy3 ) +PYTHON_COMPAT=( python3_10 pypy3 ) inherit distutils-r1 DESCRIPTION="A set of pytest fixtures to test Flask applications " diff --git a/dev-python/pytest-harvest/pytest-harvest-1.10.4.ebuild b/dev-python/pytest-harvest/pytest-harvest-1.10.4.ebuild index f0384361e1..a8ee9bb9b7 100644 --- a/dev-python/pytest-harvest/pytest-harvest-1.10.4.ebuild +++ b/dev-python/pytest-harvest/pytest-harvest-1.10.4.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools PYPI_NO_NORMALIZE=1 diff --git a/dev-python/pytest-instafail/pytest-instafail-0.4.2.ebuild b/dev-python/pytest-instafail/pytest-instafail-0.4.2.ebuild index 8a08d04d42..5b270883db 100644 --- a/dev-python/pytest-instafail/pytest-instafail-0.4.2.ebuild +++ b/dev-python/pytest-instafail/pytest-instafail-0.4.2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 DESCRIPTION="Plugin for pytest that shows failures and errors instantly" diff --git a/dev-python/pytest-isort/pytest-isort-3.1.0-r1.ebuild b/dev-python/pytest-isort/pytest-isort-3.1.0-r1.ebuild index b50cd1d16a..c934799424 100644 --- a/dev-python/pytest-isort/pytest-isort-3.1.0-r1.ebuild +++ b/dev-python/pytest-isort/pytest-isort-3.1.0-r1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=poetry -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/pytest-isort/pytest-isort-3.1.0.ebuild b/dev-python/pytest-isort/pytest-isort-3.1.0.ebuild index b50cd1d16a..c934799424 100644 --- a/dev-python/pytest-isort/pytest-isort-3.1.0.ebuild +++ b/dev-python/pytest-isort/pytest-isort-3.1.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=poetry -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/pytest-steps/pytest-steps-1.8.0.ebuild b/dev-python/pytest-steps/pytest-steps-1.8.0.ebuild index 833cdd7693..e8c1e6b85d 100644 --- a/dev-python/pytest-steps/pytest-steps-1.8.0.ebuild +++ b/dev-python/pytest-steps/pytest-steps-1.8.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools PYPI_NO_NORMALIZE=1 diff --git a/dev-python/pytest-vcr/pytest-vcr-1.0.2.ebuild b/dev-python/pytest-vcr/pytest-vcr-1.0.2.ebuild index c9c4003f34..515d851edd 100644 --- a/dev-python/pytest-vcr/pytest-vcr-1.0.2.ebuild +++ b/dev-python/pytest-vcr/pytest-vcr-1.0.2.ebuild @@ -4,7 +4,7 @@ EAPI=8 DOCS_BUILDER="mkdocs" -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517="setuptools" inherit distutils-r1 docs diff --git a/dev-python/python-http-client/python-http-client-3.3.5.ebuild b/dev-python/python-http-client/python-http-client-3.3.5.ebuild index 623d48570f..45f2bb59c8 100644 --- a/dev-python/python-http-client/python-http-client-3.3.5.ebuild +++ b/dev-python/python-http-client/python-http-client-3.3.5.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/python-pidfile/python-pidfile-3.0.0-r1.ebuild b/dev-python/python-pidfile/python-pidfile-3.0.0-r1.ebuild index 0101778457..6f60dced80 100644 --- a/dev-python/python-pidfile/python-pidfile-3.0.0-r1.ebuild +++ b/dev-python/python-pidfile/python-pidfile-3.0.0-r1.ebuild @@ -4,7 +4,7 @@ EAPI=8 PYPI_NO_NORMALIZE=1 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 pypi diff --git a/dev-python/python-pidfile/python-pidfile-3.1.1.ebuild b/dev-python/python-pidfile/python-pidfile-3.1.1.ebuild index 3e0f5b7903..c35e1bf1cc 100644 --- a/dev-python/python-pidfile/python-pidfile-3.1.1.ebuild +++ b/dev-python/python-pidfile/python-pidfile-3.1.1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) PYPI_NO_NORMALIZE=1 inherit distutils-r1 pypi diff --git a/dev-python/python-pkcs11/python-pkcs11-0.7.0-r2.ebuild b/dev-python/python-pkcs11/python-pkcs11-0.7.0-r2.ebuild index 2dc8abe7f5..b01bdd8758 100644 --- a/dev-python/python-pkcs11/python-pkcs11-0.7.0-r2.ebuild +++ b/dev-python/python-pkcs11/python-pkcs11-0.7.0-r2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools PYPI_NO_NORMALIZE=1 inherit edo distutils-r1 pypi diff --git a/dev-python/python-skywater-pdk/python-skywater-pdk-0.0.0_p20220424.ebuild b/dev-python/python-skywater-pdk/python-skywater-pdk-0.0.0_p20220424.ebuild index 389016fb47..baa8ff5582 100644 --- a/dev-python/python-skywater-pdk/python-skywater-pdk-0.0.0_p20220424.ebuild +++ b/dev-python/python-skywater-pdk/python-skywater-pdk-0.0.0_p20220424.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..10} ) # python3_11 depends on dev-python/dataclasses_json +PYTHON_COMPAT=( python3_10 ) # python3_11 depends on dev-python/dataclasses_json MY_PN="skywater-pdk" MY_REV=5a57f505cd4cd65d10e9f37dd2d259a526bc9bf7 diff --git a/dev-python/python-socketio/python-socketio-5.1.0.ebuild b/dev-python/python-socketio/python-socketio-5.1.0.ebuild index d94c8d955c..3c4ffad105 100644 --- a/dev-python/python-socketio/python-socketio-5.1.0.ebuild +++ b/dev-python/python-socketio/python-socketio-5.1.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 PYPI_NO_NORMALIZE=1 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 pypi DESCRIPTION="Python implementation of the Socket.IO realtime server." diff --git a/dev-python/python-telegram-bot/python-telegram-bot-13.14.ebuild b/dev-python/python-telegram-bot/python-telegram-bot-13.14.ebuild index 4e2c99e125..916c66994b 100644 --- a/dev-python/python-telegram-bot/python-telegram-bot-13.14.ebuild +++ b/dev-python/python-telegram-bot/python-telegram-bot-13.14.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 diff --git a/dev-python/python-telegram-bot/python-telegram-bot-9999.ebuild b/dev-python/python-telegram-bot/python-telegram-bot-9999.ebuild index 4e2c99e125..916c66994b 100644 --- a/dev-python/python-telegram-bot/python-telegram-bot-9999.ebuild +++ b/dev-python/python-telegram-bot/python-telegram-bot-9999.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 diff --git a/dev-python/pywebview/pywebview-3.6.1.ebuild b/dev-python/pywebview/pywebview-3.6.1.ebuild index d53ba46e3c..3ac219afd4 100644 --- a/dev-python/pywebview/pywebview-3.6.1.ebuild +++ b/dev-python/pywebview/pywebview-3.6.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/pywebview/pywebview-3.7.2.ebuild b/dev-python/pywebview/pywebview-3.7.2.ebuild index 892296c8ec..7181c3a888 100644 --- a/dev-python/pywebview/pywebview-3.7.2.ebuild +++ b/dev-python/pywebview/pywebview-3.7.2.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 pypi diff --git a/dev-python/pywebview/pywebview-3.7.ebuild b/dev-python/pywebview/pywebview-3.7.ebuild index 537929de8e..b3f6f3db97 100644 --- a/dev-python/pywebview/pywebview-3.7.ebuild +++ b/dev-python/pywebview/pywebview-3.7.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/queuelib/queuelib-1.6.2.ebuild b/dev-python/queuelib/queuelib-1.6.2.ebuild index a30c8170e2..676abda744 100644 --- a/dev-python/queuelib/queuelib-1.6.2.ebuild +++ b/dev-python/queuelib/queuelib-1.6.2.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 DESCRIPTION="Collection of persistent and non-persistent queues for Python" diff --git a/dev-python/rchitect/rchitect-0.3.36.ebuild b/dev-python/rchitect/rchitect-0.3.36.ebuild index 6c6ea0926f..2fd8c09f6c 100644 --- a/dev-python/rchitect/rchitect-0.3.36.ebuild +++ b/dev-python/rchitect/rchitect-0.3.36.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/readability-lxml/readability-lxml-0.6.1.ebuild b/dev-python/readability-lxml/readability-lxml-0.6.1.ebuild index 0d5629d7f1..3591d33b7f 100644 --- a/dev-python/readability-lxml/readability-lxml-0.6.1.ebuild +++ b/dev-python/readability-lxml/readability-lxml-0.6.1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 DESCRIPTION="fast html to text parser (article readability tool)" diff --git a/dev-python/readability-lxml/readability-lxml-0.8.1.ebuild b/dev-python/readability-lxml/readability-lxml-0.8.1.ebuild index 1bf2e332ec..71366d0aec 100644 --- a/dev-python/readability-lxml/readability-lxml-0.8.1.ebuild +++ b/dev-python/readability-lxml/readability-lxml-0.8.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/readmdict/readmdict-0.1.1-r1.ebuild b/dev-python/readmdict/readmdict-0.1.1-r1.ebuild index 6ea607f430..1c0174708f 100644 --- a/dev-python/readmdict/readmdict-0.1.1-r1.ebuild +++ b/dev-python/readmdict/readmdict-0.1.1-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=poetry inherit distutils-r1 optfeature pypi diff --git a/dev-python/redbaron/Manifest b/dev-python/redbaron/Manifest deleted file mode 100644 index fc44a7a90d..0000000000 --- a/dev-python/redbaron/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST redbaron-0.9.2.tar.gz 709401 BLAKE2B 06be75576fafd9ca69fd4f46bbeead0c9a8691c49ab233a53e91e462f87a48e0fdd4b314bb23fa91fb60ea022fe535b89371fb1f82418240117d50e214125e45 SHA512 a91670b0c48ac399ea9a000be42f1d4d4451ec39b58b2a7029a3bcdf664136dab3ff8e81284b384ddabfb77a5fa43ce4d75041d3aed5685d451ab620dfa23e9a -DIST redbaron-0.9.tar.gz 708544 BLAKE2B e3314a29e66fe2e91ef28183f5e9f6c91117963bfffa0bcc1fb62602bc87b1c5fcf058ff545c3515e0de8077f70298aa788960e7409cbde6a0199701947786f6 SHA512 db99be12a1a0a3caab80f8b319d2966ffe5f80b15e5f838212bdb327c75c411ee273b4ff44dae76010165bd563275eb50c8c5b8d87284a493114224603e9cb25 diff --git a/dev-python/redbaron/metadata.xml b/dev-python/redbaron/metadata.xml deleted file mode 100644 index b8d978ae10..0000000000 --- a/dev-python/redbaron/metadata.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - PyCQA/redbaron - redbaron - - diff --git a/dev-python/redbaron/redbaron-0.9.2.ebuild b/dev-python/redbaron/redbaron-0.9.2.ebuild deleted file mode 100644 index ab2d092702..0000000000 --- a/dev-python/redbaron/redbaron-0.9.2.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_9 ) - -inherit distutils-r1 pypi - -DESCRIPTION="A FST for python to make writing refactoring code a realistic task" -HOMEPAGE=" - https://redbaron.readthedocs.io/ - https://github.com/PyCQA/redbaron -" - -LICENSE="LGPL-3" -SLOT="0" -KEYWORDS="~amd64" - -RDEPEND=" - >=dev-python/baron-0.7[${PYTHON_USEDEP}] - dev-python/pygments[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] -" - -distutils_enable_tests pytest - -distutils_enable_sphinx docs dev-python/ipython - -python_prepare_all() { - # Remove "__pycache__". Reason: unique basename - rm -rfd "${S}"/tests/__pycache__ || die - - # Skip tests. Reason: calls fixture "red" directly - rm "${S}"/tests/test_bounding_box.py || die - - distutils-r1_python_prepare_all -} diff --git a/dev-python/redbaron/redbaron-0.9.ebuild b/dev-python/redbaron/redbaron-0.9.ebuild deleted file mode 100644 index b9caa47aa4..0000000000 --- a/dev-python/redbaron/redbaron-0.9.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_9 ) - -inherit distutils-r1 - -DESCRIPTION="A FST for python to make writing refactoring code a realistic task" -HOMEPAGE=" - https://redbaron.readthedocs.io/ - https://github.com/PyCQA/redbaron -" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="LGPL-3" -SLOT="0" -KEYWORDS="~amd64" - -RDEPEND=" - >=dev-python/baron-0.7[${PYTHON_USEDEP}] - dev-python/pygments[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] -" - -distutils_enable_tests pytest - -distutils_enable_sphinx docs dev-python/ipython - -python_prepare_all() { - # Remove "__pycache__". Reason: unique basename - rm -rfd "${S}"/tests/__pycache__ || die - - # Skip tests. Reason: calls fixture "red" directly - rm "${S}"/tests/test_bounding_box.py || die - - distutils-r1_python_prepare_all -} diff --git a/dev-python/repoze-sphinx-autointerface/repoze-sphinx-autointerface-1.0.0-r1.ebuild b/dev-python/repoze-sphinx-autointerface/repoze-sphinx-autointerface-1.0.0-r1.ebuild index 8f2d473078..f40be84918 100644 --- a/dev-python/repoze-sphinx-autointerface/repoze-sphinx-autointerface-1.0.0-r1.ebuild +++ b/dev-python/repoze-sphinx-autointerface/repoze-sphinx-autointerface-1.0.0-r1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/restrictedpython/restrictedpython-6.0.ebuild b/dev-python/restrictedpython/restrictedpython-6.0.ebuild index bfea3aad73..7e0ab81e13 100644 --- a/dev-python/restrictedpython/restrictedpython-6.0.ebuild +++ b/dev-python/restrictedpython/restrictedpython-6.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/rst2ansi/rst2ansi-0.1.5-r2.ebuild b/dev-python/rst2ansi/rst2ansi-0.1.5-r2.ebuild index 14ec0e96e6..aedb73010a 100644 --- a/dev-python/rst2ansi/rst2ansi-0.1.5-r2.ebuild +++ b/dev-python/rst2ansi/rst2ansi-0.1.5-r2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi diff --git a/dev-python/rstcheck/rstcheck-6.1.1.ebuild b/dev-python/rstcheck/rstcheck-6.1.1.ebuild index 9f58602dad..425adce6f3 100644 --- a/dev-python/rstcheck/rstcheck-6.1.1.ebuild +++ b/dev-python/rstcheck/rstcheck-6.1.1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=poetry -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 pypi diff --git a/dev-python/rstr/rstr-3.2.0.ebuild b/dev-python/rstr/rstr-3.2.0.ebuild index 5d3c48907a..27f799fae6 100644 --- a/dev-python/rstr/rstr-3.2.0.ebuild +++ b/dev-python/rstr/rstr-3.2.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 pypi diff --git a/dev-python/schedule/schedule-1.1.0-r1.ebuild b/dev-python/schedule/schedule-1.1.0-r1.ebuild index 080b4cc289..a00e22a310 100644 --- a/dev-python/schedule/schedule-1.1.0-r1.ebuild +++ b/dev-python/schedule/schedule-1.1.0-r1.ebuild @@ -4,7 +4,7 @@ EAPI=8 #pypy3 fails tests -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/schema/schema-0.7.5.ebuild b/dev-python/schema/schema-0.7.5.ebuild index 708abf112f..2b0287877e 100644 --- a/dev-python/schema/schema-0.7.5.ebuild +++ b/dev-python/schema/schema-0.7.5.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517="setuptools" -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 pypi diff --git a/dev-python/scramp/scramp-1.4.4.ebuild b/dev-python/scramp/scramp-1.4.4.ebuild index 74f8ca7590..e721bd4a0f 100644 --- a/dev-python/scramp/scramp-1.4.4.ebuild +++ b/dev-python/scramp/scramp-1.4.4.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi diff --git a/dev-python/scrapy/scrapy-2.8.0.ebuild b/dev-python/scrapy/scrapy-2.8.0.ebuild index 7fcf9781a0..be3dd6fe23 100644 --- a/dev-python/scrapy/scrapy-2.8.0.ebuild +++ b/dev-python/scrapy/scrapy-2.8.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/screeninfo/screeninfo-0.8.1.ebuild b/dev-python/screeninfo/screeninfo-0.8.1.ebuild index 8640dd9eb4..6e25aa4940 100644 --- a/dev-python/screeninfo/screeninfo-0.8.1.ebuild +++ b/dev-python/screeninfo/screeninfo-0.8.1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=poetry -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/sdnotify/sdnotify-0.3.2.ebuild b/dev-python/sdnotify/sdnotify-0.3.2.ebuild index d2f521ff83..49b8409238 100644 --- a/dev-python/sdnotify/sdnotify-0.3.2.ebuild +++ b/dev-python/sdnotify/sdnotify-0.3.2.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 pypi DESCRIPTION="Python implementation of the systemd sd_notify protocol" diff --git a/dev-python/sendgrid/sendgrid-6.9.7.ebuild b/dev-python/sendgrid/sendgrid-6.9.7.ebuild index b035f33561..28077b1d03 100644 --- a/dev-python/sendgrid/sendgrid-6.9.7.ebuild +++ b/dev-python/sendgrid/sendgrid-6.9.7.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 pypi diff --git a/dev-python/sentence-splitter/sentence-splitter-1.4-r2.ebuild b/dev-python/sentence-splitter/sentence-splitter-1.4-r2.ebuild index 4aec05fa8d..63a44b9f35 100644 --- a/dev-python/sentence-splitter/sentence-splitter-1.4-r2.ebuild +++ b/dev-python/sentence-splitter/sentence-splitter-1.4-r2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/signalstickers-client/signalstickers-client-3.2.0.ebuild b/dev-python/signalstickers-client/signalstickers-client-3.2.0.ebuild index f22b6e1a03..1fe33bd41e 100644 --- a/dev-python/signalstickers-client/signalstickers-client-3.2.0.ebuild +++ b/dev-python/signalstickers-client/signalstickers-client-3.2.0.ebuild @@ -5,7 +5,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools PYPI_NO_NORMALIZE=1 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 pypi diff --git a/dev-python/simplemma/simplemma-0.9.1.ebuild b/dev-python/simplemma/simplemma-0.9.1.ebuild index ef573afa71..cf7689fdc8 100644 --- a/dev-python/simplemma/simplemma-0.9.1.ebuild +++ b/dev-python/simplemma/simplemma-0.9.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi diff --git a/dev-python/sjcl/sjcl-0.2.1.ebuild b/dev-python/sjcl/sjcl-0.2.1.ebuild index 7ee40fb453..458cb9ebde 100644 --- a/dev-python/sjcl/sjcl-0.2.1.ebuild +++ b/dev-python/sjcl/sjcl-0.2.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/skia-pathops/skia-pathops-0.7.4.ebuild b/dev-python/skia-pathops/skia-pathops-0.7.4.ebuild index 1406d2a623..56a99dff75 100644 --- a/dev-python/skia-pathops/skia-pathops-0.7.4.ebuild +++ b/dev-python/skia-pathops/skia-pathops-0.7.4.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) PYPI_NO_NORMALIZE=1 DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi diff --git a/dev-python/sortedcollections/sortedcollections-2.1.0.ebuild b/dev-python/sortedcollections/sortedcollections-2.1.0.ebuild index 04d803ee5b..9fd1a313fa 100644 --- a/dev-python/sortedcollections/sortedcollections-2.1.0.ebuild +++ b/dev-python/sortedcollections/sortedcollections-2.1.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/sphinx-argparse-cli/sphinx-argparse-cli-1.11.0.ebuild b/dev-python/sphinx-argparse-cli/sphinx-argparse-cli-1.11.0.ebuild index 3147dfd3a9..ffeed59b7d 100644 --- a/dev-python/sphinx-argparse-cli/sphinx-argparse-cli-1.11.0.ebuild +++ b/dev-python/sphinx-argparse-cli/sphinx-argparse-cli-1.11.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=hatchling -PYTHON_COMPAT=( python3_{9..11} ) # no pypy3 support +PYTHON_COMPAT=( python3_{10..11} ) # no pypy3 support inherit distutils-r1 DESCRIPTION="Render CLI arguments (sub-commands friendly) defined by argparse module" diff --git a/dev-python/sphinx-argparse-cli/sphinx-argparse-cli-1.9.0.ebuild b/dev-python/sphinx-argparse-cli/sphinx-argparse-cli-1.9.0.ebuild index ceba5ce17a..4973032305 100644 --- a/dev-python/sphinx-argparse-cli/sphinx-argparse-cli-1.9.0.ebuild +++ b/dev-python/sphinx-argparse-cli/sphinx-argparse-cli-1.9.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) # no pypy3 support +PYTHON_COMPAT=( python3_{10..11} ) # no pypy3 support inherit distutils-r1 MY_PN="${PN//-/_}" diff --git a/dev-python/sphinx-argparse/sphinx-argparse-0.3.1.ebuild b/dev-python/sphinx-argparse/sphinx-argparse-0.3.1.ebuild index 37f825d0db..04cc90f238 100644 --- a/dev-python/sphinx-argparse/sphinx-argparse-0.3.1.ebuild +++ b/dev-python/sphinx-argparse/sphinx-argparse-0.3.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} pypy3 ) +PYTHON_COMPAT=( python3_10 pypy3 ) DISTUTILS_USE_PEP517=poetry inherit distutils-r1 optfeature diff --git a/dev-python/sphinx-click/sphinx-click-4.1.0.ebuild b/dev-python/sphinx-click/sphinx-click-4.1.0.ebuild index 537fc67bdf..c6d034df67 100644 --- a/dev-python/sphinx-click/sphinx-click-4.1.0.ebuild +++ b/dev-python/sphinx-click/sphinx-click-4.1.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 diff --git a/dev-python/sphinx-click/sphinx-click-4.2.0.ebuild b/dev-python/sphinx-click/sphinx-click-4.2.0.ebuild index 1e90f2cf0a..5981ef715c 100644 --- a/dev-python/sphinx-click/sphinx-click-4.2.0.ebuild +++ b/dev-python/sphinx-click/sphinx-click-4.2.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 PYPI_NO_NORMALIZE=1 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 pypi diff --git a/dev-python/sphinx-hoverxref/sphinx-hoverxref-1.3.0.ebuild b/dev-python/sphinx-hoverxref/sphinx-hoverxref-1.3.0.ebuild index c3e8ea6efd..9a8d154f02 100644 --- a/dev-python/sphinx-hoverxref/sphinx-hoverxref-1.3.0.ebuild +++ b/dev-python/sphinx-hoverxref/sphinx-hoverxref-1.3.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) DISTUTILS_USE_PEP517=flit inherit distutils-r1 diff --git a/dev-python/sphinx-rtd-dark-mode/sphinx-rtd-dark-mode-1.2.4.ebuild b/dev-python/sphinx-rtd-dark-mode/sphinx-rtd-dark-mode-1.2.4.ebuild index 079b391e02..4d7c4a49f2 100644 --- a/dev-python/sphinx-rtd-dark-mode/sphinx-rtd-dark-mode-1.2.4.ebuild +++ b/dev-python/sphinx-rtd-dark-mode/sphinx-rtd-dark-mode-1.2.4.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/sphinx-sitemap/sphinx-sitemap-2.2.1.ebuild b/dev-python/sphinx-sitemap/sphinx-sitemap-2.2.1.ebuild index b64ed7b36d..4756602bbd 100644 --- a/dev-python/sphinx-sitemap/sphinx-sitemap-2.2.1.ebuild +++ b/dev-python/sphinx-sitemap/sphinx-sitemap-2.2.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/sphinx-sitemap/sphinx-sitemap-2.5.0.ebuild b/dev-python/sphinx-sitemap/sphinx-sitemap-2.5.0.ebuild index 1e6016758a..837cc838ed 100644 --- a/dev-python/sphinx-sitemap/sphinx-sitemap-2.5.0.ebuild +++ b/dev-python/sphinx-sitemap/sphinx-sitemap-2.5.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools PYPI_NO_NORMALIZE=1 inherit distutils-r1 diff --git a/dev-python/sphinx-version-warning/sphinx-version-warning-1.1.2.ebuild b/dev-python/sphinx-version-warning/sphinx-version-warning-1.1.2.ebuild index 829cca4d23..986ba120a4 100644 --- a/dev-python/sphinx-version-warning/sphinx-version-warning-1.1.2.ebuild +++ b/dev-python/sphinx-version-warning/sphinx-version-warning-1.1.2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/sphinxcontrib-katex/sphinxcontrib-katex-0.9.3.ebuild b/dev-python/sphinxcontrib-katex/sphinxcontrib-katex-0.9.3.ebuild index 64c77dabc1..094dd8f509 100644 --- a/dev-python/sphinxcontrib-katex/sphinxcontrib-katex-0.9.3.ebuild +++ b/dev-python/sphinxcontrib-katex/sphinxcontrib-katex-0.9.3.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 diff --git a/dev-python/sphinxcontrib-katex/sphinxcontrib-katex-0.9.4.ebuild b/dev-python/sphinxcontrib-katex/sphinxcontrib-katex-0.9.4.ebuild index 88c8d835b9..b45f856996 100644 --- a/dev-python/sphinxcontrib-katex/sphinxcontrib-katex-0.9.4.ebuild +++ b/dev-python/sphinxcontrib-katex/sphinxcontrib-katex-0.9.4.ebuild @@ -5,7 +5,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools PYPI_NO_NORMALIZE=1 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 pypi diff --git a/dev-python/sphinxcontrib-restbuilder/sphinxcontrib-restbuilder-0.3-r1.ebuild b/dev-python/sphinxcontrib-restbuilder/sphinxcontrib-restbuilder-0.3-r1.ebuild index a14a86b66b..bed2259fc2 100644 --- a/dev-python/sphinxcontrib-restbuilder/sphinxcontrib-restbuilder-0.3-r1.ebuild +++ b/dev-python/sphinxcontrib-restbuilder/sphinxcontrib-restbuilder-0.3-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/sphinxcontrib-zopeext/sphinxcontrib-zopeext-0.4.2-r1.ebuild b/dev-python/sphinxcontrib-zopeext/sphinxcontrib-zopeext-0.4.2-r1.ebuild index 847ce86f8f..23f6b96eeb 100644 --- a/dev-python/sphinxcontrib-zopeext/sphinxcontrib-zopeext-0.4.2-r1.ebuild +++ b/dev-python/sphinxcontrib-zopeext/sphinxcontrib-zopeext-0.4.2-r1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=pdm -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 pypi diff --git a/dev-python/sre-yield/sre-yield-1.2-r1.ebuild b/dev-python/sre-yield/sre-yield-1.2-r1.ebuild index 8d14ba6bd6..201eb18efc 100644 --- a/dev-python/sre-yield/sre-yield-1.2-r1.ebuild +++ b/dev-python/sre-yield/sre-yield-1.2-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/srt/srt-3.5.1.ebuild b/dev-python/srt/srt-3.5.1.ebuild index 4474b279d1..4022e2af5b 100644 --- a/dev-python/srt/srt-3.5.1.ebuild +++ b/dev-python/srt/srt-3.5.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/srt/srt-3.5.2.ebuild b/dev-python/srt/srt-3.5.2.ebuild index 1bcea1ea0d..cb3afc56d6 100644 --- a/dev-python/srt/srt-3.5.2.ebuild +++ b/dev-python/srt/srt-3.5.2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi diff --git a/dev-python/srt/srt-3.5.3.ebuild b/dev-python/srt/srt-3.5.3.ebuild index 1bcea1ea0d..cb3afc56d6 100644 --- a/dev-python/srt/srt-3.5.3.ebuild +++ b/dev-python/srt/srt-3.5.3.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi diff --git a/dev-python/sse-starlette/sse-starlette-1.1.6.ebuild b/dev-python/sse-starlette/sse-starlette-1.1.6.ebuild index f43dd45572..d247a016ff 100644 --- a/dev-python/sse-starlette/sse-starlette-1.1.6.ebuild +++ b/dev-python/sse-starlette/sse-starlette-1.1.6.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/starkbank-ecdsa/starkbank-ecdsa-2.2.0.ebuild b/dev-python/starkbank-ecdsa/starkbank-ecdsa-2.2.0.ebuild index 776c8dd158..1312f8ef44 100644 --- a/dev-python/starkbank-ecdsa/starkbank-ecdsa-2.2.0.ebuild +++ b/dev-python/starkbank-ecdsa/starkbank-ecdsa-2.2.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 PYPI_NO_NORMALIZE=1 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 pypi diff --git a/dev-python/stdlibs/stdlibs-2022.3.16.ebuild b/dev-python/stdlibs/stdlibs-2022.3.16.ebuild index e845767f7d..3b7c80def8 100644 --- a/dev-python/stdlibs/stdlibs-2022.3.16.ebuild +++ b/dev-python/stdlibs/stdlibs-2022.3.16.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=flit -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/stdlibs/stdlibs-2022.6.8.ebuild b/dev-python/stdlibs/stdlibs-2022.6.8.ebuild index 2a4ade0731..b763ab4a2e 100644 --- a/dev-python/stdlibs/stdlibs-2022.6.8.ebuild +++ b/dev-python/stdlibs/stdlibs-2022.6.8.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=flit -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 pypi diff --git a/dev-python/stone/stone-3.3.1.ebuild b/dev-python/stone/stone-3.3.1.ebuild index a2e5a29801..99d5fdf1eb 100644 --- a/dev-python/stone/stone-3.3.1.ebuild +++ b/dev-python/stone/stone-3.3.1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/strictyaml/strictyaml-1.6.1.ebuild b/dev-python/strictyaml/strictyaml-1.6.1.ebuild index ee36aa1019..016529adb5 100644 --- a/dev-python/strictyaml/strictyaml-1.6.1.ebuild +++ b/dev-python/strictyaml/strictyaml-1.6.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 diff --git a/dev-python/stringbrewer/stringbrewer-0.0.1-r1.ebuild b/dev-python/stringbrewer/stringbrewer-0.0.1-r1.ebuild index cd0e152da7..ee8032872e 100644 --- a/dev-python/stringbrewer/stringbrewer-0.0.1-r1.ebuild +++ b/dev-python/stringbrewer/stringbrewer-0.0.1-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi diff --git a/dev-python/stringcase/stringcase-1.2.0.ebuild b/dev-python/stringcase/stringcase-1.2.0.ebuild index 9ffd8e2929..6ad381f8bc 100644 --- a/dev-python/stringcase/stringcase-1.2.0.ebuild +++ b/dev-python/stringcase/stringcase-1.2.0.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) DISTUTILS_USE_SETUPTOOLS=no diff --git a/dev-python/survey/survey-3.4.3.ebuild b/dev-python/survey/survey-3.4.3.ebuild index 51f5141db3..487df29cd0 100644 --- a/dev-python/survey/survey-3.4.3.ebuild +++ b/dev-python/survey/survey-3.4.3.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 pypi DESCRIPTION="A simple library for creating beautiful interactive prompts" diff --git a/dev-python/survey/survey-4.0.0_alpha.ebuild b/dev-python/survey/survey-4.0.0_alpha.ebuild index 7db4db0eb2..382d6f9d14 100644 --- a/dev-python/survey/survey-4.0.0_alpha.ebuild +++ b/dev-python/survey/survey-4.0.0_alpha.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 MY_PV=${PV/_/-} diff --git a/dev-python/svgelements/svgelements-1.9.3.ebuild b/dev-python/svgelements/svgelements-1.9.3.ebuild index 5f50990fc8..8679e42c68 100644 --- a/dev-python/svgelements/svgelements-1.9.3.ebuild +++ b/dev-python/svgelements/svgelements-1.9.3.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 optfeature diff --git a/dev-python/sysv_ipc/sysv_ipc-1.1.0.ebuild b/dev-python/sysv_ipc/sysv_ipc-1.1.0.ebuild index c7c06e3086..8602c66475 100644 --- a/dev-python/sysv_ipc/sysv_ipc-1.1.0.ebuild +++ b/dev-python/sysv_ipc/sysv_ipc-1.1.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 diff --git a/dev-python/tempus-themes/tempus-themes-2.3.0.20220206.ebuild b/dev-python/tempus-themes/tempus-themes-2.3.0.20220206.ebuild index a4bd5ee41b..ad3929f3e9 100644 --- a/dev-python/tempus-themes/tempus-themes-2.3.0.20220206.ebuild +++ b/dev-python/tempus-themes/tempus-themes-2.3.0.20220206.ebuild @@ -5,7 +5,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools PYPI_NO_NORMALIZE=1 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 pypi DESCRIPTION="Accessible themes for Pygments" diff --git a/dev-python/tempy/tempy-1.1.0.ebuild b/dev-python/tempy/tempy-1.1.0.ebuild index 5729441c3d..49a363a498 100644 --- a/dev-python/tempy/tempy-1.1.0.ebuild +++ b/dev-python/tempy/tempy-1.1.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/testrepository/testrepository-0.0.20-r200.ebuild b/dev-python/testrepository/testrepository-0.0.20-r200.ebuild index 6f76f2065e..1c616d7822 100644 --- a/dev-python/testrepository/testrepository-0.0.20-r200.ebuild +++ b/dev-python/testrepository/testrepository-0.0.20-r200.ebuild @@ -64,7 +64,7 @@ EPYTEST_DESELECT=( testrepository/tests/commands/test_run.py::TestReturnCodeToSubunit::test_returncode_nonzero_fail_appended_to_content testrepository/tests/ui/test_cli.py::TestCLIUI::test_dash_dash_help_shows_help ) -PYTHON_COMPAT=( python3_{9..10} pypy3 ) +PYTHON_COMPAT=( python3_10 pypy3 ) PYTHON_REQ_USE="threads(+)" inherit distutils-r1 pypi diff --git a/dev-python/textual/textual-0.14.0.ebuild b/dev-python/textual/textual-0.14.0.ebuild index 6a188c7f52..ae054bf68e 100644 --- a/dev-python/textual/textual-0.14.0.ebuild +++ b/dev-python/textual/textual-0.14.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=poetry -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/timeslot/timeslot-0.1.2.ebuild b/dev-python/timeslot/timeslot-0.1.2.ebuild index 0918fc06e2..276e154bd6 100644 --- a/dev-python/timeslot/timeslot-0.1.2.ebuild +++ b/dev-python/timeslot/timeslot-0.1.2.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=poetry -PYTHON_COMPAT=( python3_{9..10} pypy3 ) +PYTHON_COMPAT=( python3_10 pypy3 ) inherit distutils-r1 pypi diff --git a/dev-python/trailrunner/trailrunner-1.2.1.ebuild b/dev-python/trailrunner/trailrunner-1.2.1.ebuild index 9f4c98ca2f..8b8626b466 100644 --- a/dev-python/trailrunner/trailrunner-1.2.1.ebuild +++ b/dev-python/trailrunner/trailrunner-1.2.1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=flit -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 pypi diff --git a/dev-python/transaction/transaction-3.0.1-r1.ebuild b/dev-python/transaction/transaction-3.0.1-r1.ebuild index 84113f738d..f3c189d41d 100644 --- a/dev-python/transaction/transaction-3.0.1-r1.ebuild +++ b/dev-python/transaction/transaction-3.0.1-r1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 pypi diff --git a/dev-python/transaction/transaction-3.1.0.ebuild b/dev-python/transaction/transaction-3.1.0.ebuild index a3bd17e830..90ab4b7661 100644 --- a/dev-python/transaction/transaction-3.1.0.ebuild +++ b/dev-python/transaction/transaction-3.1.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 pypi diff --git a/dev-python/trueskill/trueskill-0.4.5_p20220422.ebuild b/dev-python/trueskill/trueskill-0.4.5_p20220422.ebuild index 7fe9c4b4f3..8a31aa7565 100644 --- a/dev-python/trueskill/trueskill-0.4.5_p20220422.ebuild +++ b/dev-python/trueskill/trueskill-0.4.5_p20220422.ebuild @@ -4,7 +4,7 @@ EAPI=8 COMMIT="c450c76af542761f6d806fbe9b10b93a9b013212" -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 diff --git a/dev-python/ttfautohint-py/ttfautohint-py-0.5.1-r1.ebuild b/dev-python/ttfautohint-py/ttfautohint-py-0.5.1-r1.ebuild index 254ac87544..3e00b15891 100644 --- a/dev-python/ttfautohint-py/ttfautohint-py-0.5.1-r1.ebuild +++ b/dev-python/ttfautohint-py/ttfautohint-py-0.5.1-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/tulir-telethon/tulir-telethon-1.28.0_alpha9-r1.ebuild b/dev-python/tulir-telethon/tulir-telethon-1.28.0_alpha9-r1.ebuild index c3471b4596..afaba4efa4 100644 --- a/dev-python/tulir-telethon/tulir-telethon-1.28.0_alpha9-r1.ebuild +++ b/dev-python/tulir-telethon/tulir-telethon-1.28.0_alpha9-r1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/tweepy/tweepy-4.10.1.ebuild b/dev-python/tweepy/tweepy-4.10.1.ebuild index 0694e26f5a..508fa1a202 100644 --- a/dev-python/tweepy/tweepy-4.10.1.ebuild +++ b/dev-python/tweepy/tweepy-4.10.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 diff --git a/dev-python/types-paramiko/types-paramiko-2.10.0.ebuild b/dev-python/types-paramiko/types-paramiko-2.10.0.ebuild index 3875ace19b..349590ef02 100644 --- a/dev-python/types-paramiko/types-paramiko-2.10.0.ebuild +++ b/dev-python/types-paramiko/types-paramiko-2.10.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 diff --git a/dev-python/types-paramiko/types-paramiko-2.11.1.ebuild b/dev-python/types-paramiko/types-paramiko-2.11.1.ebuild index fb782452c3..c6f49f23f3 100644 --- a/dev-python/types-paramiko/types-paramiko-2.11.1.ebuild +++ b/dev-python/types-paramiko/types-paramiko-2.11.1.ebuild @@ -4,7 +4,7 @@ EAPI=8 PYPI_NO_NORMALIZE=1 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 pypi diff --git a/dev-python/types-python-dateutil/types-python-dateutil-2.8.17.ebuild b/dev-python/types-python-dateutil/types-python-dateutil-2.8.17.ebuild index 5ba644a43b..6b2e5984af 100644 --- a/dev-python/types-python-dateutil/types-python-dateutil-2.8.17.ebuild +++ b/dev-python/types-python-dateutil/types-python-dateutil-2.8.17.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 diff --git a/dev-python/types-python-dateutil/types-python-dateutil-2.8.18.ebuild b/dev-python/types-python-dateutil/types-python-dateutil-2.8.18.ebuild index 630c1af89a..c5b7e53335 100644 --- a/dev-python/types-python-dateutil/types-python-dateutil-2.8.18.ebuild +++ b/dev-python/types-python-dateutil/types-python-dateutil-2.8.18.ebuild @@ -4,7 +4,7 @@ EAPI=8 PYPI_NO_NORMALIZE=1 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 pypi diff --git a/dev-python/types-pytz/types-pytz-2021.3.8.ebuild b/dev-python/types-pytz/types-pytz-2021.3.8.ebuild index 28ca328e6f..f3b20023dd 100644 --- a/dev-python/types-pytz/types-pytz-2021.3.8.ebuild +++ b/dev-python/types-pytz/types-pytz-2021.3.8.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 diff --git a/dev-python/types-pytz/types-pytz-2022.1.1.ebuild b/dev-python/types-pytz/types-pytz-2022.1.1.ebuild index 467c99174a..312607d44e 100644 --- a/dev-python/types-pytz/types-pytz-2022.1.1.ebuild +++ b/dev-python/types-pytz/types-pytz-2022.1.1.ebuild @@ -4,7 +4,7 @@ EAPI=8 PYPI_NO_NORMALIZE=1 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 pypi diff --git a/dev-python/types-requests/types-requests-2.27.30.ebuild b/dev-python/types-requests/types-requests-2.27.30.ebuild index 99ac270e6e..d518230847 100644 --- a/dev-python/types-requests/types-requests-2.27.30.ebuild +++ b/dev-python/types-requests/types-requests-2.27.30.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 diff --git a/dev-python/types-requests/types-requests-2.28.0.ebuild b/dev-python/types-requests/types-requests-2.28.0.ebuild index 9f38bbb8c9..09193336a8 100644 --- a/dev-python/types-requests/types-requests-2.28.0.ebuild +++ b/dev-python/types-requests/types-requests-2.28.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 PYPI_NO_NORMALIZE=1 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 pypi diff --git a/dev-python/types-urllib3/types-urllib3-1.26.14.ebuild b/dev-python/types-urllib3/types-urllib3-1.26.14.ebuild index b3b454e624..e04966df5a 100644 --- a/dev-python/types-urllib3/types-urllib3-1.26.14.ebuild +++ b/dev-python/types-urllib3/types-urllib3-1.26.14.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 diff --git a/dev-python/types-urllib3/types-urllib3-1.26.15.ebuild b/dev-python/types-urllib3/types-urllib3-1.26.15.ebuild index e0e418a493..0da244bd08 100644 --- a/dev-python/types-urllib3/types-urllib3-1.26.15.ebuild +++ b/dev-python/types-urllib3/types-urllib3-1.26.15.ebuild @@ -4,7 +4,7 @@ EAPI=8 PYPI_NO_NORMALIZE=1 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 pypi diff --git a/dev-python/typing_inspect/typing_inspect-0.7.1.ebuild b/dev-python/typing_inspect/typing_inspect-0.7.1.ebuild index 2bbabc968c..ed6f558aa5 100644 --- a/dev-python/typing_inspect/typing_inspect-0.7.1.ebuild +++ b/dev-python/typing_inspect/typing_inspect-0.7.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) # python3_11 depends on dev-python/mypy_extensions +PYTHON_COMPAT=( python3_10 ) # python3_11 depends on dev-python/mypy_extensions inherit distutils-r1 pypi diff --git a/dev-python/ufmt/ufmt-1.3.3.ebuild b/dev-python/ufmt/ufmt-1.3.3.ebuild index 4ca20a0307..5817c13de5 100644 --- a/dev-python/ufmt/ufmt-1.3.3.ebuild +++ b/dev-python/ufmt/ufmt-1.3.3.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=flit -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 pypi diff --git a/dev-python/ufo2ft/ufo2ft-2.27.0.ebuild b/dev-python/ufo2ft/ufo2ft-2.27.0.ebuild index e5218e158e..3aa325f22f 100644 --- a/dev-python/ufo2ft/ufo2ft-2.27.0.ebuild +++ b/dev-python/ufo2ft/ufo2ft-2.27.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 pypi DESCRIPTION="A bridge from UFOs to FontTool objects" diff --git a/dev-python/ufoLib2/ufoLib2-0.13.1.ebuild b/dev-python/ufoLib2/ufoLib2-0.13.1.ebuild index 83e9d75245..3f05fce82a 100644 --- a/dev-python/ufoLib2/ufoLib2-0.13.1.ebuild +++ b/dev-python/ufoLib2/ufoLib2-0.13.1.ebuild @@ -10,7 +10,7 @@ DOCS_DEPEND=" " DOCS_DIR="${S}/docs/source" DOCS_BUILDER="sphinx" -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 docs diff --git a/dev-python/ufoNormalizer/ufoNormalizer-0.6.1.ebuild b/dev-python/ufoNormalizer/ufoNormalizer-0.6.1.ebuild index 5cd1352018..1aedff8f70 100644 --- a/dev-python/ufoNormalizer/ufoNormalizer-0.6.1.ebuild +++ b/dev-python/ufoNormalizer/ufoNormalizer-0.6.1.ebuild @@ -5,7 +5,7 @@ EAPI=8 MY_PN="${PN,,}" MY_P="${MY_PN}-${PV}" -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 diff --git a/dev-python/ufoProcessor/ufoProcessor-1.9.0-r2.ebuild b/dev-python/ufoProcessor/ufoProcessor-1.9.0-r2.ebuild index 806d4396c9..579f1d1472 100644 --- a/dev-python/ufoProcessor/ufoProcessor-1.9.0-r2.ebuild +++ b/dev-python/ufoProcessor/ufoProcessor-1.9.0-r2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools PYPI_NO_NORMALIZE=1 inherit distutils-r1 pypi diff --git a/dev-python/uharfbuzz/uharfbuzz-0.33.0-r1.ebuild b/dev-python/uharfbuzz/uharfbuzz-0.33.0-r1.ebuild index c39c09f2ea..bf3b81c363 100644 --- a/dev-python/uharfbuzz/uharfbuzz-0.33.0-r1.ebuild +++ b/dev-python/uharfbuzz/uharfbuzz-0.33.0-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi diff --git a/dev-python/ukpostcodeparser/ukpostcodeparser-1.1.2-r1.ebuild b/dev-python/ukpostcodeparser/ukpostcodeparser-1.1.2-r1.ebuild index 6e0ba22458..f8b3f80b05 100644 --- a/dev-python/ukpostcodeparser/ukpostcodeparser-1.1.2-r1.ebuild +++ b/dev-python/ukpostcodeparser/ukpostcodeparser-1.1.2-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( pypy3 python3_{9..11} ) +PYTHON_COMPAT=( pypy3 python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/unicodedata2/unicodedata2-15.0.0.ebuild b/dev-python/unicodedata2/unicodedata2-15.0.0.ebuild index e71ac660f3..9713173de6 100644 --- a/dev-python/unicodedata2/unicodedata2-15.0.0.ebuild +++ b/dev-python/unicodedata2/unicodedata2-15.0.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi diff --git a/dev-python/urlmatch/urlmatch-1.0.1-r2.ebuild b/dev-python/urlmatch/urlmatch-1.0.1-r2.ebuild index 6f46b079ba..49c3b30c5d 100644 --- a/dev-python/urlmatch/urlmatch-1.0.1-r2.ebuild +++ b/dev-python/urlmatch/urlmatch-1.0.1-r2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/usort/usort-1.0.2.ebuild b/dev-python/usort/usort-1.0.2.ebuild index d7355c6091..876d006135 100644 --- a/dev-python/usort/usort-1.0.2.ebuild +++ b/dev-python/usort/usort-1.0.2.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..10} ) # python3_11 depends on dev-python/libcst +PYTHON_COMPAT=( python3_10 ) # python3_11 depends on dev-python/libcst inherit distutils-r1 pypi diff --git a/dev-python/vharfbuzz/vharfbuzz-0.1.4-r1.ebuild b/dev-python/vharfbuzz/vharfbuzz-0.1.4-r1.ebuild index aa1bc0f289..fc4aa7711a 100644 --- a/dev-python/vharfbuzz/vharfbuzz-0.1.4-r1.ebuild +++ b/dev-python/vharfbuzz/vharfbuzz-0.1.4-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/volatile/volatile-2.1.0.ebuild b/dev-python/volatile/volatile-2.1.0.ebuild index 895a55d3d6..9d4c460cb7 100644 --- a/dev-python/volatile/volatile-2.1.0.ebuild +++ b/dev-python/volatile/volatile-2.1.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/vttlib/vttlib-0.11.0.ebuild b/dev-python/vttlib/vttlib-0.11.0.ebuild index a288c0aac2..6bf22b523c 100644 --- a/dev-python/vttlib/vttlib-0.11.0.ebuild +++ b/dev-python/vttlib/vttlib-0.11.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 MY_PN="vttLib" diff --git a/dev-python/w3lib/w3lib-2.0.1.ebuild b/dev-python/w3lib/w3lib-2.0.1.ebuild index 0454d4dc8e..708077d54f 100644 --- a/dev-python/w3lib/w3lib-2.0.1.ebuild +++ b/dev-python/w3lib/w3lib-2.0.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/w3lib/w3lib-2.1.1.ebuild b/dev-python/w3lib/w3lib-2.1.1.ebuild index 67f4a056fc..08c95fca3e 100644 --- a/dev-python/w3lib/w3lib-2.1.1.ebuild +++ b/dev-python/w3lib/w3lib-2.1.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi diff --git a/dev-python/webpy/webpy-0.62.ebuild b/dev-python/webpy/webpy-0.62.ebuild index 87e25c1fe9..d2e5a9ff19 100644 --- a/dev-python/webpy/webpy-0.62.ebuild +++ b/dev-python/webpy/webpy-0.62.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/webrtcvad/webrtcvad-2.0.10.ebuild b/dev-python/webrtcvad/webrtcvad-2.0.10.ebuild index fd5029050c..1bdcc301f0 100644 --- a/dev-python/webrtcvad/webrtcvad-2.0.10.ebuild +++ b/dev-python/webrtcvad/webrtcvad-2.0.10.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-python/wheezy-template/wheezy-template-3.1.0.ebuild b/dev-python/wheezy-template/wheezy-template-3.1.0.ebuild index 4e9e45707a..dd9c47a2c7 100644 --- a/dev-python/wheezy-template/wheezy-template-3.1.0.ebuild +++ b/dev-python/wheezy-template/wheezy-template-3.1.0.ebuild @@ -5,7 +5,7 @@ EAPI=8 # Tests aren't passing with PEP517 #DISTUTILS_USE_PEP517="setuptools" -PYTHON_COMPAT=( python3_{9,10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 diff --git a/dev-python/wrapio/wrapio-2.0.0.ebuild b/dev-python/wrapio/wrapio-2.0.0.ebuild index afd8c18790..fd567c8756 100644 --- a/dev-python/wrapio/wrapio-2.0.0.ebuild +++ b/dev-python/wrapio/wrapio-2.0.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 pypi DESCRIPTION="Handling event-based streams in Python" diff --git a/dev-python/wsgi_intercept/wsgi_intercept-1.10.0.ebuild b/dev-python/wsgi_intercept/wsgi_intercept-1.10.0.ebuild index b011abe500..b1b8ea0f50 100644 --- a/dev-python/wsgi_intercept/wsgi_intercept-1.10.0.ebuild +++ b/dev-python/wsgi_intercept/wsgi_intercept-1.10.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 pypi diff --git a/dev-python/xattr/xattr-0.9.9.ebuild b/dev-python/xattr/xattr-0.9.9.ebuild index fc581725ed..4b609ea204 100644 --- a/dev-python/xattr/xattr-0.9.9.ebuild +++ b/dev-python/xattr/xattr-0.9.9.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 pypi diff --git a/dev-python/xunitparser/xunitparser-1.3.4.ebuild b/dev-python/xunitparser/xunitparser-1.3.4.ebuild index f9ac522fbb..2fcc1f3a99 100644 --- a/dev-python/xunitparser/xunitparser-1.3.4.ebuild +++ b/dev-python/xunitparser/xunitparser-1.3.4.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-python/yams/yams-0.7.3.ebuild b/dev-python/yams/yams-0.7.3.ebuild index f1525ec4df..4d4d153c7b 100644 --- a/dev-python/yams/yams-0.7.3.ebuild +++ b/dev-python/yams/yams-0.7.3.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 systemd DESCRIPTION="Yet Another MPD Scrobbler (for Last.FM)" diff --git a/dev-python/yams/yams-9999.ebuild b/dev-python/yams/yams-9999.ebuild index 2a6d8e5717..5cc89a54cb 100644 --- a/dev-python/yams/yams-9999.ebuild +++ b/dev-python/yams/yams-9999.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 systemd DESCRIPTION="Yet Another MPD Scrobbler (for Last.FM)" diff --git a/dev-python/yaql/yaql-2.0.0.ebuild b/dev-python/yaql/yaql-2.0.0.ebuild index ca4d15a9aa..a000941336 100644 --- a/dev-python/yaql/yaql-2.0.0.ebuild +++ b/dev-python/yaql/yaql-2.0.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 pypi diff --git a/dev-python/youseedee/youseedee-0.3.0.ebuild b/dev-python/youseedee/youseedee-0.3.0.ebuild index 1010b8b5d5..5f373f9839 100644 --- a/dev-python/youseedee/youseedee-0.3.0.ebuild +++ b/dev-python/youseedee/youseedee-0.3.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 pypi diff --git a/dev-python/zodb/zodb-5.8.0-r1.ebuild b/dev-python/zodb/zodb-5.8.0-r1.ebuild index 367332c02c..96d69982f1 100644 --- a/dev-python/zodb/zodb-5.8.0-r1.ebuild +++ b/dev-python/zodb/zodb-5.8.0-r1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) PYPI_NO_NORMALIZE=1 PYPI_PN="${PN^^}" diff --git a/dev-python/zodbpickle/zodbpickle-3.0.1.ebuild b/dev-python/zodbpickle/zodbpickle-3.0.1.ebuild index cfbaa9e199..e1a50cab2a 100644 --- a/dev-python/zodbpickle/zodbpickle-3.0.1.ebuild +++ b/dev-python/zodbpickle/zodbpickle-3.0.1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 pypi diff --git a/dev-python/zope-cachedescriptors/zope-cachedescriptors-5.0.ebuild b/dev-python/zope-cachedescriptors/zope-cachedescriptors-5.0.ebuild index bb7ac9c511..c48326b70a 100644 --- a/dev-python/zope-cachedescriptors/zope-cachedescriptors-5.0.ebuild +++ b/dev-python/zope-cachedescriptors/zope-cachedescriptors-5.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) PYPI_NO_NORMALIZE=1 PYPI_PN="${PN/-/\.}" diff --git a/dev-python/zope-testrunner/zope-testrunner-6.0.ebuild b/dev-python/zope-testrunner/zope-testrunner-6.0.ebuild index f96dbfd811..baa599edea 100644 --- a/dev-python/zope-testrunner/zope-testrunner-6.0.ebuild +++ b/dev-python/zope-testrunner/zope-testrunner-6.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) PYPI_NO_NORMALIZE=1 PYPI_PN="${PN/-/\.}" diff --git a/dev-python/zopfli/zopfli-0.2.2.ebuild b/dev-python/zopfli/zopfli-0.2.2.ebuild index b3f2831547..72ef14418c 100644 --- a/dev-python/zopfli/zopfli-0.2.2.ebuild +++ b/dev-python/zopfli/zopfli-0.2.2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi diff --git a/dev-python/zxcvbn/zxcvbn-4.4.28.ebuild b/dev-python/zxcvbn/zxcvbn-4.4.28.ebuild index 8a49df6a8e..51a0b6416a 100644 --- a/dev-python/zxcvbn/zxcvbn-4.4.28.ebuild +++ b/dev-python/zxcvbn/zxcvbn-4.4.28.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/dev-util/DirectXShaderCompiler/DirectXShaderCompiler-1.7.2207-r1.ebuild b/dev-util/DirectXShaderCompiler/DirectXShaderCompiler-1.7.2207-r1.ebuild index e67a6c0e43..797326af84 100644 --- a/dev-util/DirectXShaderCompiler/DirectXShaderCompiler-1.7.2207-r1.ebuild +++ b/dev-util/DirectXShaderCompiler/DirectXShaderCompiler-1.7.2207-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit cmake check-reqs python-any-r1 DESCRIPTION="Microsoft DirectX Shader Compiler which is based on LLVM/Clang" diff --git a/dev-util/DirectXShaderCompiler/DirectXShaderCompiler-1.7.2212.ebuild b/dev-util/DirectXShaderCompiler/DirectXShaderCompiler-1.7.2212.ebuild index 66a2e0eab2..1fd278a0ea 100644 --- a/dev-util/DirectXShaderCompiler/DirectXShaderCompiler-1.7.2212.ebuild +++ b/dev-util/DirectXShaderCompiler/DirectXShaderCompiler-1.7.2212.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit cmake check-reqs python-any-r1 DESCRIPTION="Microsoft DirectX Shader Compiler which is based on LLVM/Clang" diff --git a/dev-util/FoBiS/FoBiS-3.0.5-r1.ebuild b/dev-util/FoBiS/FoBiS-3.0.5-r1.ebuild index 535056784d..d3fb8ffe62 100644 --- a/dev-util/FoBiS/FoBiS-3.0.5-r1.ebuild +++ b/dev-util/FoBiS/FoBiS-3.0.5-r1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/dev-util/afdko/afdko-3.8.1.ebuild b/dev-util/afdko/afdko-3.8.1.ebuild index c88af8414a..2cab66627d 100644 --- a/dev-util/afdko/afdko-3.8.1.ebuild +++ b/dev-util/afdko/afdko-3.8.1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 diff --git a/dev-util/babeltrace2/babeltrace2-2.0.4.ebuild b/dev-util/babeltrace2/babeltrace2-2.0.4.ebuild index e6bfb6500c..e80d6fa4b7 100644 --- a/dev-util/babeltrace2/babeltrace2-2.0.4.ebuild +++ b/dev-util/babeltrace2/babeltrace2-2.0.4.ebuild @@ -4,7 +4,7 @@ EAPI=8 # pypy3: obtaining PYTHON_CONFIG not supported -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit autotools python-single-r1 diff --git a/dev-util/binaryen/binaryen-105.ebuild b/dev-util/binaryen/binaryen-105.ebuild index d29af1338c..c786197fea 100644 --- a/dev-util/binaryen/binaryen-105.ebuild +++ b/dev-util/binaryen/binaryen-105.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} pypy3 ) +PYTHON_COMPAT=( python3_10 pypy3 ) inherit cmake python-any-r1 diff --git a/dev-util/fontmake/fontmake-3.3.0.ebuild b/dev-util/fontmake/fontmake-3.3.0.ebuild index ba38f9e177..1e753618c8 100644 --- a/dev-util/fontmake/fontmake-3.3.0.ebuild +++ b/dev-util/fontmake/fontmake-3.3.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 optfeature DESCRIPTION="A wrapper for several Python libraries to compile fonts from sources" diff --git a/dev-util/fortls/fortls-2.13.0.ebuild b/dev-util/fortls/fortls-2.13.0.ebuild index a8f9d2a568..2a3373634d 100644 --- a/dev-util/fortls/fortls-2.13.0.ebuild +++ b/dev-util/fortls/fortls-2.13.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 pypi diff --git a/dev-util/fpm/fpm-0.7.0-r2.ebuild b/dev-util/fpm/fpm-0.7.0-r2.ebuild index 38cc9186de..1bded4efa2 100644 --- a/dev-util/fpm/fpm-0.7.0-r2.ebuild +++ b/dev-util/fpm/fpm-0.7.0-r2.ebuild @@ -5,7 +5,7 @@ EAPI=8 FORTRAN_STANDARD="2003" -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit fortran-2 python-any-r1 toolchain-funcs diff --git a/dev-util/fpm/fpm-0.8.1.ebuild b/dev-util/fpm/fpm-0.8.1.ebuild index 0f3dda1c38..cdb50e9652 100644 --- a/dev-util/fpm/fpm-0.8.1.ebuild +++ b/dev-util/fpm/fpm-0.8.1.ebuild @@ -5,7 +5,7 @@ EAPI=8 FORTRAN_STANDARD="2003" -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit fortran-2 python-any-r1 toolchain-funcs diff --git a/dev-util/fypp/fypp-3.1.ebuild b/dev-util/fypp/fypp-3.1.ebuild index 72a6710a81..e89a1a89a2 100644 --- a/dev-util/fypp/fypp-3.1.ebuild +++ b/dev-util/fypp/fypp-3.1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 pypi diff --git a/dev-util/osc/Manifest b/dev-util/osc/Manifest deleted file mode 100644 index f8150c3b1d..0000000000 --- a/dev-util/osc/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST osc-0.173.0.tar.gz 362486 BLAKE2B c8231b547c82348a767d6757b7dfe5c5f0c9ade02f0f0baceac0573c26ba6c45bd4edc386fab70320ad117d3ac23443e96b2fc1599d1c7bfda5b70427cba6581 SHA512 212657621a20e662279b06e63ac201f761af55c348d3f6b6576b9fbea2e3403dc5f87295d6039f5cc7890ca85425bda95ed32ed2fbc39f3d7dcaad4b9e12bb9b diff --git a/dev-util/osc/files/osc-no-man-compression.patch b/dev-util/osc/files/osc-no-man-compression.patch deleted file mode 100644 index 0b8dcf7ef5..0000000000 --- a/dev-util/osc/files/osc-no-man-compression.patch +++ /dev/null @@ -1,31 +0,0 @@ ---- a/setup.py -+++ b/setup.py -@@ -3,7 +3,6 @@ - from distutils.core import setup - import distutils.core - from distutils.command import build, install_data --import gzip - import os.path - import sys - -@@ -29,9 +28,9 @@ - def build_man_page(self): - """ - """ -- man_path = os.path.join(self.build_base, 'osc.1.gz') -+ man_path = os.path.join(self.build_base, 'osc.1') - distutils.log.info('generating %s' % man_path) -- outfile = gzip.open(man_path, 'wt') -+ outfile = open(man_path, 'w') - osccli = commandline.Osc(stdout=outfile) - # FIXME: we cannot call the main method because osc expects an ~/.oscrc - # file (this would break builds in environments like the obs) -@@ -100,7 +99,7 @@ - - data_files = [] - if sys.platform[:3] != 'win': -- data_files.append((os.path.join('share', 'man', 'man1'), ['osc.1.gz'])) -+ data_files.append((os.path.join('share', 'man', 'man1'), ['osc.1'])) - - with open("README") as fh: - long_description = fh.read() diff --git a/dev-util/osc/files/osc.zsh_completion b/dev-util/osc/files/osc.zsh_completion deleted file mode 100644 index 74f2432b80..0000000000 --- a/dev-util/osc/files/osc.zsh_completion +++ /dev/null @@ -1,147 +0,0 @@ -#compdef osc -# -# Copyright (C) 2009,2010 Holger Macht -# -# This file is released under the GPLv2. -# -# Based on the the zsh guide from http://zsh.dotsrc.org/Guide/zshguide06.html -# -# Toggle verbose completions: zstyle ':completion:*:osc:*' verbose no -# zstyle ':completion:*:osc-subcommand:*' verbose no -# -# Use the variables $ZSH_OSC_BUILD_TARGETS_EXTRA and $ZSH_OSC_PROJECTS_EXTRA to -# extend the list of possible completions in your ~/.zshrc like that: -# export OSC_PROJECTS_EXTRA="Base:System Base:shells" -# -# version 0.2 -# - -OSC_BUILD_TARGETS="openSUSE_10.2 openSUSE_10.3 openSUSE_11.0 openSUSE_11.1 openSUSE_11.2 openSUSE_11.3 openSUSE_Factory" -OSC_PROJECTS="openSUSE:Factory openSUSE:11.2 openSUSE:11.3 openSUSE:11.1 openSUSE:11.0 openSUSE:10.3" - -# user defined variables $OSC_BUILD_TARGETS_EXTRA and -# $OSC_PROJECTS_EXTRA can add to the project/build target list -OSC_BUILD_TARGETS="$OSC_BUILD_TARGETS $ZSH_OSC_BUILD_TARGETS_EXTRA" -OSC_PROJECTS="$OSC_PROJECTS $ZSH_OSC_PROJECTS_EXTRA" - -# Main dispatcher - -_osc() { - if (( CURRENT > 2 )) && [[ ${words[2]} != "help" ]]; then - # Remember the subcommand name - local cmd=${words[2]} - # Set the context for the subcommand. - curcontext="${curcontext%:*:*}:osc-subcommand" - # Narrow the range of words we are looking at to exclude `osc' - (( CURRENT-- )) - shift words - # Run the completion for the subcommand - if [ "$cmd" = "submitreq" -o "$cmd" = "sr" ]; then - _osc_cmd_submitreq - elif [ "$cmd" = "getbinaries" ]; then - _osc_cmd_getbinaries - elif [ "$cmd" = "checkout" -o "$cmd" = "co" -o "$cmd" = "branch" ]; then - _osc_cmd_checkout - elif [ "$cmd" = "buildlog" -o "$cmd" = "buildinfo" -o "$cmd" = "bl" ]; then - _osc_cmd_buildlog - else - _osc_cmd_do $cmd - fi - else - local hline - local -a cmdlist - local tag=0 - _call_program help-commands osc help | while read -A hline; do - # start parsing with "commands:" - [[ $hline[1] = "commands:" ]] && tag=1 - # stop parsing at the line starting with "For" - [[ $hline[1] = "For" ]] && tag=0 - [[ $tag = 0 ]] && continue - # all commands have to start with lower case letters - [[ $hline[1] =~ ^[A-Z] ]] && continue - (( ${#hline} < 2 )) && continue - - # ${hline[1]%,} truncates the last ',' - cmdlist=($cmdlist "${hline[1]%,}:${hline[2,-1]}") - done - _describe -t osc-commands 'osc command' cmdlist - fi -} - -_osc_cmd_getbinaries() { - _arguments \ - '1:PROJECT:( `echo $OSC_PROJECTS` )' \ - '2:PACKAGE:(PACKAGE)' \ - '3:REPOSITORY:( `echo $OSC_BUILD_TARGETS` )' \ - '4:ARCHITECTURE:(i586 x86_64)' -} - -_osc_cmd_checkout() { - _arguments \ - '1:PROJECT:( `echo $OSC_PROJECTS` )' \ - '2:PACKAGE:(PACKAGE)' -} - -_osc_cmd_buildlog() { - _arguments \ - '1:REPOSITORY:( `echo $OSC_BUILD_TARGETS` )' \ - '2:ARCHITECTURE:(i586 x86_64)' -} - -_osc_cmd_submitreq() { - local hline - local -a cmdlist - local tag=0 - _call_program help-commands osc help $cmd | while read -A hline; do - # start parsing from "usage:" - [[ $hline[1] = "usage:" ]] && tag=1 - [[ $tag = 0 ]] && continue - - if [[ $hline[1] =~ ^osc ]]; then - shift hline; shift hline - elif ! [[ $hline[1] =~ ^- ]]; then - # Option has to start with a '-' or 'osc submitrequest' - continue - fi - - (( ${#hline} < 2 )) && continue - - cmdlist=($cmdlist "${hline[1]%,}:${hline[2,-1]}") - - done - - _describe -t osc-commands 'osc command' cmdlist -} - - -_osc_cmd_do() { - local hline - local -a cmdlist - local tag=0 - - # only start completion if theres some '-' on the line - if ! [ "$words[2]" = "-" ]; then - _complete - return - fi - - _call_program help-commands osc help $cmd | while read -A hline; do - # start parsing from "Options:" - [[ $hline[1] = "Options:" ]] && tag=1 - [[ $tag = 0 ]] && continue - # Option has to start with a '-' - [[ $hline[1] =~ ^- ]] || continue - (( ${#hline} < 2 )) && continue - - cmdlist=($cmdlist "${hline[1]%,}:${hline[2,-1]}") - done - - if [ -n "$cmdlist" ]; then - _describe -t osc-commands 'osc command' cmdlist - else - _complete - fi -} - -# Code to make sure _osc is run when we load it -_osc "$@" diff --git a/dev-util/osc/metadata.xml b/dev-util/osc/metadata.xml deleted file mode 100644 index e85c229154..0000000000 --- a/dev-util/osc/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - samuelbernardo.mail@gmail.com - Samuel Bernardo - - - Subversion-like client for Open Build Service - http://open-build-service.org/ It serves as client for the source code repository part of the build service, and it is used to edit metadata or query about build results. - - diff --git a/dev-util/osc/osc-0.173.0-r1.ebuild b/dev-util/osc/osc-0.173.0-r1.ebuild deleted file mode 100644 index 0e6605a3de..0000000000 --- a/dev-util/osc/osc-0.173.0-r1.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_9 ) -PYTHON_REQ_USE="xml" -DISTUTILS_SINGLE_IMPL=1 - -inherit distutils-r1 shell-completion - -DESCRIPTION="Command line tool for Open Build Service" -HOMEPAGE=" - https://en.opensuse.org/openSUSE:OSC - https://github.com/openSUSE/osc -" - -if [[ ${PV} == 9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/openSUSE/${PN}.git" -else - OBS_PROJECT="openSUSE:Tools" - SRC_URI="https://github.com/openSUSE/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -fi - -LICENSE="GPL-2" -SLOT="0" -# Test require config file: osc.oscerr.NoConfigfile -RESTRICT="test" - -RDEPEND=" - app-arch/rpm[python,${PYTHON_SINGLE_USEDEP}] - $(python_gen_cond_dep ' - dev-python/m2crypto[${PYTHON_USEDEP}] - ') - ${PYTHON_SINGLE_DEPS} -" -BDEPEND=" - $(python_gen_cond_dep ' - >=dev-python/setuptools-scm-1.15.0[${PYTHON_USEDEP}] - ') - test? ( - ${RDEPEND} - $(python_gen_cond_dep ' - dev-python/path[${PYTHON_USEDEP}] - ') -)" - -PATCHES=( "${FILESDIR}"/${PN}-no-man-compression.patch ) - -distutils_enable_tests pytest -# Bug: https://bugs.gentoo.org/704520 -#distutils_enable_sphinx docs dev-python/alabaster - -src_install() { - distutils-r1_src_install - - dosym osc-wrapper.py /usr/bin/osc - rm -f "${ED}/usr/share/doc/${PN}"*/TODO* || die - newbashcomp dist/complete.sh "${PN}" - insinto /usr/lib/osc - newins dist/osc.complete complete - newzshcomp "${FILESDIR}/${PN}.zsh_completion" "_${PN}" - dofishcomp "${PN}.fish" -} diff --git a/dev-util/osc/osc-9999.ebuild b/dev-util/osc/osc-9999.ebuild deleted file mode 100644 index 0e6605a3de..0000000000 --- a/dev-util/osc/osc-9999.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_9 ) -PYTHON_REQ_USE="xml" -DISTUTILS_SINGLE_IMPL=1 - -inherit distutils-r1 shell-completion - -DESCRIPTION="Command line tool for Open Build Service" -HOMEPAGE=" - https://en.opensuse.org/openSUSE:OSC - https://github.com/openSUSE/osc -" - -if [[ ${PV} == 9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/openSUSE/${PN}.git" -else - OBS_PROJECT="openSUSE:Tools" - SRC_URI="https://github.com/openSUSE/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -fi - -LICENSE="GPL-2" -SLOT="0" -# Test require config file: osc.oscerr.NoConfigfile -RESTRICT="test" - -RDEPEND=" - app-arch/rpm[python,${PYTHON_SINGLE_USEDEP}] - $(python_gen_cond_dep ' - dev-python/m2crypto[${PYTHON_USEDEP}] - ') - ${PYTHON_SINGLE_DEPS} -" -BDEPEND=" - $(python_gen_cond_dep ' - >=dev-python/setuptools-scm-1.15.0[${PYTHON_USEDEP}] - ') - test? ( - ${RDEPEND} - $(python_gen_cond_dep ' - dev-python/path[${PYTHON_USEDEP}] - ') -)" - -PATCHES=( "${FILESDIR}"/${PN}-no-man-compression.patch ) - -distutils_enable_tests pytest -# Bug: https://bugs.gentoo.org/704520 -#distutils_enable_sphinx docs dev-python/alabaster - -src_install() { - distutils-r1_src_install - - dosym osc-wrapper.py /usr/bin/osc - rm -f "${ED}/usr/share/doc/${PN}"*/TODO* || die - newbashcomp dist/complete.sh "${PN}" - insinto /usr/lib/osc - newins dist/osc.complete complete - newzshcomp "${FILESDIR}/${PN}.zsh_completion" "_${PN}" - dofishcomp "${PN}.fish" -} diff --git a/dev-util/pmbootstrap/pmbootstrap-1.51.0.ebuild b/dev-util/pmbootstrap/pmbootstrap-1.51.0.ebuild index 94f362f591..7d87b58a15 100644 --- a/dev-util/pmbootstrap/pmbootstrap-1.51.0.ebuild +++ b/dev-util/pmbootstrap/pmbootstrap-1.51.0.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_SINGLE_IMPL=1 inherit distutils-r1 linux-info pypi diff --git a/dev-util/quilttools/quilttools-0.3-r1.ebuild b/dev-util/quilttools/quilttools-0.3-r1.ebuild index 1b36dab4e1..187afea351 100644 --- a/dev-util/quilttools/quilttools-0.3-r1.ebuild +++ b/dev-util/quilttools/quilttools-0.3-r1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit python-single-r1 diff --git a/dev-util/reuse/reuse-1.1.0.ebuild b/dev-util/reuse/reuse-1.1.0.ebuild index d5a1a9fcb9..5c31d2cf98 100644 --- a/dev-util/reuse/reuse-1.1.0.ebuild +++ b/dev-util/reuse/reuse-1.1.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=poetry inherit distutils-r1 diff --git a/dev-util/reuse/reuse-1.1.2.ebuild b/dev-util/reuse/reuse-1.1.2.ebuild index 7d651ac991..5454d35697 100644 --- a/dev-util/reuse/reuse-1.1.2.ebuild +++ b/dev-util/reuse/reuse-1.1.2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=poetry inherit distutils-r1 pypi diff --git a/dev-vcs/git-cu/git-cu-0.5.0.ebuild b/dev-vcs/git-cu/git-cu-0.5.0.ebuild index c46fa4509e..84594088ff 100644 --- a/dev-vcs/git-cu/git-cu-0.5.0.ebuild +++ b/dev-vcs/git-cu/git-cu-0.5.0.ebuild @@ -5,7 +5,7 @@ EAPI=8 DISTUTILS_USE_PEP517=poetry PYPI_NO_NORMALIZE=1 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 pypi DESCRIPTION="Helps to keep your local git repositories organized" diff --git a/dev-vcs/git-repo-updater/git-repo-updater-0.5.1-r2.ebuild b/dev-vcs/git-repo-updater/git-repo-updater-0.5.1-r2.ebuild index d0f4395f4c..e6273e0a01 100644 --- a/dev-vcs/git-repo-updater/git-repo-updater-0.5.1-r2.ebuild +++ b/dev-vcs/git-repo-updater/git-repo-updater-0.5.1-r2.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_SETUPTOOLS=rdepend -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/games-action/ddnet/ddnet-16.9.ebuild b/games-action/ddnet/ddnet-16.9.ebuild index 4b3da81458..08aaed5b8f 100644 --- a/games-action/ddnet/ddnet-16.9.ebuild +++ b/games-action/ddnet/ddnet-16.9.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) CRATES=" cc-1.0.73 diff --git a/games-action/ddnet/ddnet-9999.ebuild b/games-action/ddnet/ddnet-9999.ebuild index 1888b1eccb..19aa00d56e 100644 --- a/games-action/ddnet/ddnet-9999.ebuild +++ b/games-action/ddnet/ddnet-9999.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit cargo git-r3 cmake python-any-r1 xdg diff --git a/games-arcade/taisei/taisei-1.3.2-r2.ebuild b/games-arcade/taisei/taisei-1.3.2-r2.ebuild index 4891047e72..e90a4a7258 100644 --- a/games-arcade/taisei/taisei-1.3.2-r2.ebuild +++ b/games-arcade/taisei/taisei-1.3.2-r2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9,10,11} ) +PYTHON_COMPAT=( python3_{10,11} ) inherit meson python-any-r1 xdg diff --git a/games-arcade/taisei/taisei-9999.ebuild b/games-arcade/taisei/taisei-9999.ebuild index b51703e9bc..69e2a116f4 100644 --- a/games-arcade/taisei/taisei-9999.ebuild +++ b/games-arcade/taisei/taisei-9999.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9,10,11} ) +PYTHON_COMPAT=( python3_{10,11} ) inherit meson python-any-r1 xdg diff --git a/games-board/rmahjong/rmahjong-0.4_p20201106.ebuild b/games-board/rmahjong/rmahjong-0.4_p20201106.ebuild index a098bb1c00..2a02080965 100644 --- a/games-board/rmahjong/rmahjong-0.4_p20201106.ebuild +++ b/games-board/rmahjong/rmahjong-0.4_p20201106.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit desktop python-single-r1 toolchain-funcs xdg diff --git a/games-fps/crispy-doom/crispy-doom-5.12.0.ebuild b/games-fps/crispy-doom/crispy-doom-5.12.0.ebuild index 5bf2fb421d..f84058dfe7 100644 --- a/games-fps/crispy-doom/crispy-doom-5.12.0.ebuild +++ b/games-fps/crispy-doom/crispy-doom-5.12.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9,10,11} ) +PYTHON_COMPAT=( python3_{10,11} ) inherit autotools prefix python-any-r1 xdg diff --git a/games-fps/crispy-doom/crispy-doom-6.0.ebuild b/games-fps/crispy-doom/crispy-doom-6.0.ebuild index b530cfe12f..1afc599e7d 100644 --- a/games-fps/crispy-doom/crispy-doom-6.0.ebuild +++ b/games-fps/crispy-doom/crispy-doom-6.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit autotools prefix python-any-r1 xdg diff --git a/games-misc/gay/gay-1.2.8.ebuild b/games-misc/gay/gay-1.2.8.ebuild index fba82d9217..4f2857ce08 100644 --- a/games-misc/gay/gay-1.2.8.ebuild +++ b/games-misc/gay/gay-1.2.8.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/games-misc/gay/gay-1.2.9.ebuild b/games-misc/gay/gay-1.2.9.ebuild index afdd6fb522..652b96cb62 100644 --- a/games-misc/gay/gay-1.2.9.ebuild +++ b/games-misc/gay/gay-1.2.9.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 pypi diff --git a/games-rpg/snoot-game/snoot-game-1.8-r1.ebuild b/games-rpg/snoot-game/snoot-game-1.8-r1.ebuild index f8b896dd44..f9aefbd652 100644 --- a/games-rpg/snoot-game/snoot-game-1.8-r1.ebuild +++ b/games-rpg/snoot-game/snoot-game-1.8-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9,10,11} ) +PYTHON_COMPAT=( python3_{10,11} ) inherit python-single-r1 desktop wrapper DESCRIPTION="Visual novel parody of Goodbye Volcano High" diff --git a/games-rpg/snoot-game/snoot-game-1.8.ebuild b/games-rpg/snoot-game/snoot-game-1.8.ebuild index 2ceff2b731..193d9858fa 100644 --- a/games-rpg/snoot-game/snoot-game-1.8.ebuild +++ b/games-rpg/snoot-game/snoot-game-1.8.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9,10,11} ) +PYTHON_COMPAT=( python3_{10,11} ) inherit python-single-r1 desktop wrapper DESCRIPTION="Visual novel parody of Goodbye Volcano High" diff --git a/games-util/chiaki/chiaki-2.1.1-r2.ebuild b/games-util/chiaki/chiaki-2.1.1-r2.ebuild index 6d3db44618..60fe2127ec 100644 --- a/games-util/chiaki/chiaki-2.1.1-r2.ebuild +++ b/games-util/chiaki/chiaki-2.1.1-r2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit cmake python-single-r1 xdg DESCRIPTION="Client for PlayStation 4 and PlayStation 5 Remote Play" diff --git a/games-util/chiaki/chiaki-9999.ebuild b/games-util/chiaki/chiaki-9999.ebuild index 6d3db44618..60fe2127ec 100644 --- a/games-util/chiaki/chiaki-9999.ebuild +++ b/games-util/chiaki/chiaki-9999.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit cmake python-single-r1 xdg DESCRIPTION="Client for PlayStation 4 and PlayStation 5 Remote Play" diff --git a/games-util/legendary/legendary-0.20.31.ebuild b/games-util/legendary/legendary-0.20.31.ebuild index b23539c5cd..29d96e5e69 100644 --- a/games-util/legendary/legendary-0.20.31.ebuild +++ b/games-util/legendary/legendary-0.20.31.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_SINGLE_IMPL=1 inherit distutils-r1 diff --git a/games-util/legendary/legendary-0.20.32.ebuild b/games-util/legendary/legendary-0.20.32.ebuild index 806104b33d..a36fa7e719 100644 --- a/games-util/legendary/legendary-0.20.32.ebuild +++ b/games-util/legendary/legendary-0.20.32.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_SINGLE_IMPL=1 inherit distutils-r1 diff --git a/games-util/mangohud/mangohud-0.6.6.1-r3.ebuild b/games-util/mangohud/mangohud-0.6.6.1-r3.ebuild index a3a036b3d9..1882b9076e 100644 --- a/games-util/mangohud/mangohud-0.6.6.1-r3.ebuild +++ b/games-util/mangohud/mangohud-0.6.6.1-r3.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit python-any-r1 meson diff --git a/games-util/mangohud/mangohud-0.6.7.1.ebuild b/games-util/mangohud/mangohud-0.6.7.1.ebuild index 8d514157a1..5ff3040e0a 100644 --- a/games-util/mangohud/mangohud-0.6.7.1.ebuild +++ b/games-util/mangohud/mangohud-0.6.7.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit python-any-r1 meson diff --git a/games-util/mangohud/mangohud-0.6.8.ebuild b/games-util/mangohud/mangohud-0.6.8.ebuild index f0749495b0..ea02869ef8 100644 --- a/games-util/mangohud/mangohud-0.6.8.ebuild +++ b/games-util/mangohud/mangohud-0.6.8.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit python-any-r1 meson diff --git a/games-util/mangohud/mangohud-9999.ebuild b/games-util/mangohud/mangohud-9999.ebuild index f0749495b0..ea02869ef8 100644 --- a/games-util/mangohud/mangohud-9999.ebuild +++ b/games-util/mangohud/mangohud-9999.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit python-any-r1 meson diff --git a/games-util/minigalaxy/Manifest b/games-util/minigalaxy/Manifest index eabb3a4961..47ef8c6450 100644 --- a/games-util/minigalaxy/Manifest +++ b/games-util/minigalaxy/Manifest @@ -1,2 +1 @@ -DIST minigalaxy-1.0.2.tar.gz 360109 BLAKE2B fb8e369af56709c6cc4599bc853871951f31d025e418a809144bb8dcb2d35aa7b989cae9d01e1b223c3b5b1842442fec1f3962726f0b367a6c58d2175a4a083e SHA512 79533028c544fb8cac06ac7c7bebce0f2ccabc6970cb2d9cc5ad93626425836071c963ebdfa96dbca44ec0b573bb1d20d9241480f9b49d91a86c817adc2d486c DIST minigalaxy-1.1.0.tar.gz 417215 BLAKE2B 639ce13d25e53d5e81885026268b6ecc372288a81edd8c6e7b36d38c17b158f8953d49a33af92d541aec94e0c8651927002f3adca44c6a9caa2b61b0d6e3fd68 SHA512 5d16120f12398376770a2d2176a127201f1640b83bd8efb576e31eddad5e828bf45f7de7a6394408ef76aafedc126f2f3987920ff2863bbe4668096fa4bf6707 diff --git a/games-util/minigalaxy/minigalaxy-1.0.2.ebuild b/games-util/minigalaxy/minigalaxy-1.0.2.ebuild deleted file mode 100644 index 06436361d2..0000000000 --- a/games-util/minigalaxy/minigalaxy-1.0.2.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 2020-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_9 ) -DISTUTILS_SINGLE_IMPL=1 - -inherit distutils-r1 optfeature xdg - -DESCRIPTION="A simple GOG client for Linux" -HOMEPAGE="https://github.com/sharkwouter/minigalaxy" -SRC_URI="https://github.com/sharkwouter/minigalaxy/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3+" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -BDEPEND="" -RDEPEND=" - $(python_gen_cond_dep ' - >=dev-python/requests-2.0.0[${PYTHON_USEDEP}] - dev-python/pygobject:3[${PYTHON_USEDEP}] - ') - >=x11-libs/gtk+-3 - >=net-libs/webkit-gtk-2.6" - -distutils_enable_tests unittest - -python_test() { - "${EPYTHON}" -m unittest tests/*.py || die "Tests failed under ${EPYTHON}" -} - -pkg_postinst() { - xdg_pkg_postinst - - optfeature "running games with system dosbox" games-emulation/dosbox - optfeature "running games with system scummvm" games-engines/scummvm -} diff --git a/games-util/minigalaxy/minigalaxy-1.1.0.ebuild b/games-util/minigalaxy/minigalaxy-1.1.0.ebuild index 14dd43fd39..c8af8a6332 100644 --- a/games-util/minigalaxy/minigalaxy-1.1.0.ebuild +++ b/games-util/minigalaxy/minigalaxy-1.1.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) DISTUTILS_SINGLE_IMPL=1 inherit distutils-r1 optfeature xdg diff --git a/gnome-extra/portfolio/portfolio-0.9.14.ebuild b/gnome-extra/portfolio/portfolio-0.9.14.ebuild index 87220c86bc..3f675bc9b4 100644 --- a/gnome-extra/portfolio/portfolio-0.9.14.ebuild +++ b/gnome-extra/portfolio/portfolio-0.9.14.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit gnome2-utils meson python-single-r1 xdg diff --git a/gui-apps/azote/Manifest b/gui-apps/azote/Manifest deleted file mode 100644 index 1c69e8c24e..0000000000 --- a/gui-apps/azote/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST azote-1.9.5.tar.gz 4560473 BLAKE2B 6ca814369fa15db143a4957ea6876d2114700404d9e8b2228e1b21021528efdbeba6478787ffefdeb1408c44837b7f00c1bfea777a25dc1c487d88ed8fd8b809 SHA512 bd7af12adf23d4671454c3a6a2b33368a68ddfacff7da78f347c1ad471b1ffaaf3b9f6187cef3398d5849b84e4a86639be4e7bc1fb50282d8394386e9b9ce83e diff --git a/gui-apps/azote/azote-1.9.5.ebuild b/gui-apps/azote/azote-1.9.5.ebuild deleted file mode 100644 index 01dcc256ef..0000000000 --- a/gui-apps/azote/azote-1.9.5.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 2019-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_9 ) - -inherit distutils-r1 desktop - -DESCRIPTION="wallpaper manager for wlroots compositors" -HOMEPAGE="https://github.com/nwg-piotr/azote" - -if [[ ${PV} == 9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/nwg-piotr/azote" -else - SRC_URI="https://github.com/nwg-piotr/azote/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64" -fi - -LICENSE="GPL-3 BSD" -SLOT="0" -IUSE="simple-colorpicker imagemagick wayland X yaml" - -RDEPEND=" - dev-cpp/gtkmm:3.0 - dev-python/pillow - dev-python/pygobject:3= - dev-python/send2trash - simple-colorpicker? ( - X? ( - media-gfx/maim - x11-misc/slop - ) - wayland? ( - gui-apps/grim - gui-apps/slurp - ) - ) - imagemagick? ( - media-gfx/imagemagick[jpeg,png,svg,X?] - ) - wayland? ( - gui-apps/swaybg - gui-apps/wlr-randr - ) - X? ( - media-gfx/feh - x11-apps/xrandr - ) - yaml? ( dev-python/pyyaml ) -" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -python_install_all() { - distutils-r1_python_install_all - - cd "${S}" - - dobin dist/azote - domenu dist/azote.desktop - - insinto /usr/share/azote - doins dist/azote.svg dist/indicator_{active,attention}.png - insinto /usr/share/licenses/azote - doins LICENSE-COLORTHIEF -} diff --git a/gui-apps/azote/azote-9999.ebuild b/gui-apps/azote/azote-9999.ebuild deleted file mode 100644 index 01dcc256ef..0000000000 --- a/gui-apps/azote/azote-9999.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 2019-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_9 ) - -inherit distutils-r1 desktop - -DESCRIPTION="wallpaper manager for wlroots compositors" -HOMEPAGE="https://github.com/nwg-piotr/azote" - -if [[ ${PV} == 9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/nwg-piotr/azote" -else - SRC_URI="https://github.com/nwg-piotr/azote/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64" -fi - -LICENSE="GPL-3 BSD" -SLOT="0" -IUSE="simple-colorpicker imagemagick wayland X yaml" - -RDEPEND=" - dev-cpp/gtkmm:3.0 - dev-python/pillow - dev-python/pygobject:3= - dev-python/send2trash - simple-colorpicker? ( - X? ( - media-gfx/maim - x11-misc/slop - ) - wayland? ( - gui-apps/grim - gui-apps/slurp - ) - ) - imagemagick? ( - media-gfx/imagemagick[jpeg,png,svg,X?] - ) - wayland? ( - gui-apps/swaybg - gui-apps/wlr-randr - ) - X? ( - media-gfx/feh - x11-apps/xrandr - ) - yaml? ( dev-python/pyyaml ) -" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -python_install_all() { - distutils-r1_python_install_all - - cd "${S}" - - dobin dist/azote - domenu dist/azote.desktop - - insinto /usr/share/azote - doins dist/azote.svg dist/indicator_{active,attention}.png - insinto /usr/share/licenses/azote - doins LICENSE-COLORTHIEF -} diff --git a/gui-apps/azote/metadata.xml b/gui-apps/azote/metadata.xml deleted file mode 100644 index 185719dda2..0000000000 --- a/gui-apps/azote/metadata.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - gentoo@aisha.cc - Aisha Tammy - - - enable colorpicker using imagemagick - enable colorpicker without imagemagick - enable support for reading yaml files - - diff --git a/gui-apps/gradience/gradience-0.3.0-r1.ebuild b/gui-apps/gradience/gradience-0.3.0-r1.ebuild index a9afcfbf53..f93471f2b7 100644 --- a/gui-apps/gradience/gradience-0.3.0-r1.ebuild +++ b/gui-apps/gradience/gradience-0.3.0-r1.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit meson xdg python-single-r1 diff --git a/gui-apps/hiprompt-gtk-py/hiprompt-gtk-py-0_pre20220624.ebuild b/gui-apps/hiprompt-gtk-py/hiprompt-gtk-py-0_pre20220624.ebuild index 278ecfeef0..82451cf595 100644 --- a/gui-apps/hiprompt-gtk-py/hiprompt-gtk-py-0_pre20220624.ebuild +++ b/gui-apps/hiprompt-gtk-py/hiprompt-gtk-py-0_pre20220624.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit meson python-single-r1 xdg DESCRIPTION="GTK+ Himitsu prompter for Wayland" diff --git a/gui-apps/hiprompt-gtk-py/hiprompt-gtk-py-9999.ebuild b/gui-apps/hiprompt-gtk-py/hiprompt-gtk-py-9999.ebuild index 487a1b6f5d..105f043231 100644 --- a/gui-apps/hiprompt-gtk-py/hiprompt-gtk-py-9999.ebuild +++ b/gui-apps/hiprompt-gtk-py/hiprompt-gtk-py-9999.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit git-r3 meson python-single-r1 xdg DESCRIPTION="GTK+ Himitsu prompter for Wayland" diff --git a/media-fonts/twemoji/twemoji-14.0.2.ebuild b/media-fonts/twemoji/twemoji-14.0.2.ebuild index 34b284c9f4..bdbce2b7ca 100644 --- a/media-fonts/twemoji/twemoji-14.0.2.ebuild +++ b/media-fonts/twemoji/twemoji-14.0.2.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit font python-any-r1 diff --git a/media-gfx/WebPlotDigitizer-bin/WebPlotDigitizer-bin-4.6.ebuild b/media-gfx/WebPlotDigitizer-bin/WebPlotDigitizer-bin-4.6.ebuild index 54d77b4177..2f42fda954 100644 --- a/media-gfx/WebPlotDigitizer-bin/WebPlotDigitizer-bin-4.6.ebuild +++ b/media-gfx/WebPlotDigitizer-bin/WebPlotDigitizer-bin-4.6.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) MY_PN=${PN%-*} inherit desktop python-single-r1 xdg diff --git a/media-gfx/dehinter/dehinter-4.0.0.ebuild b/media-gfx/dehinter/dehinter-4.0.0.ebuild index ca4786b1a9..2afc7107b7 100644 --- a/media-gfx/dehinter/dehinter-4.0.0.ebuild +++ b/media-gfx/dehinter/dehinter-4.0.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/media-gfx/silicon/silicon-0.5.1.ebuild b/media-gfx/silicon/silicon-0.5.1.ebuild index e3462c084a..e34dd0c872 100644 --- a/media-gfx/silicon/silicon-0.5.1.ebuild +++ b/media-gfx/silicon/silicon-0.5.1.ebuild @@ -178,7 +178,7 @@ CRATES=" yeslogic-fontconfig-sys-3.2.0 " -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit cargo python-any-r1 diff --git a/media-gfx/ufolint/ufolint-1.2.0-r1.ebuild b/media-gfx/ufolint/ufolint-1.2.0-r1.ebuild index ebcc789f30..ae1bf57d50 100644 --- a/media-gfx/ufolint/ufolint-1.2.0-r1.ebuild +++ b/media-gfx/ufolint/ufolint-1.2.0-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/media-gfx/vpuppr/vpuppr-0.9.0.ebuild b/media-gfx/vpuppr/vpuppr-0.9.0.ebuild index 66afc3f4ae..4c1a93482d 100644 --- a/media-gfx/vpuppr/vpuppr-0.9.0.ebuild +++ b/media-gfx/vpuppr/vpuppr-0.9.0.ebuild @@ -5,7 +5,7 @@ HOMEPAGE="https://github.com/virtual-puppet-project/vpuppr" RESTRICT="strip" -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit desktop python-single-r1 IUSE="+osf-tracker ifm-tracker mouse-tracker vts-tracker meowface-tracker remote-control" diff --git a/media-gfx/vpuppr/vpuppr-9999.ebuild b/media-gfx/vpuppr/vpuppr-9999.ebuild index 36c4bb52e7..07862d59b7 100644 --- a/media-gfx/vpuppr/vpuppr-9999.ebuild +++ b/media-gfx/vpuppr/vpuppr-9999.ebuild @@ -5,7 +5,7 @@ HOMEPAGE="https://github.com/virtual-puppet-project/vpuppr" RESTRICT="strip" -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit desktop python-single-r1 IUSE="+osf-tracker ifm-tracker mouse-tracker vts-tracker meowface-tracker remote-control" diff --git a/media-libs/amdvlk/amdvlk-2023.1.1.ebuild b/media-libs/amdvlk/amdvlk-2023.1.1.ebuild index 6c5338ce48..f825db42de 100644 --- a/media-libs/amdvlk/amdvlk-2023.1.1.ebuild +++ b/media-libs/amdvlk/amdvlk-2023.1.1.ebuild @@ -4,7 +4,7 @@ EAPI=8 MULTILIB_COMPAT=( abi_x86_{32,64} ) -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit check-reqs python-any-r1 cmake-multilib diff --git a/media-libs/amdvlk/amdvlk-2023.1.2.ebuild b/media-libs/amdvlk/amdvlk-2023.1.2.ebuild index d27ef3e3d1..59e508646b 100644 --- a/media-libs/amdvlk/amdvlk-2023.1.2.ebuild +++ b/media-libs/amdvlk/amdvlk-2023.1.2.ebuild @@ -4,7 +4,7 @@ EAPI=8 MULTILIB_COMPAT=( abi_x86_{32,64} ) -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit check-reqs python-any-r1 cmake-multilib diff --git a/media-libs/amdvlk/amdvlk-2023.1.3.ebuild b/media-libs/amdvlk/amdvlk-2023.1.3.ebuild index d4e0d87983..1f6bfb43f7 100644 --- a/media-libs/amdvlk/amdvlk-2023.1.3.ebuild +++ b/media-libs/amdvlk/amdvlk-2023.1.3.ebuild @@ -4,7 +4,7 @@ EAPI=8 MULTILIB_COMPAT=( abi_x86_{32,64} ) -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit check-reqs python-any-r1 cmake-multilib diff --git a/media-sound/dzr/Manifest b/media-sound/dzr/Manifest index 9a5dbfff94..e5b9729b76 100644 --- a/media-sound/dzr/Manifest +++ b/media-sound/dzr/Manifest @@ -1 +1 @@ -DIST dzr-230429.tar.gz 8633 BLAKE2B ff189d66c55ae23f4cb7734c99134737f99138ca922a27c61619a04145254838c4f0847b51f57870df020ce9520d29e60859b4705e806a6f1c03d32a9f926501 SHA512 af259ef0f1856d18308d40a867967d8a3912025b862cc36587a5acd9a0b32ea6c34b4a5870acbf8f9d9658baf2af26bac0e44811cc29e4a5e25c32c12522d473 +DIST dzr-230501.tar.gz 8639 BLAKE2B e3ceef26f4e3f7b8c036f24c712f6ad635e0e9ae7102803ea9bb3b164ab405f0d3c80451ef43e14b62d475d494758210afba944a62e260ca02e186905b831711 SHA512 be38c1e2966f67eb351453d84571689dd787fdfd4057562a0cea9e5f53cf271bfa3943efbe7f4ec43437b4d274212dea8d37634cd28528c8dce5c6bec6b93723 diff --git a/media-sound/dzr/dzr-230429.ebuild b/media-sound/dzr/dzr-230501.ebuild similarity index 100% rename from media-sound/dzr/dzr-230429.ebuild rename to media-sound/dzr/dzr-230501.ebuild diff --git a/media-sound/hushboard/hushboard-0.0_pre20220518.ebuild b/media-sound/hushboard/hushboard-0.0_pre20220518.ebuild index b773c46960..8873688820 100644 --- a/media-sound/hushboard/hushboard-0.0_pre20220518.ebuild +++ b/media-sound/hushboard/hushboard-0.0_pre20220518.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/media-sound/hushboard/hushboard-9999.ebuild b/media-sound/hushboard/hushboard-9999.ebuild index b773c46960..8873688820 100644 --- a/media-sound/hushboard/hushboard-9999.ebuild +++ b/media-sound/hushboard/hushboard-9999.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/media-sound/jacktrip/jacktrip-1.7.1-r1.ebuild b/media-sound/jacktrip/jacktrip-1.7.1-r1.ebuild index 289b629ffa..096ff5b209 100644 --- a/media-sound/jacktrip/jacktrip-1.7.1-r1.ebuild +++ b/media-sound/jacktrip/jacktrip-1.7.1-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit python-any-r1 xdg meson DESCRIPTION="Send JACK audio over a network" diff --git a/media-sound/mopidy/mopidy-3.3.0.ebuild b/media-sound/mopidy/mopidy-3.3.0.ebuild index 2335e949e7..d53cac8d6f 100644 --- a/media-sound/mopidy/mopidy-3.3.0.ebuild +++ b/media-sound/mopidy/mopidy-3.3.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_SETUPTOOLS=rdepend -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 diff --git a/media-video/ciano/ciano-0.2.4-r1.ebuild b/media-video/ciano/ciano-0.2.4-r1.ebuild index 6e06a88a9f..5671d588e2 100644 --- a/media-video/ciano/ciano-0.2.4-r1.ebuild +++ b/media-video/ciano/ciano-0.2.4-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit gnome2-utils meson python-any-r1 vala xdg diff --git a/media-video/ffsubsync/ffsubsync-0.4.20-r1.ebuild b/media-video/ffsubsync/ffsubsync-0.4.20-r1.ebuild index 93625aaebe..7da742d605 100644 --- a/media-video/ffsubsync/ffsubsync-0.4.20-r1.ebuild +++ b/media-video/ffsubsync/ffsubsync-0.4.20-r1.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 diff --git a/media-video/ffsubsync/ffsubsync-0.4.22.ebuild b/media-video/ffsubsync/ffsubsync-0.4.22.ebuild index 6aa3e5cd18..1994453a4b 100644 --- a/media-video/ffsubsync/ffsubsync-0.4.22.ebuild +++ b/media-video/ffsubsync/ffsubsync-0.4.22.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/media-video/ffsubsync/ffsubsync-0.4.23.ebuild b/media-video/ffsubsync/ffsubsync-0.4.23.ebuild index 6aa3e5cd18..1994453a4b 100644 --- a/media-video/ffsubsync/ffsubsync-0.4.23.ebuild +++ b/media-video/ffsubsync/ffsubsync-0.4.23.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/media-video/syncplay/Manifest b/media-video/syncplay/Manifest index 5be4ce6de4..145ef76278 100644 --- a/media-video/syncplay/Manifest +++ b/media-video/syncplay/Manifest @@ -1,3 +1,2 @@ -DIST syncplay-1.6.7.tar.gz 1898354 BLAKE2B bc33ad13d5cc455a593979ca08c3a0d8cb64a44610d5d245920c9978859624fa655cdd953361e82dc3505dd785c6a06bc17641bea0e78d5fdf922975fe813b48 SHA512 9b4757befd56569b9061493227931df99ac59ffee91f14c5d0ae932b1744ab7314d4ba4082323781294a70adecdf68a01e1511fbbb1aa9becff0f6c20945ad90 DIST syncplay-1.6.9.tar.gz 1900259 BLAKE2B d535f5057a790ac860e6d0ac376069565fa02076dbc0c1d9eb7f54f87f96bbf7aef85136c8c5b67f1a5cf64a5204a617db26e6931368ba490a3ea9128282e473 SHA512 317e7cc966182259e552898ae05e620caf0f8e0ae0b6917235c391bcae1ef9679f1e97cfb46f6d8c6edcd9a5c573e5ab4ff5e27b5e203980a99ade065d9a6b65 DIST syncplay-1.7.0.tar.gz 1982509 BLAKE2B e3e22c78244c62addd236f84a9acfac86f1f08359b495f475df3ec29a1bf89564177bda14eca6145c0a637b75f45c31d786c5c58efe49ddd19ba755f9ab7c472 SHA512 f8fd57ca14daeeb7b9f1dc36dd49c1674e86548c2fcf8c3db27c76e54d5d64b40e5c56ecd49e591c3c1084c0efe5a10b1fed50fd8e28e42913d05d100c6952f2 diff --git a/media-video/syncplay/syncplay-1.6.7-r1.ebuild b/media-video/syncplay/syncplay-1.6.7-r1.ebuild deleted file mode 100644 index 035dddab40..0000000000 --- a/media-video/syncplay/syncplay-1.6.7-r1.ebuild +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_9 ) -DISTUTILS_USE_SETUPTOOLS=rdepend -DISTUTILS_SINGLE_IMPL=1 - -inherit desktop distutils-r1 optfeature xdg - -DESCRIPTION="Client/server to synchronize media playback" -HOMEPAGE="https://github.com/Syncplay/syncplay https://syncplay.pl" -SRC_URI="https://github.com/${PN^}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -IUSE="+client +server" -REQUIRED_USE="|| ( client server )" - -RDEPEND=" - $( python_gen_cond_dep \ - 'dev-python/certifi[${PYTHON_USEDEP}] - dev-python/twisted[${PYTHON_USEDEP}]' - ) - client? ( - $( python_gen_cond_dep \ - 'dev-python/QtPy[${PYTHON_USEDEP},gui]' - ) - || ( - media-video/vlc[lua] - media-video/mpv[lua] - media-video/mplayer - ) - ) -" - -PATCHES=( - "${FILESDIR}/${PN}-change-alignment-operator.patch" - "${FILESDIR}/${PN}-make-qpixmap-to-qicon-conversion-explicit.patch" - "${FILESDIR}/${PN}-make-qpixmap-to-qicon-conversion-explicit2.patch" - "${FILESDIR}/${PN}-use-lambda-to-connect-behind-wrapper.patch" - "${FILESDIR}/${PN}-allow-PyQt5.patch" -) - -python_install() { - python_domodule syncplay - for size in 256 128 96 64 48 32 24 16; do - doicon -s ${size} "${PN}/resources/hicolor/${size}x${size}/apps/syncplay.png" - done - if use client; then - python_newscript syncplayClient.py syncplay - domenu syncplay/resources/syncplay.desktop - fi - if use server; then - python_newscript syncplayServer.py syncplay-server - domenu syncplay/resources/syncplay-server.desktop - newinitd "${FILESDIR}/${PN}-server-init" "${PN}" - newconfd "${FILESDIR}/${PN}-server-init-conf" "${PN}" - fi -} - -pkg_postinst() { - xdg_pkg_postinst - - if use client; then - elog "Syncplay supports the following media players:" - elog "media-video/mpv, media-video/mplayer, media-video/vlc\n" - optfeature "using Syncplay with VLC" media-video/vlc[lua] - optfeature "using Syncplay with MPV" media-video/mpv[lua] - optfeature "using Syncplay with MPlayer" media-video/mplayer - fi -} diff --git a/media-video/syncplay/syncplay-1.6.9.ebuild b/media-video/syncplay/syncplay-1.6.9.ebuild index 1326d9a94e..7d9ccb9440 100644 --- a/media-video/syncplay/syncplay-1.6.9.ebuild +++ b/media-video/syncplay/syncplay-1.6.9.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools DISTUTILS_SINGLE_IMPL=1 diff --git a/media-video/syncplay/syncplay-1.7.0.ebuild b/media-video/syncplay/syncplay-1.7.0.ebuild index c77007f839..c11934ec75 100644 --- a/media-video/syncplay/syncplay-1.7.0.ebuild +++ b/media-video/syncplay/syncplay-1.7.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools DISTUTILS_SINGLE_IMPL=1 diff --git a/media-video/tartube/tartube-2.4.077.ebuild b/media-video/tartube/tartube-2.4.077.ebuild index f8a62ce59a..d0f1ba5d91 100644 --- a/media-video/tartube/tartube-2.4.077.ebuild +++ b/media-video/tartube/tartube-2.4.077.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 xdg diff --git a/media-video/tartube/tartube-9999.ebuild b/media-video/tartube/tartube-9999.ebuild index f8a62ce59a..d0f1ba5d91 100644 --- a/media-video/tartube/tartube-9999.ebuild +++ b/media-video/tartube/tartube-9999.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 xdg diff --git a/media-video/trakt-scrobbler/trakt-scrobbler-1.4.2-r1.ebuild b/media-video/trakt-scrobbler/trakt-scrobbler-1.4.2-r1.ebuild index 146920dd67..613e7a8d29 100644 --- a/media-video/trakt-scrobbler/trakt-scrobbler-1.4.2-r1.ebuild +++ b/media-video/trakt-scrobbler/trakt-scrobbler-1.4.2-r1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=poetry -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 optfeature diff --git a/media-video/trakt-scrobbler/trakt-scrobbler-1.5.0-r1.ebuild b/media-video/trakt-scrobbler/trakt-scrobbler-1.5.0-r1.ebuild index 704e6632e3..4dfde6f74e 100644 --- a/media-video/trakt-scrobbler/trakt-scrobbler-1.5.0-r1.ebuild +++ b/media-video/trakt-scrobbler/trakt-scrobbler-1.5.0-r1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=poetry -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 optfeature diff --git a/media-video/trakt-scrobbler/trakt-scrobbler-1.6.3-r1.ebuild b/media-video/trakt-scrobbler/trakt-scrobbler-1.6.3-r1.ebuild index 5f47bb2d50..a047b5f888 100644 --- a/media-video/trakt-scrobbler/trakt-scrobbler-1.6.3-r1.ebuild +++ b/media-video/trakt-scrobbler/trakt-scrobbler-1.6.3-r1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=poetry -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 optfeature diff --git a/mpv-plugin/mpv_sponsorblock/mpv_sponsorblock-20211223.ebuild b/mpv-plugin/mpv_sponsorblock/mpv_sponsorblock-20211223.ebuild index 985fd6a456..f6525024b3 100644 --- a/mpv-plugin/mpv_sponsorblock/mpv_sponsorblock-20211223.ebuild +++ b/mpv-plugin/mpv_sponsorblock/mpv_sponsorblock-20211223.ebuild @@ -5,7 +5,7 @@ EAPI=8 USE_MPV="rdepend" MPV_REQ_USE="lua" -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit mpv-plugin python-single-r1 COMMIT="6743bd47d4cfce3ae3d5dd4f587f3193bd4fb9b2" diff --git a/mpv-plugin/mpv_sponsorblock/mpv_sponsorblock-20220924.ebuild b/mpv-plugin/mpv_sponsorblock/mpv_sponsorblock-20220924.ebuild index e92d39084f..bce40f6d05 100644 --- a/mpv-plugin/mpv_sponsorblock/mpv_sponsorblock-20220924.ebuild +++ b/mpv-plugin/mpv_sponsorblock/mpv_sponsorblock-20220924.ebuild @@ -5,7 +5,7 @@ EAPI=8 USE_MPV="rdepend" MPV_REQ_USE="lua" -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit mpv-plugin python-single-r1 COMMIT="248d108c1280e05de551c42867aebb72cf0c83b9" diff --git a/mpv-plugin/mpv_sponsorblock/mpv_sponsorblock-20230130.ebuild b/mpv-plugin/mpv_sponsorblock/mpv_sponsorblock-20230130.ebuild index 245aad690b..eae5f2a288 100644 --- a/mpv-plugin/mpv_sponsorblock/mpv_sponsorblock-20230130.ebuild +++ b/mpv-plugin/mpv_sponsorblock/mpv_sponsorblock-20230130.ebuild @@ -5,7 +5,7 @@ EAPI=8 USE_MPV="rdepend" MPV_REQ_USE="lua" -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit mpv-plugin python-single-r1 COMMIT="7785c1477103f2fafabfd65fdcf28ef26e6d7f0d" diff --git a/mpv-plugin/mpv_thumbnail_script/mpv_thumbnail_script-0.5.1.ebuild b/mpv-plugin/mpv_thumbnail_script/mpv_thumbnail_script-0.5.1.ebuild index f4d4818b15..e4f7628be2 100644 --- a/mpv-plugin/mpv_thumbnail_script/mpv_thumbnail_script-0.5.1.ebuild +++ b/mpv-plugin/mpv_thumbnail_script/mpv_thumbnail_script-0.5.1.ebuild @@ -4,7 +4,7 @@ EAPI=8 MPV_REQ_USE="lua" -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit mpv-plugin python-any-r1 DESCRIPTION="A Lua script to show preview thumbnails in mpv's OSC seekbar" diff --git a/mpv-plugin/mpv_thumbnail_script/mpv_thumbnail_script-0.5.2.ebuild b/mpv-plugin/mpv_thumbnail_script/mpv_thumbnail_script-0.5.2.ebuild index 702539a17b..69f4a2357a 100644 --- a/mpv-plugin/mpv_thumbnail_script/mpv_thumbnail_script-0.5.2.ebuild +++ b/mpv-plugin/mpv_thumbnail_script/mpv_thumbnail_script-0.5.2.ebuild @@ -4,7 +4,7 @@ EAPI=8 MPV_REQ_USE="lua" -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit mpv-plugin python-any-r1 DESCRIPTION="A Lua script to show preview thumbnails in mpv's OSC seekbar" diff --git a/net-client/offpunk/offpunk-1.8.ebuild b/net-client/offpunk/offpunk-1.8.ebuild index 9104eef312..f7295cd19d 100644 --- a/net-client/offpunk/offpunk-1.8.ebuild +++ b/net-client/offpunk/offpunk-1.8.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_SINGLE_IMPL=1 DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 optfeature diff --git a/net-client/offpunk/offpunk-1.9.1.ebuild b/net-client/offpunk/offpunk-1.9.1.ebuild index ada55ec23e..feebaf7e41 100644 --- a/net-client/offpunk/offpunk-1.9.1.ebuild +++ b/net-client/offpunk/offpunk-1.9.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) DISTUTILS_SINGLE_IMPL=1 DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 optfeature diff --git a/net-im/gajim-plugins/gajim-plugins-9999.ebuild b/net-im/gajim-plugins/gajim-plugins-9999.ebuild index 1b328b7e7a..f91cae101b 100644 --- a/net-im/gajim-plugins/gajim-plugins-9999.ebuild +++ b/net-im/gajim-plugins/gajim-plugins-9999.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit python-single-r1 diff --git a/net-im/heisenbridge/heisenbridge-1.14.2.ebuild b/net-im/heisenbridge/heisenbridge-1.14.2.ebuild index cc4a9a2a08..79923ef570 100644 --- a/net-im/heisenbridge/heisenbridge-1.14.2.ebuild +++ b/net-im/heisenbridge/heisenbridge-1.14.2.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 systemd diff --git a/net-im/mautrix-facebook/mautrix-facebook-0.4.1.ebuild b/net-im/mautrix-facebook/mautrix-facebook-0.4.1.ebuild index 793d0ea62d..b3e0c39090 100644 --- a/net-im/mautrix-facebook/mautrix-facebook-0.4.1.ebuild +++ b/net-im/mautrix-facebook/mautrix-facebook-0.4.1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 optfeature systemd diff --git a/net-im/mautrix-signal/mautrix-signal-0.4.2.ebuild b/net-im/mautrix-signal/mautrix-signal-0.4.2.ebuild index f25d7e0b32..ea282e0594 100644 --- a/net-im/mautrix-signal/mautrix-signal-0.4.2.ebuild +++ b/net-im/mautrix-signal/mautrix-signal-0.4.2.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 optfeature systemd diff --git a/net-im/mautrix-telegram/mautrix-telegram-0.13.0.ebuild b/net-im/mautrix-telegram/mautrix-telegram-0.13.0.ebuild index a587d676f3..1958799356 100644 --- a/net-im/mautrix-telegram/mautrix-telegram-0.13.0.ebuild +++ b/net-im/mautrix-telegram/mautrix-telegram-0.13.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 optfeature systemd diff --git a/net-im/nheko/Manifest b/net-im/nheko/Manifest index 0eb3d8d02c..a644560ad6 100644 --- a/net-im/nheko/Manifest +++ b/net-im/nheko/Manifest @@ -1,2 +1 @@ -DIST nheko-0.11.1.tar.gz 1753191 BLAKE2B cbd6c0b7fa8a177ac09b129eae9bfa8c146db8e2d0d289362e20fd35dc1b9245516c2a2b2074fb5e9d2a212dadcf29aac5fd6a3fb910b160906b4dd3caec173e SHA512 3ccaa859ff76a78c024ea2159e666316a3505bc3a3220020a4805ee93351865868b56219ab8421c70ed9922c3f38fbb39370c7f98b702836bd3bb3665c712fda DIST nheko-0.11.3.tar.gz 1780179 BLAKE2B 095314ea420bd78cff71fe9e8bd48c1319248fa5c31bfc3741aa72cfa7585660f74f7eb3b9848b53ccfbc979283db8ca2e52e8e4f2749280ee1c867a35baf075 SHA512 bd5b94def3c56bb2c91c40c3ef967ee3b14cb71a7e5b01028743a849932c918620c2b1a1b822705e49dacc80dae6c48712f63bf9a68698858b0faaf1a816c9cd diff --git a/net-im/nheko/files/nheko-0.11.3-fix-explicit-optional-construction.patch b/net-im/nheko/files/nheko-0.11.3-fix-explicit-optional-construction.patch new file mode 100644 index 0000000000..5e0118f375 --- /dev/null +++ b/net-im/nheko/files/nheko-0.11.3-fix-explicit-optional-construction.patch @@ -0,0 +1,24 @@ +# upstream commit: + +From d7c10ae90417fcbb7f81edd4e40d89e91436244b Mon Sep 17 00:00:00 2001 +From: Nicolas Werner +Date: Fri, 24 Mar 2023 19:48:47 +0100 +Subject: [PATCH] Fix explicit optional construction on gcc13 + +--- + src/timeline/EventStore.cpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/timeline/EventStore.cpp b/src/timeline/EventStore.cpp +index 3c214dcbe..dd0e920de 100644 +--- a/src/timeline/EventStore.cpp ++++ b/src/timeline/EventStore.cpp +@@ -650,7 +650,7 @@ EventStore::get(int idx, bool decrypt) + if (edits_.empty()) + event = cache::client()->getEvent(room_id_, *event_id); + else +- event = {edits_.back()}; ++ event = mtx::events::collections::TimelineEvent{edits_.back()}; + + if (!event) + return nullptr; diff --git a/net-im/nheko/nheko-0.11.1.ebuild b/net-im/nheko/nheko-0.11.1.ebuild deleted file mode 100644 index 5e82ec12f2..0000000000 --- a/net-im/nheko/nheko-0.11.1.ebuild +++ /dev/null @@ -1,91 +0,0 @@ -# Copyright 2020-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake optfeature xdg - -DESCRIPTION="Native desktop client for Matrix using Qt" -HOMEPAGE="https://github.com/Nheko-Reborn/nheko" -SRC_URI="https://github.com/Nheko-Reborn/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64" -IUSE="X +pie video voip" -REQUIRED_USE="video? ( voip )" - -MY_GST_V="1.18" -RDEPEND=" - app-text/cmark:= - dev-cpp/qt-jdenticon - dev-db/lmdb:= - >=dev-db/lmdb++-1.0.0 - dev-libs/libfmt:= - >=dev-libs/mtxclient-0.9.0:= - >=dev-libs/qtkeychain-0.12.0:= - >=dev-libs/re2-0.2022.04.01:= - dev-libs/spdlog:= - dev-qt/qtconcurrent:5 - dev-qt/qtdeclarative:5[widgets] - dev-qt/qtgraphicaleffects:5 - dev-qt/qtgui:5[dbus,jpeg,png] - dev-qt/qtimageformats - dev-qt/qtmultimedia:5[gstreamer,qml,widgets] - dev-qt/qtquickcontrols2:5[widgets] - dev-qt/qtsvg:5 - virtual/notification-daemon - voip? ( - >=media-plugins/gst-plugins-dtls-${MY_GST_V} - media-plugins/gst-plugins-libnice - >=media-plugins/gst-plugins-meta-${MY_GST_V}[opus] - >=media-plugins/gst-plugins-srtp-${MY_GST_V} - >=media-plugins/gst-plugins-webrtc-${MY_GST_V} - video? ( - >=media-libs/gst-plugins-base-${MY_GST_V}[opengl] - >=media-plugins/gst-plugins-meta-${MY_GST_V}[v4l,vpx] - >=media-plugins/gst-plugins-qt5-${MY_GST_V} - X? ( - >=media-plugins/gst-plugins-ximagesrc-${MY_GST_V} - x11-libs/libxcb:= - x11-libs/xcb-util-wm - ) - ) - ) -" -DEPEND=" - dev-cpp/nlohmann_json - ${RDEPEND} -" -BDEPEND=" - dev-qt/linguist-tools:5 - || ( - app-text/asciidoc - dev-ruby/asciidoctor - ) -" - -src_configure() { - local -a mycmakeargs=( - "-DVOIP=$(usex voip)" - "-DCMAKE_POSITION_INDEPENDENT_CODE=$(usex pie)" - ) - if use video && use X; then - mycmakeargs+=("-DSCREENSHARE_X11=yes") - else - mycmakeargs+=("-DSCREENSHARE_X11=no") - fi - - cmake_src_configure -} - -pkg_postinst() { - optfeature "audio & video file playback support" \ - "media-plugins/gst-plugins-meta[ffmpeg]" - optfeature "secrets storage support other than kwallet (for example gnome-keyring or keepassxc)" \ - "dev-libs/qtkeychain[gnome-keyring]" - optfeature "additional, less common, image format support" \ - "kde-frameworks/kimageformats" - - xdg_pkg_postinst -} diff --git a/net-im/nheko/nheko-0.11.3.ebuild b/net-im/nheko/nheko-0.11.3.ebuild index 23609af605..732df7f66d 100644 --- a/net-im/nheko/nheko-0.11.3.ebuild +++ b/net-im/nheko/nheko-0.11.3.ebuild @@ -67,6 +67,8 @@ BDEPEND=" ) " +PATCHES=( "${FILESDIR}"/${P}-fix-explicit-optional-construction.patch ) + src_configure() { local -a mycmakeargs=( -DVOIP=$(usex voip) diff --git a/net-irc/srain/srain-1.4.0.ebuild b/net-irc/srain/srain-1.4.0.ebuild index be879960fc..421adafc52 100644 --- a/net-irc/srain/srain-1.4.0.ebuild +++ b/net-irc/srain/srain-1.4.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit meson python-any-r1 xdg DESCRIPTION="Modern, beautiful IRC client written in GTK+ 3" diff --git a/net-libs/dpdk/dpdk-21.11.1-r1.ebuild b/net-libs/dpdk/dpdk-21.11.1-r1.ebuild index c707c35ae5..1e63ee79f6 100644 --- a/net-libs/dpdk/dpdk-21.11.1-r1.ebuild +++ b/net-libs/dpdk/dpdk-21.11.1-r1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit python-single-r1 meson DESCRIPTION="Data Plane Development Kit libraries for fast userspace networking" diff --git a/net-libs/dpdk/dpdk-22.07-r1.ebuild b/net-libs/dpdk/dpdk-22.07-r1.ebuild index ae3d49dfca..9261b3cac1 100644 --- a/net-libs/dpdk/dpdk-22.07-r1.ebuild +++ b/net-libs/dpdk/dpdk-22.07-r1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit python-single-r1 toolchain-funcs meson DESCRIPTION="Data Plane Development Kit libraries for fast userspace networking" diff --git a/net-libs/telepathy-haze/telepathy-haze-0.8.1.ebuild b/net-libs/telepathy-haze/telepathy-haze-0.8.1.ebuild index 01755df776..21458cdcb4 100644 --- a/net-libs/telepathy-haze/telepathy-haze-0.8.1.ebuild +++ b/net-libs/telepathy-haze/telepathy-haze-0.8.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit python-any-r1 diff --git a/net-misc/fedigroup/fedigroup-1.0.6.ebuild b/net-misc/fedigroup/fedigroup-1.0.6.ebuild index 5cdd875bc4..384ad557bc 100644 --- a/net-misc/fedigroup/fedigroup-1.0.6.ebuild +++ b/net-misc/fedigroup/fedigroup-1.0.6.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools DISTUTILS_SINGLE_IMPL=1 inherit distutils-r1 diff --git a/net-misc/fedigroup/fedigroup-1.0.8.ebuild b/net-misc/fedigroup/fedigroup-1.0.8.ebuild index 5cdd875bc4..384ad557bc 100644 --- a/net-misc/fedigroup/fedigroup-1.0.8.ebuild +++ b/net-misc/fedigroup/fedigroup-1.0.8.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools DISTUTILS_SINGLE_IMPL=1 inherit distutils-r1 diff --git a/net-misc/giara/giara-1.0.1.ebuild b/net-misc/giara/giara-1.0.1.ebuild index aca0996575..272088fed0 100644 --- a/net-misc/giara/giara-1.0.1.ebuild +++ b/net-misc/giara/giara-1.0.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit gnome2-utils meson python-single-r1 xdg DESCRIPTION="An app for Reddit" diff --git a/net-misc/giara/giara-1.1.0.ebuild b/net-misc/giara/giara-1.1.0.ebuild index 309296fad2..28b3874086 100644 --- a/net-misc/giara/giara-1.1.0.ebuild +++ b/net-misc/giara/giara-1.1.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit gnome2-utils meson python-single-r1 xdg DESCRIPTION="An app for Reddit" diff --git a/net-misc/lyrics-in-terminal/lyrics-in-terminal-1.5.0.ebuild b/net-misc/lyrics-in-terminal/lyrics-in-terminal-1.5.0.ebuild index ea829834cf..69dbe33fda 100644 --- a/net-misc/lyrics-in-terminal/lyrics-in-terminal-1.5.0.ebuild +++ b/net-misc/lyrics-in-terminal/lyrics-in-terminal-1.5.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) PYTHON_REQ_USE="ncurses" DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 optfeature diff --git a/net-misc/maestral-qt/maestral-qt-1.5.3.ebuild b/net-misc/maestral-qt/maestral-qt-1.5.3.ebuild index 63d940d7ad..c982efab11 100644 --- a/net-misc/maestral-qt/maestral-qt-1.5.3.ebuild +++ b/net-misc/maestral-qt/maestral-qt-1.5.3.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) DISTUTILS_USE_PEP517=setuptools inherit desktop distutils-r1 diff --git a/net-misc/maestral-qt/maestral-qt-1.7.1-r1.ebuild b/net-misc/maestral-qt/maestral-qt-1.7.1-r1.ebuild index b6662eec02..cb0439564a 100644 --- a/net-misc/maestral-qt/maestral-qt-1.7.1-r1.ebuild +++ b/net-misc/maestral-qt/maestral-qt-1.7.1-r1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit desktop distutils-r1 MY_PV=${PV/_rc/.dev} diff --git a/net-misc/maestral/maestral-1.5.3.ebuild b/net-misc/maestral/maestral-1.5.3.ebuild index d2d7a2902c..bf77fd4bf6 100644 --- a/net-misc/maestral/maestral-1.5.3.ebuild +++ b/net-misc/maestral/maestral-1.5.3.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 xdg diff --git a/net-misc/maestral/maestral-1.7.1.ebuild b/net-misc/maestral/maestral-1.7.1.ebuild index 93c2ae0344..dbdc9df0f3 100644 --- a/net-misc/maestral/maestral-1.7.1.ebuild +++ b/net-misc/maestral/maestral-1.7.1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 xdg MY_PV=${PV/_rc/.dev} diff --git a/net-misc/maestral/maestral-1.7.2.ebuild b/net-misc/maestral/maestral-1.7.2.ebuild index 93c2ae0344..dbdc9df0f3 100644 --- a/net-misc/maestral/maestral-1.7.2.ebuild +++ b/net-misc/maestral/maestral-1.7.2.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 xdg MY_PV=${PV/_rc/.dev} diff --git a/net-nntp/inn/inn-2.6.5.ebuild b/net-nntp/inn/inn-2.6.5.ebuild index 0a13754d35..5e5fd8db59 100644 --- a/net-nntp/inn/inn-2.6.5.ebuild +++ b/net-nntp/inn/inn-2.6.5.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit optfeature perl-functions python-single-r1 systemd tmpfiles verify-sig diff --git a/net-nntp/inn/inn-2.7.1.ebuild b/net-nntp/inn/inn-2.7.1.ebuild index 7fa587aeb0..d0f8697216 100644 --- a/net-nntp/inn/inn-2.7.1.ebuild +++ b/net-nntp/inn/inn-2.7.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit optfeature perl-functions python-single-r1 systemd tmpfiles verify-sig DESCRIPTION="InterNetNews - the Internet meets Netnews" diff --git a/net-voip/discover-overlay/discover-overlay-0.4.5.ebuild b/net-voip/discover-overlay/discover-overlay-0.4.5.ebuild index 86294d12cb..1f143bb0d9 100644 --- a/net-voip/discover-overlay/discover-overlay-0.4.5.ebuild +++ b/net-voip/discover-overlay/discover-overlay-0.4.5.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/net-voip/discover-overlay/discover-overlay-0.5.4.ebuild b/net-voip/discover-overlay/discover-overlay-0.5.4.ebuild index 86294d12cb..1f143bb0d9 100644 --- a/net-voip/discover-overlay/discover-overlay-0.5.4.ebuild +++ b/net-voip/discover-overlay/discover-overlay-0.5.4.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/net-voip/discover-overlay/discover-overlay-0.6.3-r1.ebuild b/net-voip/discover-overlay/discover-overlay-0.6.3-r1.ebuild index df1d3be9e3..4d78332040 100644 --- a/net-voip/discover-overlay/discover-overlay-0.6.3-r1.ebuild +++ b/net-voip/discover-overlay/discover-overlay-0.6.3-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 xdg diff --git a/net-vpn/gp-saml-gui/gp-saml-gui-9999.ebuild b/net-vpn/gp-saml-gui/gp-saml-gui-9999.ebuild index bebbd85558..63869eb0b5 100644 --- a/net-vpn/gp-saml-gui/gp-saml-gui-9999.ebuild +++ b/net-vpn/gp-saml-gui/gp-saml-gui-9999.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{8..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 git-r3 DESCRIPTION="Interactively authenticate to GlobalProtect VPNs that require SAML" diff --git a/net-wireless/iwdgui/Manifest b/net-wireless/iwdgui/Manifest deleted file mode 100644 index 9e1e152bd2..0000000000 --- a/net-wireless/iwdgui/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST iwdgui-0.1.0.tar.gz 171453 BLAKE2B 0d5e7e88b66d5d0b53c254ee152c441a58800d2f528cb27e206cdeb99f7cc12e4f94b5efb33bf1d0731a660b7d0813f90d20f1eec9481aaafe38b7dc2c84345a SHA512 ca208424f09647fa2c9e35f7d4c945638f3e94407fdcd8594c03a49be0beb554a0ab5563771bc6e8106e3f71f6df9bbd991a5d79d4b156cc3c64c89878c9fa42 -DIST iwdgui-0.2.0.tar.gz 201799 BLAKE2B 968f2bbaa6c601311a758f9073b902d9c5da8f393ec2296e1dcf4c428ab622ff2ae747ad82867a88a54e016db8118f1b3e29fe9aa5fec20c9a5c8f12e3642769 SHA512 27394958332821dd633492e8e7d314c15b2d02ea12087e4e6c44ba325e5331457c5f781a63c4a393109d3fd2a8e9f33895224790835cadc625d02976f273a8f7 diff --git a/net-wireless/iwdgui/iwdgui-0.1.0.ebuild b/net-wireless/iwdgui/iwdgui-0.1.0.ebuild deleted file mode 100644 index ee34392d1c..0000000000 --- a/net-wireless/iwdgui/iwdgui-0.1.0.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_9 ) -DISTUTILS_USE_SETUPTOOLS=bdepend - -inherit distutils-r1 xdg - -DESCRIPTION="A graphical frontend for IWD, Intel's iNet Wireless Daemon" -HOMEPAGE="https://gitlab.com/hfernh/iwdgui https://pypi.org/project/iwdgui/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~x86" -IUSE="" -REQUIRED_USE="" - -# Upstream does not provide any test suite. -RESTRICT="test" - -RDEPEND=" - dev-libs/glib - dev-libs/gobject-introspection - dev-python/dbus-python - x11-libs/gtk+:3 - dev-python/netifaces - net-wireless/iwd" - -BDEPEND="${RDEPEND}" -DEPEND="${BDEPEND}" diff --git a/net-wireless/iwdgui/iwdgui-0.2.0.ebuild b/net-wireless/iwdgui/iwdgui-0.2.0.ebuild deleted file mode 100644 index 54fb63b214..0000000000 --- a/net-wireless/iwdgui/iwdgui-0.2.0.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_9 ) -DISTUTILS_USE_SETUPTOOLS=bdepend - -inherit distutils-r1 xdg pypi - -DESCRIPTION="A graphical frontend for IWD, Intel's iNet Wireless Daemon" -HOMEPAGE="https://gitlab.com/hfernh/iwdgui https://pypi.org/project/iwdgui/" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~x86" -IUSE="" -REQUIRED_USE="" - -# Upstream does not provide any test suite. -RESTRICT="test" - -RDEPEND=" - dev-python/dbus-python - dev-python/netifaces - dev-python/pygobject - net-wireless/iwd" - -BDEPEND="${RDEPEND}" -DEPEND="${BDEPEND}" diff --git a/net-wireless/iwdgui/metadata.xml b/net-wireless/iwdgui/metadata.xml deleted file mode 100644 index 7127c3facb..0000000000 --- a/net-wireless/iwdgui/metadata.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - hfern@fernhout.info - Johannes Willem (Hans) Fernhout - - - iwdgui - hfernh/iwdgui - - diff --git a/profiles/package.mask b/profiles/package.mask index b40310cd83..6ef88442f6 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -14,6 +14,11 @@ # New entries go on top. +# Anna Vyalkova (2023-05-01) +# Depends on removed versions of sys-cluster/pacemaker. +# Masked for removal in 30 days. +sys-cluster/pcs + # Anna Vyalkova (2023-05-01) # Unavailable dependency. Masked until a version bump. net-im/kaidan diff --git a/sci-biology/cmdock/cmdock-0.2.0.ebuild b/sci-biology/cmdock/cmdock-0.2.0.ebuild index 9a91c85df9..66b5b8b5ef 100644 --- a/sci-biology/cmdock/cmdock-0.2.0.ebuild +++ b/sci-biology/cmdock/cmdock-0.2.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) BOINC_APP_OPTIONAL="true" inherit boinc-app flag-o-matic meson optfeature python-any-r1 diff --git a/sci-electronics/circt/circt-1.14.0.ebuild b/sci-electronics/circt/circt-1.14.0.ebuild index f3f2e29c39..181b5b44f6 100644 --- a/sci-electronics/circt/circt-1.14.0.ebuild +++ b/sci-electronics/circt/circt-1.14.0.ebuild @@ -6,7 +6,7 @@ EAPI="8" MY_PV="${PV//./\/}" MY_LLVM_PV="fe0f72d5c55a9b95c5564089e946e8f08112e995" CMAKE_BUILD_TYPE="Release" -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit cmake python-r1 DESCRIPTION="The fast free Verilog/SystemVerilog simulator" diff --git a/sci-electronics/circt/circt-1.37.0.ebuild b/sci-electronics/circt/circt-1.37.0.ebuild index 27884f441d..ce9f7c46be 100644 --- a/sci-electronics/circt/circt-1.37.0.ebuild +++ b/sci-electronics/circt/circt-1.37.0.ebuild @@ -6,7 +6,7 @@ EAPI="8" MY_PV="${PV//./\/}" MY_LLVM_PV="d978730d8e2c10c76867b83bec2f1143d895ee7d" CMAKE_BUILD_TYPE="Release" -PYTHON_COMPAT=( python3_{8..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit cmake python-r1 DESCRIPTION="The fast free Verilog/SystemVerilog simulator" diff --git a/sci-electronics/dsview/dsview-1.2.1.ebuild b/sci-electronics/dsview/dsview-1.2.1.ebuild index dba832359b..ef17507eaf 100644 --- a/sci-electronics/dsview/dsview-1.2.1.ebuild +++ b/sci-electronics/dsview/dsview-1.2.1.ebuild @@ -4,7 +4,7 @@ EAPI=8 GITHUB_PN="DSView" -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit cmake python-r1 udev xdg diff --git a/sci-electronics/dsview/dsview-9999.ebuild b/sci-electronics/dsview/dsview-9999.ebuild index dba832359b..ef17507eaf 100644 --- a/sci-electronics/dsview/dsview-9999.ebuild +++ b/sci-electronics/dsview/dsview-9999.ebuild @@ -4,7 +4,7 @@ EAPI=8 GITHUB_PN="DSView" -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit cmake python-r1 udev xdg diff --git a/sci-electronics/kactus2/kactus2-3.10.0.ebuild b/sci-electronics/kactus2/kactus2-3.10.0.ebuild index 62f39b7108..c325dfd757 100644 --- a/sci-electronics/kactus2/kactus2-3.10.0.ebuild +++ b/sci-electronics/kactus2/kactus2-3.10.0.ebuild @@ -3,7 +3,7 @@ EAPI="8" -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit python-r1 qmake-utils xdg DESCRIPTION="A open source IP-XACT-based tool" diff --git a/sci-electronics/kactus2/kactus2-9999.ebuild b/sci-electronics/kactus2/kactus2-9999.ebuild index 62f39b7108..c325dfd757 100644 --- a/sci-electronics/kactus2/kactus2-9999.ebuild +++ b/sci-electronics/kactus2/kactus2-9999.ebuild @@ -3,7 +3,7 @@ EAPI="8" -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit python-r1 qmake-utils xdg DESCRIPTION="A open source IP-XACT-based tool" diff --git a/sci-electronics/lxi-tools/lxi-tools-2.1.ebuild b/sci-electronics/lxi-tools/lxi-tools-2.1.ebuild index 5fc7da450b..4b0cdaeba7 100644 --- a/sci-electronics/lxi-tools/lxi-tools-2.1.ebuild +++ b/sci-electronics/lxi-tools/lxi-tools-2.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python{3_9,3_10,3_11} ) +PYTHON_COMPAT=( python{3_10,3_11} ) LUA_COMPAT=( lua5-3 ) inherit meson python-any-r1 lua-single gnome2-utils xdg-utils diff --git a/sci-electronics/lxi-tools/lxi-tools-2.3.ebuild b/sci-electronics/lxi-tools/lxi-tools-2.3.ebuild index 474dcae035..4ec58e671a 100644 --- a/sci-electronics/lxi-tools/lxi-tools-2.3.ebuild +++ b/sci-electronics/lxi-tools/lxi-tools-2.3.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python{3_9,3_10,3_11} ) +PYTHON_COMPAT=( python{3_10,3_11} ) LUA_COMPAT=( lua5-{1..4} ) inherit meson python-any-r1 lua-single gnome2-utils xdg-utils diff --git a/sci-electronics/open_pdks/open_pdks-1.0.311.ebuild b/sci-electronics/open_pdks/open_pdks-1.0.311.ebuild index f7ee0c3aaa..664ba0d07e 100644 --- a/sci-electronics/open_pdks/open_pdks-1.0.311.ebuild +++ b/sci-electronics/open_pdks/open_pdks-1.0.311.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit check-reqs python-any-r1 diff --git a/sci-electronics/skywater-pdk/skywater-pdk-0.0.0_p20220424.ebuild b/sci-electronics/skywater-pdk/skywater-pdk-0.0.0_p20220424.ebuild index f98318349e..157017c4d2 100644 --- a/sci-electronics/skywater-pdk/skywater-pdk-0.0.0_p20220424.ebuild +++ b/sci-electronics/skywater-pdk/skywater-pdk-0.0.0_p20220424.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) # Keep these revs up to date with the 'latest' submodule for each pdk lib in libraries/ # Build seems to fail if these lapse compared to the rev used by the skywater_pdk python module within this repo diff --git a/sci-electronics/slang/slang-1.0.ebuild b/sci-electronics/slang/slang-1.0.ebuild index 07b1a66ce2..7a5dead811 100644 --- a/sci-electronics/slang/slang-1.0.ebuild +++ b/sci-electronics/slang/slang-1.0.ebuild @@ -3,7 +3,7 @@ EAPI="8" -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit cmake python-single-r1 DESCRIPTION="SystemVerilog compiler and language services" diff --git a/sci-electronics/slang/slang-2.0-r1.ebuild b/sci-electronics/slang/slang-2.0-r1.ebuild index 809a23188d..b06b86cf6f 100644 --- a/sci-electronics/slang/slang-2.0-r1.ebuild +++ b/sci-electronics/slang/slang-2.0-r1.ebuild @@ -3,7 +3,7 @@ EAPI="8" -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit cmake python-single-r1 DESCRIPTION="SystemVerilog compiler and language services" diff --git a/sci-electronics/slang/slang-9999.ebuild b/sci-electronics/slang/slang-9999.ebuild index 774a6474d7..fbe63d86bd 100644 --- a/sci-electronics/slang/slang-9999.ebuild +++ b/sci-electronics/slang/slang-9999.ebuild @@ -3,7 +3,7 @@ EAPI="8" -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit cmake python-single-r1 DESCRIPTION="SystemVerilog compiler and language services" diff --git a/sci-geosciences/mapillary_tools/Manifest b/sci-geosciences/mapillary_tools/Manifest deleted file mode 100644 index 9dacb6ef48..0000000000 --- a/sci-geosciences/mapillary_tools/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST mapillary_tools-0.8.2_p20220702.gh.tar.gz 19125382 BLAKE2B 51e75c3cf5b6e129594e28c55d7ff75592c26a227d905749e42445678f2e69f410080d35bc5c4a9692710d98b42f03eec33130c79ed3608e1efc2465e28d5039 SHA512 0d32c3b78a44f1a6544ad69a66f9de2f4c9b87b5a7198546e5716bda055514e26ac05de6a3304e8610ba150f7e8346290925e7509f2db532cabcede0e48de1f6 diff --git a/sci-geosciences/mapillary_tools/mapillary_tools-0.8.2_p20220702.ebuild b/sci-geosciences/mapillary_tools/mapillary_tools-0.8.2_p20220702.ebuild deleted file mode 100644 index 673b1fa2ed..0000000000 --- a/sci-geosciences/mapillary_tools/mapillary_tools-0.8.2_p20220702.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 - -COMMIT="92624ccb416e9649bb93d6be04c8b3be03a44525" -PYTHON_COMPAT=( python3_9 ) - -inherit distutils-r1 - -DESCRIPTION="Command line tools for processing and uploading Mapillary imagery" -HOMEPAGE="https://github.com/mapillary/mapillary_tools" -SRC_URI="https://github.com/mapillary/mapillary_tools/archive/${COMMIT}.tar.gz -> ${PF}.gh.tar.gz" -S="${WORKDIR}/${PN}-${COMMIT}" - -LICENSE="BSD" -KEYWORDS="~amd64" -SLOT="0" - -RDEPEND=" - >=dev-python/exifread-2.3.2[${PYTHON_USEDEP}] - >=dev-python/piexif-1.1.3[${PYTHON_USEDEP}] - >=dev-python/gpxpy-1.4.2[${PYTHON_USEDEP}] - >=dev-python/pynmea2-1.12.0[${PYTHON_USEDEP}] - >=dev-python/requests-2.20.0[${PYTHON_USEDEP}] - >=dev-python/tqdm-4.0[${PYTHON_USEDEP}] - dev-python/typing-extensions[${PYTHON_USEDEP}] - dev-python/jsonschema[${PYTHON_USEDEP}] -" -DEPEND=" - ${RDEPEND} - >=dev-python/pillow-8.1.2[${PYTHON_USEDEP}] - dev-python/pyinstaller[${PYTHON_USEDEP}] - dev-python/types-python-dateutil[${PYTHON_USEDEP}] - dev-python/types-pytz[${PYTHON_USEDEP}] - dev-python/types-requests[${PYTHON_USEDEP}] -" - -distutils_enable_tests pytest diff --git a/sci-geosciences/mapillary_tools/metadata.xml b/sci-geosciences/mapillary_tools/metadata.xml deleted file mode 100644 index d9ae1449e3..0000000000 --- a/sci-geosciences/mapillary_tools/metadata.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - lssndrbarbieri@gmail.com - Alessandro Barbieri - - - https://github.com/mapillary/mapillary_tools/issues - mapillary/mapillary_tools - - diff --git a/sci-libs/Mutationpp/Mutationpp-1.0.5-r1.ebuild b/sci-libs/Mutationpp/Mutationpp-1.0.5-r1.ebuild index 45ad312ff6..d7091abae2 100644 --- a/sci-libs/Mutationpp/Mutationpp-1.0.5-r1.ebuild +++ b/sci-libs/Mutationpp/Mutationpp-1.0.5-r1.ebuild @@ -6,7 +6,7 @@ EAPI=8 DISTUTILS_OPTIONAL=1 DISTUTILS_USE_PEP517=setuptools FORTRAN_NEEDED="fortran" -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 cmake flag-o-matic fortran-2 diff --git a/sci-libs/dart/dart-6.12.1-r2.ebuild b/sci-libs/dart/dart-6.12.1-r2.ebuild index 6d6bbe4a84..199fe355f0 100644 --- a/sci-libs/dart/dart-6.12.1-r2.ebuild +++ b/sci-libs/dart/dart-6.12.1-r2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) CMAKE_BUILD_TYPE="Release" diff --git a/sci-libs/magma/magma-2.6.2-r1.ebuild b/sci-libs/magma/magma-2.6.2-r1.ebuild index 5737de3c07..2cf3279645 100644 --- a/sci-libs/magma/magma-2.6.2-r1.ebuild +++ b/sci-libs/magma/magma-2.6.2-r1.ebuild @@ -4,7 +4,7 @@ EAPI=8 FORTRAN_STANDARD="77 90" -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit cmake fortran-2 python-any-r1 toolchain-funcs diff --git a/sci-libs/magma/magma-2.6.2.ebuild b/sci-libs/magma/magma-2.6.2.ebuild index 575216947f..873c0b0d33 100644 --- a/sci-libs/magma/magma-2.6.2.ebuild +++ b/sci-libs/magma/magma-2.6.2.ebuild @@ -4,7 +4,7 @@ EAPI=8 FORTRAN_STANDARD="77 90" -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit cmake fortran-2 python-any-r1 toolchain-funcs diff --git a/sci-libs/mlpack/mlpack-3.4.2_p20220501.ebuild b/sci-libs/mlpack/mlpack-3.4.2_p20220501.ebuild index ad4457fa5d..8348dc6b59 100644 --- a/sci-libs/mlpack/mlpack-3.4.2_p20220501.ebuild +++ b/sci-libs/mlpack/mlpack-3.4.2_p20220501.ebuild @@ -28,7 +28,7 @@ EGO_SUM=( "rsc.io/pdf v0.1.1/go.mod" ) GO_OPTIONAL=1 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit cmake flag-o-matic go-module python-single-r1 diff --git a/sci-mathematics/clingo/clingo-5.5.2.ebuild b/sci-mathematics/clingo/clingo-5.5.2.ebuild index 57b8da3d9a..4981eb3a75 100644 --- a/sci-mathematics/clingo/clingo-5.5.2.ebuild +++ b/sci-mathematics/clingo/clingo-5.5.2.ebuild @@ -4,7 +4,7 @@ EAPI=8 LUA_COMPAT=( lua5-{3..4} ) -PYTHON_COMPAT=( python3_{9..11} ) # IDK how to pass pypy3 +PYTHON_COMPAT=( python3_{10..11} ) # IDK how to pass pypy3 inherit cmake flag-o-matic lua-single python-single-r1 toolchain-funcs diff --git a/sci-mathematics/pyromaths/pyromaths-21.8.2.ebuild b/sci-mathematics/pyromaths/pyromaths-21.8.2.ebuild index 6426b0f721..b1980e1c9a 100644 --- a/sci-mathematics/pyromaths/pyromaths-21.8.2.ebuild +++ b/sci-mathematics/pyromaths/pyromaths-21.8.2.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 diff --git a/sci-mathematics/radian/radian-0.6.3.ebuild b/sci-mathematics/radian/radian-0.6.3.ebuild index 0483ba2a8d..94da2a473f 100644 --- a/sci-mathematics/radian/radian-0.6.3.ebuild +++ b/sci-mathematics/radian/radian-0.6.3.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_SINGLE_IMPL=1 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 optfeature diff --git a/sci-physics/SU2/SU2-7.2.0-r100.ebuild b/sci-physics/SU2/SU2-7.2.0-r100.ebuild index f3aad50e14..f3501c53e4 100644 --- a/sci-physics/SU2/SU2-7.2.0-r100.ebuild +++ b/sci-physics/SU2/SU2-7.2.0-r100.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit meson python-single-r1 diff --git a/sci-physics/SU2/SU2-7.2.0-r2.ebuild b/sci-physics/SU2/SU2-7.2.0-r2.ebuild index 22cd29f7b7..8d1ed6cb5b 100644 --- a/sci-physics/SU2/SU2-7.2.0-r2.ebuild +++ b/sci-physics/SU2/SU2-7.2.0-r2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit meson python-single-r1 diff --git a/sci-physics/SU2/SU2-7.5.1.ebuild b/sci-physics/SU2/SU2-7.5.1.ebuild index b46260f660..90793a6329 100644 --- a/sci-physics/SU2/SU2-7.5.1.ebuild +++ b/sci-physics/SU2/SU2-7.5.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit meson python-single-r1 diff --git a/sci-physics/mbdyn/mbdyn-1.7.3_p20210925-r1.ebuild b/sci-physics/mbdyn/mbdyn-1.7.3_p20210925-r1.ebuild index c65a91be13..7d9667b83d 100644 --- a/sci-physics/mbdyn/mbdyn-1.7.3_p20210925-r1.ebuild +++ b/sci-physics/mbdyn/mbdyn-1.7.3_p20210925-r1.ebuild @@ -5,7 +5,7 @@ EAPI=7 COMMIT="ae57618c4e7b030b59707b8c156a6e2a94a6efd0" MYP="${PN}-${COMMIT}" -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit autotools flag-o-matic fortran-2 pam python-single-r1 diff --git a/sys-apps/CommsPowerManagement/CommsPowerManagement-0.2.1.ebuild b/sys-apps/CommsPowerManagement/CommsPowerManagement-0.2.1.ebuild index 28a6336346..961d87de10 100644 --- a/sys-apps/CommsPowerManagement/CommsPowerManagement-0.2.1.ebuild +++ b/sys-apps/CommsPowerManagement/CommsPowerManagement-0.2.1.ebuild @@ -4,7 +4,7 @@ EAPI=8 MYPV="pwr-v${PV}" -PYTHON_COMPAT=( python3_{9..10} pypy3 ) +PYTHON_COMPAT=( python3_10 pypy3 ) inherit distutils-r1 diff --git a/sys-apps/asus-touchpad-numpad-driver/asus-touchpad-numpad-driver-0_pre20220311.ebuild b/sys-apps/asus-touchpad-numpad-driver/asus-touchpad-numpad-driver-0_pre20220311.ebuild index 0a3aac9d22..91e00805ff 100644 --- a/sys-apps/asus-touchpad-numpad-driver/asus-touchpad-numpad-driver-0_pre20220311.ebuild +++ b/sys-apps/asus-touchpad-numpad-driver/asus-touchpad-numpad-driver-0_pre20220311.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit linux-info python-single-r1 DESCRIPTION="Feature-rich configurable Asus NumPad drivers" diff --git a/sys-apps/asus-touchpad-numpad-driver/asus-touchpad-numpad-driver-9999.ebuild b/sys-apps/asus-touchpad-numpad-driver/asus-touchpad-numpad-driver-9999.ebuild index 0a3aac9d22..91e00805ff 100644 --- a/sys-apps/asus-touchpad-numpad-driver/asus-touchpad-numpad-driver-9999.ebuild +++ b/sys-apps/asus-touchpad-numpad-driver/asus-touchpad-numpad-driver-9999.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit linux-info python-single-r1 DESCRIPTION="Feature-rich configurable Asus NumPad drivers" diff --git a/sys-apps/dool/dool-1.1.0.ebuild b/sys-apps/dool/dool-1.1.0.ebuild index 67fc995a6f..3239402b05 100644 --- a/sys-apps/dool/dool-1.1.0.ebuild +++ b/sys-apps/dool/dool-1.1.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit python-r1 diff --git a/sys-apps/dool/dool-9999.ebuild b/sys-apps/dool/dool-9999.ebuild index 67fc995a6f..3239402b05 100644 --- a/sys-apps/dool/dool-9999.ebuild +++ b/sys-apps/dool/dool-9999.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit python-r1 diff --git a/sys-apps/fchroot/fchroot-0.1.2.ebuild b/sys-apps/fchroot/fchroot-0.1.2.ebuild index d8e6dd60db..9c5b93bd92 100644 --- a/sys-apps/fchroot/fchroot-0.1.2.ebuild +++ b/sys-apps/fchroot/fchroot-0.1.2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 pypi diff --git a/sys-apps/intel-cmt-cat/intel-cmt-cat-4.4.0.ebuild b/sys-apps/intel-cmt-cat/intel-cmt-cat-4.4.0.ebuild index b0a50edeca..69231b7d0d 100644 --- a/sys-apps/intel-cmt-cat/intel-cmt-cat-4.4.0.ebuild +++ b/sys-apps/intel-cmt-cat/intel-cmt-cat-4.4.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) #pypy3 has warnings +PYTHON_COMPAT=( python3_{10..11} ) #pypy3 has warnings inherit distutils-r1 perl-module diff --git a/sys-apps/rogdrv/Manifest b/sys-apps/rogdrv/Manifest deleted file mode 100644 index 8697f4a91a..0000000000 --- a/sys-apps/rogdrv/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST rogdrv-0.0.5_p20210208.tar.gz 69578 BLAKE2B e163542b023423c4379b596b44b73a5c37d3c1502b0f65865bdc8dfcef2f7eb49aec9f1ca456a8bda7ad369e6bc638bc85d7f054610ce52059dbab198b9b4f36 SHA512 66a00a99409a9bf5f2a1ea887ade0408180989f671d5b4b16c40b382776cae8ad4980ca4831d7a9ade229ffa30ad0f92b56c535164a61ea6110c3e8fc889487d diff --git a/sys-apps/rogdrv/metadata.xml b/sys-apps/rogdrv/metadata.xml deleted file mode 100644 index 5332f17b7e..0000000000 --- a/sys-apps/rogdrv/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - kyokenn/rogdrv - - - ahvenas@gmail.com - Henrik Pihl - - diff --git a/sys-apps/rogdrv/rogdrv-0.0.5_p20210208.ebuild b/sys-apps/rogdrv/rogdrv-0.0.5_p20210208.ebuild deleted file mode 100644 index 015214ed0b..0000000000 --- a/sys-apps/rogdrv/rogdrv-0.0.5_p20210208.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 2020-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_9 ) -DISTUTILS_USE_SETUPTOOLS=rdepend - -inherit distutils-r1 linux-info udev - -COMMIT="ebf9965192196feaae6828bc41bf3dac1d9a1e5e" -DESCRIPTION="ASUS ROG userspace mouse driver for Linux." -HOMEPAGE="https://github.com/kyokenn/rogdrv" -S="${WORKDIR}/${PN}-${COMMIT}" -SRC_URI="https://github.com/kyokenn/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64" - -DEPEND="dev-python/python-evdev[${PYTHON_USEDEP}] - dev-python/cffi[${PYTHON_USEDEP}] - dev-python/hidapi[${PYTHON_USEDEP}] - dev-libs/libappindicator - virtual/udev" -RDEPEND="${DEPEND}" -CONFIG_CHECK="~INPUT_UINPUT" - -python_prepare_all() { - # duplicate text, commited to upstream - sed -i -e '/Comment=ASUS/d' rogdrv.desktop rogdrv/gtk3.py || die - # udev rules are placed outside /usr - sed -i -e '/etc[\/]udev/d' setup.py || die - # clear setup_requires, for some reason this package - # triggers something in setuptools that calls pip - sed -i -e '/setup_requires/,+2d' setup.py || die - distutils-r1_python_prepare_all -} - -python_install() { - distutils-r1_python_install - udev_dorules udev/50-rogdrv.rules -} - -pkg_postinst() { - elog "Reconnect your mouse to get your mouse working with the new rules." - elog "See the README file for usage instructions." - udev_reload -} diff --git a/sys-boot/woeusb-ng/woeusb-ng-0.2.10.ebuild b/sys-boot/woeusb-ng/woeusb-ng-0.2.10.ebuild index d641828586..82564fd652 100644 --- a/sys-boot/woeusb-ng/woeusb-ng-0.2.10.ebuild +++ b/sys-boot/woeusb-ng/woeusb-ng-0.2.10.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_SINGLE_IMPL=1 inherit distutils-r1 diff --git a/sys-cluster/OpenHPC-meta/OpenHPC-meta-2.1-r1.ebuild b/sys-cluster/OpenHPC-meta/OpenHPC-meta-2.1-r1.ebuild index a57bd0d5cc..f92ae30def 100644 --- a/sys-cluster/OpenHPC-meta/OpenHPC-meta-2.1-r1.ebuild +++ b/sys-cluster/OpenHPC-meta/OpenHPC-meta-2.1-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit python-single-r1 diff --git a/sys-cluster/adios2/adios2-2.8.1-r1.ebuild b/sys-cluster/adios2/adios2-2.8.1-r1.ebuild index 2d9caa9886..2775b3dbbb 100644 --- a/sys-cluster/adios2/adios2-2.8.1-r1.ebuild +++ b/sys-cluster/adios2/adios2-2.8.1-r1.ebuild @@ -5,7 +5,7 @@ EAPI=8 FORTRAN_NEEDED="fortran" MYPN="${PN^^}" -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit cmake python-single-r1 fortran-2 diff --git a/sys-cluster/clusteringsuite/clusteringsuite-2.6.9-r3.ebuild b/sys-cluster/clusteringsuite/clusteringsuite-2.6.9-r3.ebuild index fd843ff391..089a954457 100644 --- a/sys-cluster/clusteringsuite/clusteringsuite-2.6.9-r3.ebuild +++ b/sys-cluster/clusteringsuite/clusteringsuite-2.6.9-r3.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( pypy3 python3_{9..11} ) +PYTHON_COMPAT=( pypy3 python3_{10..11} ) inherit autotools python-any-r1 diff --git a/sys-cluster/dimemas/dimemas-5.4.2_p20220601.ebuild b/sys-cluster/dimemas/dimemas-5.4.2_p20220601.ebuild index f7271cb3ae..608dcbe54b 100644 --- a/sys-cluster/dimemas/dimemas-5.4.2_p20220601.ebuild +++ b/sys-cluster/dimemas/dimemas-5.4.2_p20220601.ebuild @@ -4,7 +4,7 @@ EAPI=8 COMMIT="0dc28fafb8a917cee8d6ffd4a037cdc1f8755101" -PYTHON_COMPAT=( pypy3 python3_{9..11} ) +PYTHON_COMPAT=( pypy3 python3_{10..11} ) inherit autotools java-pkg-opt-2 python-any-r1 diff --git a/sys-cluster/dlb/dlb-2.1-r3.ebuild b/sys-cluster/dlb/dlb-2.1-r3.ebuild index a327de9f4a..9ab3dad0d6 100644 --- a/sys-cluster/dlb/dlb-2.1-r3.ebuild +++ b/sys-cluster/dlb/dlb-2.1-r3.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) PYTHON_REQ_USE="tk" inherit autotools python-single-r1 diff --git a/sys-cluster/extrae/extrae-4.0.1.ebuild b/sys-cluster/extrae/extrae-4.0.1.ebuild index f254a049e7..cc745522a8 100644 --- a/sys-cluster/extrae/extrae-4.0.1.ebuild +++ b/sys-cluster/extrae/extrae-4.0.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( pypy3 python3_{9..11} ) +PYTHON_COMPAT=( pypy3 python3_{10..11} ) inherit autotools java-pkg-opt-2 python-single-r1 diff --git a/sys-cluster/fti/fti-1.6-r1.ebuild b/sys-cluster/fti/fti-1.6-r1.ebuild index 1eba0da819..6b5185ad82 100644 --- a/sys-cluster/fti/fti-1.6-r1.ebuild +++ b/sys-cluster/fti/fti-1.6-r1.ebuild @@ -10,7 +10,7 @@ DOCS_DEPEND=" " DOCS_DIR="${S}/docs/source" FORTRAN_NEEDED="fortran" -PYTHON_COMPAT=( python3_{9..10} pypy3 ) +PYTHON_COMPAT=( python3_10 pypy3 ) inherit cmake python-any-r1 docs fortran-2 diff --git a/sys-cluster/genders/genders-1.28.1-r1.ebuild b/sys-cluster/genders/genders-1.28.1-r1.ebuild index 34bc161cc0..e992ecb595 100644 --- a/sys-cluster/genders/genders-1.28.1-r1.ebuild +++ b/sys-cluster/genders/genders-1.28.1-r1.ebuild @@ -6,7 +6,7 @@ EAPI=8 DISTUTILS_USE_SETUPTOOLS=no MY_PV="$(ver_rs 1-2 -)" MY_P="${PN}-${MY_PV}" -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit distutils-r1 edo flag-o-matic java-pkg-opt-2 perl-module diff --git a/sys-cluster/mcxx/mcxx-2021.06.ebuild b/sys-cluster/mcxx/mcxx-2021.06.ebuild index 366b9d5592..1c3f9c551c 100644 --- a/sys-cluster/mcxx/mcxx-2021.06.ebuild +++ b/sys-cluster/mcxx/mcxx-2021.06.ebuild @@ -7,7 +7,7 @@ DOCS_BUILDER="doxygen" DOCS_DIR="doc" DOCS_CONFIG_NAME="doxygen_tl.in" MYPV="github-release-${PV}" -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit autotools flag-o-matic fortran-2 python-any-r1 docs diff --git a/sys-cluster/otf2/otf2-2.3-r3.ebuild b/sys-cluster/otf2/otf2-2.3-r3.ebuild index 5f6ff1fcf1..e817ea8508 100644 --- a/sys-cluster/otf2/otf2-2.3-r3.ebuild +++ b/sys-cluster/otf2/otf2-2.3-r3.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( pypy3 python3_{9..11} ) +PYTHON_COMPAT=( pypy3 python3_{10..11} ) inherit python-single-r1 toolchain-funcs diff --git a/sys-cluster/otf2/otf2-3.0.ebuild b/sys-cluster/otf2/otf2-3.0.ebuild index c2f6b39d93..cb426c181e 100644 --- a/sys-cluster/otf2/otf2-3.0.ebuild +++ b/sys-cluster/otf2/otf2-3.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( pypy3 python3_{9..11} ) +PYTHON_COMPAT=( pypy3 python3_{10..11} ) inherit python-single-r1 toolchain-funcs diff --git a/sys-cluster/parsec/parsec-3.0.2012-r2.ebuild b/sys-cluster/parsec/parsec-3.0.2012-r2.ebuild index 38132a62f4..682ebf7dc6 100644 --- a/sys-cluster/parsec/parsec-3.0.2012-r2.ebuild +++ b/sys-cluster/parsec/parsec-3.0.2012-r2.ebuild @@ -5,7 +5,7 @@ EAPI=8 DOCS_BUILDER="doxygen" DOCS_DIR="docs/doxygen" -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit cmake fortran-2 docs python-single-r1 diff --git a/sys-cluster/pcs/pcs-0.10.8-r3.ebuild b/sys-cluster/pcs/pcs-0.10.8-r3.ebuild index e62d734eaa..f673bd28ab 100644 --- a/sys-cluster/pcs/pcs-0.10.8-r3.ebuild +++ b/sys-cluster/pcs/pcs-0.10.8-r3.ebuild @@ -4,7 +4,7 @@ EAPI=7 DISTUTILS_USE_SETUPTOOLS=rdepend -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) USE_RUBY="ruby26 ruby27" inherit python-single-r1 ruby-ng systemd diff --git a/sys-cluster/pcs/pcs-0.11.2.ebuild b/sys-cluster/pcs/pcs-0.11.2.ebuild index a2d825d650..82bd5e8fbe 100644 --- a/sys-cluster/pcs/pcs-0.11.2.ebuild +++ b/sys-cluster/pcs/pcs-0.11.2.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_SETUPTOOLS=rdepend -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) USE_RUBY="ruby27" inherit autotools systemd python-single-r1 ruby-ng diff --git a/sys-cluster/scr/scr-3.0-r1.ebuild b/sys-cluster/scr/scr-3.0-r1.ebuild index f5f1d79115..8f80484457 100644 --- a/sys-cluster/scr/scr-3.0-r1.ebuild +++ b/sys-cluster/scr/scr-3.0-r1.ebuild @@ -8,7 +8,7 @@ DOCS_BUILDER="sphinx" DOCS_DIR="${S}/doc/rst" FORTRAN_NEEDED="fortran" MYPV="${PV/_pre/rc}" -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit cmake python-single-r1 fortran-2 docs diff --git a/sys-cluster/sionlib/sionlib-1.7.7-r4.ebuild b/sys-cluster/sionlib/sionlib-1.7.7-r4.ebuild index f3e1dcc27e..73fa9c89d2 100644 --- a/sys-cluster/sionlib/sionlib-1.7.7-r4.ebuild +++ b/sys-cluster/sionlib/sionlib-1.7.7-r4.ebuild @@ -6,7 +6,7 @@ EAPI=8 DOCS_BUILDER="doxygen" DOCS_CONFIG_NAME="doxy" FORTRAN_NEEDED="fortran" -PYTHON_COMPAT=( pypy3 python3_{9..11} ) +PYTHON_COMPAT=( pypy3 python3_{10..11} ) inherit docs edo flag-o-matic fortran-2 python-any-r1 toolchain-funcs diff --git a/sys-cluster/sionlibl/sionlibl-1.7.7-r3.ebuild b/sys-cluster/sionlibl/sionlibl-1.7.7-r3.ebuild index 5a165667ed..d4f889cdb9 100644 --- a/sys-cluster/sionlibl/sionlibl-1.7.7-r3.ebuild +++ b/sys-cluster/sionlibl/sionlibl-1.7.7-r3.ebuild @@ -6,7 +6,7 @@ EAPI=8 DOCS_BUILDER="doxygen" DOCS_CONFIG_NAME="doxy" FORTRAN_NEEDED="fortran" -PYTHON_COMPAT=( pypy3 python3_{9..11} ) +PYTHON_COMPAT=( pypy3 python3_{10..11} ) inherit docs edo flag-o-matic fortran-2 python-any-r1 toolchain-funcs diff --git a/sys-cluster/veloc/veloc-1.6.ebuild b/sys-cluster/veloc/veloc-1.6.ebuild index 23ef4de323..8c7c3e26ea 100644 --- a/sys-cluster/veloc/veloc-1.6.ebuild +++ b/sys-cluster/veloc/veloc-1.6.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_SETUPTOOLS=no -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit cmake distutils-r1 diff --git a/sys-cluster/wxparaver/wxparaver-4.10.1.ebuild b/sys-cluster/wxparaver/wxparaver-4.10.1.ebuild index 17eae711ff..98d94f1f2c 100644 --- a/sys-cluster/wxparaver/wxparaver-4.10.1.ebuild +++ b/sys-cluster/wxparaver/wxparaver-4.10.1.ebuild @@ -6,7 +6,7 @@ EAPI=8 DOCS_AUTODOC=0 DOCS_BUILDER="sphinx" DOCS_DIR="docs/wxparaver_help_contents/sphinx/2.paraver_toolset/source" -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) WX_GTK_VER="3.0-gtk3" inherit autotools python-any-r1 docs wxwidgets diff --git a/sys-fs/btrfs-heatmap/btrfs-heatmap-9-r1.ebuild b/sys-fs/btrfs-heatmap/btrfs-heatmap-9-r1.ebuild index 632e5900d2..9bd96a27f8 100644 --- a/sys-fs/btrfs-heatmap/btrfs-heatmap-9-r1.ebuild +++ b/sys-fs/btrfs-heatmap/btrfs-heatmap-9-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9,10} ) +PYTHON_COMPAT=( python3_10 ) inherit python-single-r1 diff --git a/sys-fs/ntfs2btrfs/Manifest b/sys-fs/ntfs2btrfs/Manifest index e141b6d943..0313c405bb 100644 --- a/sys-fs/ntfs2btrfs/Manifest +++ b/sys-fs/ntfs2btrfs/Manifest @@ -1 +1 @@ -DIST ntfs2btrfs-20220812.tar.gz 98059 BLAKE2B 630992ee5f629cd9a81f7277d48159430ec1ccfcf004e6f6c72ae6bbb96d4aefce79ffd78c900e373c4d6460210db94b223888e5825f1c9280659a8da94c5bce SHA512 3d4ebf0c4b8f5d3e2dd669f74c3600f85baf45fc6c179de1b821fb84c761517d65c0d9e3e9d0c556e0123fde30334c2063bf7114e59b6836b066c31a187842cf +DIST ntfs2btrfs-20230501.tar.gz 98816 BLAKE2B d814e1d1a80fa25a85ca010b4ec3d0a92eb0ebeba4ad9042af95b7f2cd5fb70941e2dfc4422a609b7b159c9f4ff51598e1acaedb46f3b48fb42235f230dc1423 SHA512 ad10850280f591cbdc169bb8e0b1768f7c4051b3110283c941ab76beb0d2b728d30ac64caecdbe6f90068b2486170ddced0704d741d1469944c58ecf0b168e0a diff --git a/sys-fs/ntfs2btrfs/ntfs2btrfs-20220812.ebuild b/sys-fs/ntfs2btrfs/ntfs2btrfs-20230501.ebuild similarity index 100% rename from sys-fs/ntfs2btrfs/ntfs2btrfs-20220812.ebuild rename to sys-fs/ntfs2btrfs/ntfs2btrfs-20230501.ebuild diff --git a/sys-fs/python-btrfs/python-btrfs-13-r1.ebuild b/sys-fs/python-btrfs/python-btrfs-13-r1.ebuild index 13516f3cfb..d0d42e03a0 100644 --- a/sys-fs/python-btrfs/python-btrfs-13-r1.ebuild +++ b/sys-fs/python-btrfs/python-btrfs-13-r1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{9,10} ) +PYTHON_COMPAT=( python3_10 ) DISTUTILS_USE_SETUPTOOLS="no" inherit distutils-r1 diff --git a/sys-kernel/dpdk-kmod/dpdk-kmod-21.11.1.ebuild b/sys-kernel/dpdk-kmod/dpdk-kmod-21.11.1.ebuild index 503725d50e..da6109876b 100644 --- a/sys-kernel/dpdk-kmod/dpdk-kmod-21.11.1.ebuild +++ b/sys-kernel/dpdk-kmod/dpdk-kmod-21.11.1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit linux-mod python-single-r1 meson DESCRIPTION="DPDK Kernel Nic Interface module" diff --git a/sys-kernel/dpdk-kmod/dpdk-kmod-22.07.ebuild b/sys-kernel/dpdk-kmod/dpdk-kmod-22.07.ebuild index 7d5f779394..b945400c27 100644 --- a/sys-kernel/dpdk-kmod/dpdk-kmod-22.07.ebuild +++ b/sys-kernel/dpdk-kmod/dpdk-kmod-22.07.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit linux-mod toolchain-funcs python-single-r1 meson DESCRIPTION="DPDK Kernel Nic Interface module" diff --git a/sys-power/ZenStates-Linux/ZenStates-Linux-0_pre20170507.ebuild b/sys-power/ZenStates-Linux/ZenStates-Linux-0_pre20170507.ebuild index 62658bf36b..86251df79b 100644 --- a/sys-power/ZenStates-Linux/ZenStates-Linux-0_pre20170507.ebuild +++ b/sys-power/ZenStates-Linux/ZenStates-Linux-0_pre20170507.ebuild @@ -4,7 +4,7 @@ EAPI=8 COMMIT=0bc27f4740e382f2a2896dc1dabfec1d0ac96818 -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..11} pypy3 ) inherit linux-info python-single-r1 diff --git a/sys-power/amdgpu-fan/amdgpu-fan-0.1.0-r1.ebuild b/sys-power/amdgpu-fan/amdgpu-fan-0.1.0-r1.ebuild index f1fc96bae1..bab909d4f2 100644 --- a/sys-power/amdgpu-fan/amdgpu-fan-0.1.0-r1.ebuild +++ b/sys-power/amdgpu-fan/amdgpu-fan-0.1.0-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 systemd diff --git a/sys-power/auto-cpufreq/auto-cpufreq-1.9.6.ebuild b/sys-power/auto-cpufreq/auto-cpufreq-1.9.6.ebuild index ea3a0dcef8..5e0b16b7b4 100644 --- a/sys-power/auto-cpufreq/auto-cpufreq-1.9.6.ebuild +++ b/sys-power/auto-cpufreq/auto-cpufreq-1.9.6.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools diff --git a/sys-power/geopmd/geopmd-2.0.0_rc1.ebuild b/sys-power/geopmd/geopmd-2.0.0_rc1.ebuild index d9e96e2fa1..64d8095347 100644 --- a/sys-power/geopmd/geopmd-2.0.0_rc1.ebuild +++ b/sys-power/geopmd/geopmd-2.0.0_rc1.ebuild @@ -5,7 +5,7 @@ EAPI=8 MYPV="${PV/_rc/+rc}" MYP="geopm-${MYPV}" -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit autotools python-single-r1 diff --git a/sys-power/linux-tools-power-x86/linux-tools-power-x86-5.18.ebuild b/sys-power/linux-tools-power-x86/linux-tools-power-x86-5.18.ebuild index 9b6ab76853..1a6a13dcd0 100644 --- a/sys-power/linux-tools-power-x86/linux-tools-power-x86-5.18.ebuild +++ b/sys-power/linux-tools-power-x86/linux-tools-power-x86-5.18.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit fcaps linux-info python-r1 toolchain-funcs diff --git a/sys-power/linux-tools-power-x86/linux-tools-power-x86-6.1.ebuild b/sys-power/linux-tools-power-x86/linux-tools-power-x86-6.1.ebuild index b915c39b7a..a2c0295b13 100644 --- a/sys-power/linux-tools-power-x86/linux-tools-power-x86-6.1.ebuild +++ b/sys-power/linux-tools-power-x86/linux-tools-power-x86-6.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit fcaps linux-info python-r1 toolchain-funcs diff --git a/www-apps/gotosocial/gotosocial-0.8.0.ebuild b/www-apps/gotosocial/gotosocial-0.8.0.ebuild index ab82049977..948ff2c425 100644 --- a/www-apps/gotosocial/gotosocial-0.8.0.ebuild +++ b/www-apps/gotosocial/gotosocial-0.8.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DOCS_BUILDER="mkdocs" DOCS_DEPEND=( dev-python/mkdocs-material diff --git a/www-apps/gotosocial/gotosocial-0.8.1.ebuild b/www-apps/gotosocial/gotosocial-0.8.1.ebuild index ab82049977..948ff2c425 100644 --- a/www-apps/gotosocial/gotosocial-0.8.1.ebuild +++ b/www-apps/gotosocial/gotosocial-0.8.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DOCS_BUILDER="mkdocs" DOCS_DEPEND=( dev-python/mkdocs-material diff --git a/www-apps/twint/Manifest b/www-apps/twint/Manifest deleted file mode 100644 index df254a3bb1..0000000000 --- a/www-apps/twint/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST twint-2.1.20.tar.gz 33518 BLAKE2B 6a7401357d7c08956a05d046cf5daec61c854b618c9cf647c2c014091b4be4b55337f598dccf772b146b215a740855449049600a6251cd7899a01afc82ba8dea SHA512 022c855b660d4a30eb7d4c864147a520b92b45048db2e6869df23cf9ab9b23b6812f74de6452d8b4b439ca02dd6742349a5c097f9b3d19222e7365034b21b864 -DIST twint-2.1.20_p20220316.tar.gz 39871 BLAKE2B 6e289940c7d96537fe60a345470c059819a548461fa48c2e329a0f50af89eb0c6f0dc7b0525190edc3cf8f16e9b733ae2480e60e365065bbd92a87f8a29ce17c SHA512 73b646f8717f3e3cb9e2909a74e36a1d917da874bcb00cc4827853e4bd552811d3b7382c9f245defb68ace7eddbb0e83c5e563037d6cb7383a844366b43bb489 diff --git a/www-apps/twint/metadata.xml b/www-apps/twint/metadata.xml deleted file mode 100644 index 050abe23fb..0000000000 --- a/www-apps/twint/metadata.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - lssndrbarbieri@gmail.com - Alessandro Barbieri - - - No authentication. No API. No limits. - -Twint is an advanced Twitter scraping tool written in Python that allows for scraping Tweets from Twitter profiles without using Twitter's API. - -Twint utilizes Twitter's search operators to let you scrape Tweets from specific users, scrape Tweets relating to certain topics, hashtags & trends, or sort out sensitive information from Tweets like e-mail and phone numbers. I find this very useful, and you can get really creative with it too. - -Twint also makes special queries to Twitter allowing you to also scrape a Twitter user's followers, Tweets a user has liked, and who they follow without any authentication, API, Selenium, or browser emulation. -tl;dr Benefits - -Some of the benefits of using Twint vs Twitter API: - - Can fetch almost all Tweets (Twitter API limits to last 3200 Tweets only); - Fast initial setup; - Can be used anonymously and without Twitter sign up; - No rate limitations. - -Limits imposed by Twitter - -Twitter limits scrolls while browsing the user timeline. This means that with .Profile or with .Favorites you will be able to get ~3200 tweets. - - - https://github.com/twintproject/twint/wiki - https://github.com/twintproject/twint/issues - - codyzacharias@pm.me - Cody Zacharias - - twintproject/twint - twint - - diff --git a/www-apps/twint/twint-2.1.20-r2.ebuild b/www-apps/twint/twint-2.1.20-r2.ebuild deleted file mode 100644 index 5ab551fb44..0000000000 --- a/www-apps/twint/twint-2.1.20-r2.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_9 ) -inherit distutils-r1 - -DESCRIPTION="Twitter scraping & OSINT tool written in Python that doesn't use Twitter's API" -HOMEPAGE=" - https://github.com/twintproject/twint - https://pypi.org/project/twint/ -" -SRC_URI="https://github.com/twintproject/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" -IUSE="test" - -RDEPEND=" - dev-python/aiohttp[${PYTHON_USEDEP}] - dev-python/aiohttp-socks[${PYTHON_USEDEP}] - dev-python/aiodns[${PYTHON_USEDEP}] - dev-python/beautifulsoup4[${PYTHON_USEDEP}] - dev-python/cchardet[${PYTHON_USEDEP}] - dev-python/elasticsearch-py[${PYTHON_USEDEP}] - dev-python/fake-useragent[${PYTHON_USEDEP}] - dev-python/googletransx[${PYTHON_USEDEP}] - >=dev-python/pandas-0.23.0[${PYTHON_USEDEP}] - dev-python/PySocks[${PYTHON_USEDEP}] - dev-python/schedule[${PYTHON_USEDEP}] - sci-geosciences/geopy[${PYTHON_USEDEP}] -" -BDEPEND="test? ( ${RDEPEND} )" - -RESTRICT="test" -PROPERTIES="test_network" - -python_test() { - "${EPYTHON}" test.py -v || die -} diff --git a/www-apps/twint/twint-2.1.20_p20220316.ebuild b/www-apps/twint/twint-2.1.20_p20220316.ebuild deleted file mode 100644 index fcc49b6bcf..0000000000 --- a/www-apps/twint/twint-2.1.20_p20220316.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -COMMIT="20dee4a397ff46e29d26545c000eb039ddb8dbd0" -PYTHON_COMPAT=( python3_9 ) - -inherit distutils-r1 - -DESCRIPTION="Twitter scraping & OSINT tool written in Python that doesn't use Twitter's API" -HOMEPAGE="https://github.com/minamotorin/twint" -SRC_URI="https://github.com/minamotorin/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" -S="${WORKDIR}/${PN}-${COMMIT}" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" -IUSE="test" - -RDEPEND=" - dev-python/aiohttp[${PYTHON_USEDEP}] - dev-python/aiohttp-socks[${PYTHON_USEDEP}] - dev-python/aiodns[${PYTHON_USEDEP}] - dev-python/beautifulsoup4[${PYTHON_USEDEP}] - dev-python/cchardet[${PYTHON_USEDEP}] - dev-python/elasticsearch-py[${PYTHON_USEDEP}] - dev-python/fake-useragent[${PYTHON_USEDEP}] - dev-python/googletransx[${PYTHON_USEDEP}] - >=dev-python/pandas-0.23.0[${PYTHON_USEDEP}] - dev-python/PySocks[${PYTHON_USEDEP}] - dev-python/schedule[${PYTHON_USEDEP}] - sci-geosciences/geopy[${PYTHON_USEDEP}] -" -BDEPEND="test? ( ${RDEPEND} )" - -RESTRICT="test" -PROPERTIES="test_network" - -python_test() { - "${EPYTHON}" test.py -v || die -} diff --git a/www-client/woob/woob-3.1-r1.ebuild b/www-client/woob/woob-3.1-r1.ebuild index 2bea549aa7..3591bf4d3b 100644 --- a/www-client/woob/woob-3.1-r1.ebuild +++ b/www-client/woob/woob-3.1-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/www-client/woob/woob-9999.ebuild b/www-client/woob/woob-9999.ebuild index 2bea549aa7..3591bf4d3b 100644 --- a/www-client/woob/woob-9999.ebuild +++ b/www-client/woob/woob-9999.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 diff --git a/x11-apps/lightdm-gtk-greeter-settings/lightdm-gtk-greeter-settings-1.2.2-r1.ebuild b/x11-apps/lightdm-gtk-greeter-settings/lightdm-gtk-greeter-settings-1.2.2-r1.ebuild index 739b794011..12bebd3a58 100644 --- a/x11-apps/lightdm-gtk-greeter-settings/lightdm-gtk-greeter-settings-1.2.2-r1.ebuild +++ b/x11-apps/lightdm-gtk-greeter-settings/lightdm-gtk-greeter-settings-1.2.2-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) DISTUTILS_USE_PEP517=setuptools DISTUTILS_SINGLE_IMPL=1 diff --git a/x11-misc/caffeine-ng/caffeine-ng-3.5.1.ebuild b/x11-misc/caffeine-ng/caffeine-ng-3.5.1.ebuild index f3d1e7c2b1..8c2db853f1 100644 --- a/x11-misc/caffeine-ng/caffeine-ng-3.5.1.ebuild +++ b/x11-misc/caffeine-ng/caffeine-ng-3.5.1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit distutils-r1 gnome2-utils xdg diff --git a/x11-misc/i3status-rust/Manifest b/x11-misc/i3status-rust/Manifest index afe454d4ef..9609df604d 100644 --- a/x11-misc/i3status-rust/Manifest +++ b/x11-misc/i3status-rust/Manifest @@ -1,9 +1,10 @@ -DIST aho-corasick-0.7.20.crate 111440 BLAKE2B 3f5d54fea2793ce1c2c4d5b3049b910f45a5721e7538cb2557df63dc3069ab3f6b66aceb5e9a48f21c43ae29778fd045428ea103b2a6de81659e605e30e64ca6 SHA512 ad31f3d1b3fe41e593d4ca7e721bbad62936f2e6a17fd1e0997353edb6fc906d1bef2b79f0ac7c7676abe637bbabb23ff22059947be379a2441011f8178983c5 +DIST aho-corasick-1.0.1.crate 167320 BLAKE2B f148004140d4f705e93f448020b97c434b93fea6ae34fd74b1f394b076c2727a87f5ec54542a0f52822d716c10ada3c68ae8f50a46c455fc6e828b10b5650ecc SHA512 7cea5b2305b90aebc54f78446cfc91f275b1be8489d2d80c3baa9ff8b913f9b2296adbdf4aefb0d8fce8f57812963fb9450b200d133a9d61e100cef324068070 DIST android_system_properties-0.1.5.crate 5243 BLAKE2B 86f68ec3bdabf8c6ec47881d794970f08a9eefc7417fc8a2bf4fe9faf9bdd2a2024a94adb0cbf96673409f5fbbd4d0111a1ac371339e7a90a277b6cd5003524e SHA512 b09f51339f9772c0e2e4241b36cf51573c6b96b19ffc1fbbc94b1c1d1d2fdfe8eac3134af54174a675ab05d18ef4f6bcb2c7fcc20114bbeef6e17e3692202191 -DIST anstream-0.2.6.crate 19429 BLAKE2B ab22ca48e23a717f2cb909ec1fa162d40bffe198b99dc2e2d7bd80702b404ed881aafff9bd54f5091ed714573a9e9fcc64d4e9aeba8e5d2be22fc09cf97531d6 SHA512 6488232a6b19f6d187424097446754139559dc9eb5918c47429e4759b64b28fda5a3f33437cb1b364cceace655935f94d2be128bac327ac826fa588c2c1463ad -DIST anstyle-0.3.5.crate 14272 BLAKE2B 15bb1487dd8c3d7864611d85f0ed277c9226f5f046ed6508ce1f933cfd38bba870af15fe3d238a0aaf104272be28dbb9d2f3a96e53bf28dddd14d0b4de173d52 SHA512 3075963236b4b7b94b98672481a82ad1ab9d219e583dc5646bc7ebfef35a7bbdcb38c9e12c770a51809fdc4fcc510e781875507446b36bc87a69e4a10e562709 -DIST anstyle-parse-0.1.1.crate 24186 BLAKE2B c488959a2c50905f35b43b8d6174f1f1e56bf5da49e4d7c8cad7eb313eeef5a66b61d1b5f3780796b8f6f4b0702b54b112e9227054c5567c5e57ce7b1c3d8440 SHA512 366fc0a5eb27744eac1f8cfc775734226e937ab5288e1401043d033eca046eeed6918362bc9c1e76f8b2f77ec85e7f0d9a0c801a4b36790f278d62a8fe1d417f -DIST anstyle-wincon-0.2.0.crate 11667 BLAKE2B 491e1e2d4932e9d9cc170379e297833c9731c7628061116f9a590a63059005b36c41d96abb6c8ed0be3698800bda7930df92aa827d77bc7ddb2182f170c85eb6 SHA512 d0d9703e023a92ce51a0987b23564e93504d11266e049be5fb386bd7d448e6bc9e7fc795217ce139290ffad5c40bf6fddad23709ebfbeebb9f2f8e0592be9b63 +DIST anstream-0.3.1.crate 19503 BLAKE2B f8e65cd47ddf95a1963bf5ddb91e8d226f368930731dcbb985fdd60dcfe218929e01be45168ccd6d86d76f0ab097c52e0ed4f89cca0d6b4864bab57d8a36dc05 SHA512 0eaad41de20fcb8207eecd810e47c833c59bea43cffd7e11450fc74617dcf3adb8d2ae1b5a61f8827dd3ef86ecf3ff7503d6b55c489aefab5f62c8bc746c2e8d +DIST anstyle-1.0.0.crate 13972 BLAKE2B 741704b6e338834696bc816d8a65ff933f9bff48e71d25269f04c4a24c3dbb06826d2f84f73a1dceeda99cfc5c8e3d59b3d07dbb404cc3471b86cf118d074e80 SHA512 5a0159b9f8a80afadff04ecbec3c1769cef712c77de8062b31323298dab9507f4a87b7c777e6335d310ec464b0982d097b5888b4b351c389b5f4419c2c87be7b +DIST anstyle-parse-0.2.0.crate 24361 BLAKE2B f796ddf1af04c93d7ee2721731e5cd22bb941919940a9edf6b2a658a8c39e87bd801bfd989631d64e9061067f7349796c56009ec61c02d754748181cc4d91a62 SHA512 fbac25189a0f4c0ddf2733c8ff74bdc2dc1a35e522d0201fa48f0f45e1d5d0a42e4806178507d0bc6a2ac22978b813eae5d57f09dddc80582de524690d87147f +DIST anstyle-query-1.0.0.crate 8620 BLAKE2B 2d296b5066fd6284a2410923215571e6df650c5ef892d6de7a7088a0996ca30608797feabc84f3c325ff4d07001dac80ac5067d2a9c9d15d9ba59a276b399f53 SHA512 2781be5c82293b7ae338ec5046fbeb130de9eb2dbf2e4dfaa73ca5233032e1e52c133e141b02f33d4bc36d996a0a3f680ac82d42d614a5305005f60547133c7a +DIST anstyle-wincon-1.0.1.crate 11718 BLAKE2B 2500845a23edfb47ecd156424a89789c713a7c367c3fef98d26e4e7b2acb3c6433d39a1c2a59813a98266b0993d4b750e9b6b68b7ced7ec5a04a8b13bad174e7 SHA512 00c380fc0198c49776c40aeef419be2fd2d6809bd2e5d86457f1658c6f4b2e83ebe8feee95855c3bbedd4200a917f582bd41b0ee0cf5d7d1d5017228885a58e6 DIST anyhow-1.0.70.crate 43803 BLAKE2B 574da0e447592c12051deef171850b00ac2347dd336f71915dd21f45cc03439fbcdbaffe261097d53cc11fa0db75b1e3b21ba667f26c08db7125b1c6264973de SHA512 6fd1338e4cbe915cb01fcc5e05e7e0c051868701eeb27f03577a7cfdd59057493922b36e2308f7050608a851112d4d24cff2826456160ac8930fe961640e809b DIST async-broadcast-0.5.1.crate 20134 BLAKE2B a45a7ff0b05eaab687f0912b2fdd0c3d9379402d5ccb8269568fbf77e235b42db0f741b4743438511fc00e7e1c6ec09c7b2f6e37b4b9a4df07846ae582e9c812 SHA512 48de28fad3fa8258b61f1adc0f13e69698f0fc3e11c68eb6b6d2df11784dc5c1e09f6f2c03dd12679d9888171b87cff3362ee06b910833e55d278738ab7508ae DIST async-io-1.13.0.crate 37191 BLAKE2B ec27c5a49550f9a2cda66df0a6c54e5a64191e6c1ebade4e47a3164cd04fe7fff60d225788983f55e47a785dd57c74a22f2a3455349d2d451646e4d0e7f4ffcb SHA512 b37a13fdb1d29e2e8852ab6f24589718a88aa39bf532145ae7541d61c3f49f731f890764dd945845eef6c8b5af1042bac2c04cdabc00b36dc4350fa1c62ce54e @@ -17,29 +18,28 @@ DIST base64-0.13.1.crate 61002 BLAKE2B 3b3a5b26e2ef18e9b4f1ede72b1bd160a14947518 DIST base64-0.21.0.crate 72180 BLAKE2B c7aeaf671bdeac67703f9c4ee1be003eb8d6f46fbaa0adf61a4da304458742938db04291d5f626115e3fcc901eb3abb3f9baf8247f6344b4d49f60a200fc6fd2 SHA512 60bcc157c6449a2160e083611e6d53e07bbff7db8cd550d9056cb804e99e990d4a20092ba4347306a3c6b6c42474a06d92cb3895125c50cef9b74cd3cbd83a2f DIST bitflags-1.3.2.crate 23021 BLAKE2B eb990bb27b2bdeb66fd7212ce582cb36e1c616debbac85df642d0c82b25439e6bf9b1e811fac76b59e58ea3c1bbea6170d03a61e8f9a395e4334a0e2e2987eda SHA512 3c698f757b5cc62f815f9a1cce365c3d2dd88e4db71f331dff8bba86c2865f755b81cb4c9bfc59bd86b7643b0943f9e09a7c4f8ad75eb2ab0e714803d0129f62 DIST block-buffer-0.10.4.crate 10538 BLAKE2B d819c4f9c4be85868e8b105fb7e479d2e58d3ed85c3339bd677a3e111f85cb1ff624a54d7802ab79a6e1d9221115f66388568340480fe83eae1cb448f19f5b11 SHA512 b7d436d8e627e16e6ddc300ee8f706a6cef28ff6f09eff848eedee46f84bdcd03601303c92ab8996042e55922866a59259948177c0a4496eed723523e77f6fdb -DIST bumpalo-3.12.0.crate 81604 BLAKE2B 2370094f0c23a3e9b75c8e523e54637189543d9df90ae7ddc349d316054d3d1abd1319e51cf1578f1630be0673fd7f65d130469b2729aa32617372e8bc5dd5f7 SHA512 37f2228f251340e82c27f2b34da2af6eb520077b3809331547cbe4887c0b4791b1a7d75a017decccef162cd02a088d504214b7a44b484a7d93eb6a278b329ee4 +DIST bumpalo-3.12.1.crate 81653 BLAKE2B 26ca1df07c8f55a4362e844bb80cabf1efb6627ed0f489f280178e03d0c8bb600303529c05e5c2a9bab79115510eddddf446f4baa717352babd68b6a3200b7bb SHA512 1f57591bddd5d4c856d5ad1ae71f9306d8c37681a72172b6be35b4d6fffa7f30b086d88b37d8f512e2256cb7d37dc992ee83bd071e4ff84182e5e226dc92e4bd DIST byteorder-1.4.3.crate 22512 BLAKE2B d39c546ba7346df315297fc53da4bfc77ecb1f38567ddb788549ee31cae2719a8bc0b7d1f1705abb3cff033aa57af004987d90748f5a31765273b3223a011c0d SHA512 8c8000eb8ecf40351c9ce36a3a8acd7a02f81786d1b11aab85adfeffa0f2267ed74df29b2ca5d1d38128484d1d3cad2b673aa0d0441dcd0620dfd3934bb888fa DIST bytes-1.4.0.crate 58080 BLAKE2B 99a9d343424e04649bd209bf2a6c3a089a6cc9fdb799968f8c3a711189328e4499df2e09cc6a2a8ce05d2cc668149b364cf30cb3b09e96e21d50a39519c2f49f SHA512 502c63b9fdcd36ed28ede55a63cd359dc7b28658ecd43020511d17d48d7c34e45aa8ff7e4b17770f12197451040c2b724fe68d2aa3ab4f81c9171d052f2aa000 -DIST calibright-0.1.2.crate 8770 BLAKE2B d2874d74c3b20db746d5a4adb6f6b115640e336b6033242285aa915a2e3ff85a8c1d3f50f7897396cd78533c5dbb311820d86388018c116c7c6e9e345b835f28 SHA512 772eb81e7ddda288dc749eefeaaebe6899e05f9e9c28a8c06a99b9cff9a5cdf9f9145a2cfbfd60a5f30d0dd94868db65c6515f25555008019fc29a1c50ce9b5d +DIST calibright-0.1.3.crate 8764 BLAKE2B a7694b47d35720491420c6dfd05557f4acd5aa986fef78e3f76e99162007ba90fd7b708623bf0ba78421cbd17fc4d0e1c07bf4624e317fb66cf5536e89f4b264 SHA512 1be554fe9a7494cee028e610e819571e23fa1543ce7ab55190187de714f01b4e36455174b82424d6e947f167519108eda0a59e6cfde8b2f8e6b143d6ba3aa479 DIST cc-1.0.79.crate 62624 BLAKE2B b3cbed3bd6fcac1c6ea258ec96cd107f859947a35dc89c3dc8f314741b0f668e61518f896ec32ce10c9a7eb20dd350bc177a71810d53ebea59fda062ed9d27db SHA512 cbf0a25f3a23fc540e9d638fabc23f761f1c240ebb4814e761e90437d71fc559cd155768ab9e78fc192220d8a605c66c3af342ed736b719181656170b98d7bf5 DIST cfg-if-1.0.0.crate 7934 BLAKE2B e99a5589c11d79d77a4537b34ce0a45d37b981c123b79b807cea836c89fc3926d693458893baca2882448d3d44e3f64e06141f6d916b748daa10b8cc1ae16d1b SHA512 0fb16a8882fd30e86b62c5143b1cb18ab564e84e75bd1f28fd12f24ffdc4a42e0d2e012a99abb606c12efe3c11061ff5bf8e24ab053e550ae083f7d90f6576ff DIST charset-0.1.3.crate 14330 BLAKE2B 928771e37cc4f86f49cf09b671cc016cb662275799f34159dff9c22ca61a71d722f199ed36b2fadebde30b5763cc01d87bd6f27e70ff8ad357df10d6ddb652a8 SHA512 61166acd4fba3330c4c71e101e1993717baa448d91dd9773f7d58ac504fa4025322560ce82bd7de1b5935443f96ba84691658e5c982192196b325f52dc48f4b1 DIST chrono-0.4.24.crate 191330 BLAKE2B 492a5f1a458db9d6eaf244ac6ee750fee5b4e2586b7c675f87f2515143080774f13f9c163bcfc84b08ec70b90c7fab2ffa438f9b2b8b4ec1e691fbf9a104ad50 SHA512 1a9121870aa4d76448a1b118a2e135a145a55c7784c4f5a4f25732f8597b8655f32cbce174bdd65c2dc7b17dcc3a608454d0e3dc29b86338e42a839f8be1e4fd -DIST chrono-tz-0.8.1.crate 602103 BLAKE2B 8adedb6da1299167da33a0bfce18470bc0f9bcd359526d7bc9aaeb85780423af1fd0ffd93e5e3a38d2ef6f51b22f884918e83639ed4c1a1d760847dc8a431da1 SHA512 a916962f44dbe88591ab9f523f51fd6412444e30edcf81ddf7dde16a9b71de941f9cd16332ce62d8168e606c7589171c968c727161bdeac8b87d2480e4874b66 +DIST chrono-tz-0.8.2.crate 612898 BLAKE2B f5fa9d4bedbe64609c00988dc5c508ba354c8b5883e706f06906085128c4c2ca7d16ee90b3cc649eed802b8dd8a04503f6a47f82e7740bf0108ca9cd160beb02 SHA512 0bad5d1de19151ce0cca5949977fcb69a7a405bde3a00172c361cd64939e149bf92293628ba98c117e35c5316d62dd33120be49c96a37fb68b2496cd61d76900 DIST chrono-tz-build-0.1.0.crate 5710 BLAKE2B b3c67b4dd193cb3994221a0b48dc75d0ceafed63ab227bfc0e8940d440e18e9dd0316f708ddca2a588965716b3e13cfe0a37288523209af6f7353d372fc19fdf SHA512 d9fdf5c71aa53392b743986477a0cb8ef34e82ce0c3ce500309b6e5988ce231bac63bd4d8cb52eee22f0ca0bf7f0d9600d1e9a69119d32725044b83ba4aa5d88 -DIST clap-4.2.1.crate 53500 BLAKE2B 9c088b22612441cb33a501e589de09594ac2e19632534e57abbd6ae2d6f7b52afd6e720e2104668c7dc3b82d5e1fdd0128c736c7e6825f1eb3be2fee6f677833 SHA512 4d4d78e050fd6c6b9d80a417fa10ac6026787c529717e09b8dbc80cfde365eb9280aef4859ddd77c723ad50d5d0732c4e3b9abff9a4a4f184dce02de9e803f0f -DIST clap_builder-4.2.1.crate 158784 BLAKE2B 7a9508e256e1fe4fd9f1a9f7e5fc5a6b28902cd2e6ddbb0d6e90561247073c3ddf19885ee1fc0903382f4a108b2602271530bb6384c4ba17b5f4d92c47f2a84a SHA512 e3282e0041d4c38105b643de6dd9561b1a4126fa45d1de2fd7cdb18ef9681f93adfe9f073b50272212e95cf906e31fc38734e254eea1fbf2b896a467b50216a8 +DIST clap-4.2.4.crate 54031 BLAKE2B 1affbb19f1f5f08585d0190b832be012e782442e62427befa35a29fd66391fcf317ed3549e8780dd502f9b3b564b287b7b16d0bf0a5d80f7ffe80fb4cc15926a SHA512 cc73c65d59fca7fc2ae7b40f9f9f9737a3fbf352338d23cff8e8f97f121f98585adfa795f7084523ee1c5bbaa46ffba7abd7b9dcb9b43c39c6b1780030f6768c +DIST clap_builder-4.2.4.crate 161926 BLAKE2B 1e56748998949d0eaa221f8ff85f53add990826fb5a748f735af4b23e682b02df84e3d56b1611998350fcdc7815b4234a8d5b8f2346d18d74d79f3e31ef7d272 SHA512 a27e626ac84d4630bcfd2518981130108c0000dd672499bfcad88d5bbd933feae91117c656dc106c6fa5010b7f1fdab9b7ac4a548a76c29aedbb79067ed917f5 DIST clap_derive-4.2.0.crate 28953 BLAKE2B ba1a598c4febaa3a2eb41fa4f0b78b79c1f0fa9e04b488c770a59fe450e057648941292f54f799766d54f979f8e0f38c145721b410a6da9cd9eb4bf3dd1a81d0 SHA512 99f509007248bef618550ecb49f77bcf8efedd0067333e97e72d4d3e05db08db8ba16f353a28a53c5719f5c6f367b8e085536492bf38b46e8d3cb9dfcd78ea1f DIST clap_lex-0.4.1.crate 12122 BLAKE2B b06dae9978865bdc63dcac66358f7d63f16c736a9b9cddd3b25a89c8d18d5648d107c2ebc3cf756f9e20af723381f574532add12ad4454312ea3379efd92f68c SHA512 012f5b3bfd252a2278a4089bf05340b03f73866c18612b2a4572a81b3182c00bf13dcf47e61fff49eb9fb2e091602999e6c27dee275c7de7559b27955ad082d9 DIST clap_mangen-0.2.10.crate 14945 BLAKE2B 35a4154a2da13b7c32d1ca892d822a400180d6511e0c49d623e1df424f5a2b7f62e51dbb1e076fc1fddfc55df0fba2036cdc374d698c3d554184a6b89fcb7b79 SHA512 afe63fd15c4a4c55420559ed5b6166a9b4a90dc74ac2a2e87c6574cc735f8aeba31ad7b8c704cd5bac338c69a22d01eed1d274befe056c1da36c78098946452b DIST codespan-reporting-0.11.1.crate 48963 BLAKE2B 39deb717a853ffbe3585e20a67fd7a75b62e2d796a66b5004876501fd7476acde9f126804f2ef6220ebab66821a3ccf058d544d689a2705eae44285f34b510cb SHA512 0869789f5c50d3523d3ee16a8fe64756498a13704efbe82bb0845eaa87c7b6b1d075b3b6b80567cd9fce6cb09c5179e9c07e485fd17ce56c8139ade0f8bc6844 -DIST concolor-override-1.0.0.crate 6570 BLAKE2B bdb82a18c4fed55ce3eb02712da64a82ebea1789ab627ef99c5cdd989838408d5a540aa19380e7739fda5672814ec854b191b4a6f1bfa90cbeec594a86a0d201 SHA512 c49a96db1507b87d518fcd275ef7b4c563a4acab43a37a427fd52f844f03a5e051eaf9599b5a531f2b47555cb27e5d300b7925e97efb3450db3b3c1f4cf3d8ee -DIST concolor-query-0.3.3.crate 8337 BLAKE2B 0d4069a63d79dbf76fb56ab1aeb9992e2c32a2cfdcb02d8304b55c8fb0dd1df315ba4bbe7d7a3d5f6e6f9c5654c1165b99113ffde30eadb5e84b31d15ebab957 SHA512 6c039db27978b809d2eaccb86261532a46ebab3677e6c3963cae5a6cc2920021cfd097bf622fd6eaf2b1fb3c5ee5f07fa79eeff0682f2b70e739fc0d062505e9 -DIST concurrent-queue-2.1.0.crate 19476 BLAKE2B b3465c7c5a1dc0d3d6ad0cd91c489076da9cd2460013f524ae673676e39a6186070c3a868ab5c0f2737f612b388ab9220964ea2f2ccde5b74ecfc3977a9aa87b SHA512 ee50e3be2f195977340d94f4249086dd87357e533b12a46200cc26004b7bc22cdc16608453c4f8c1ae332c1f6060b7c861d1a350f9c7223275e7dce3301f5b65 +DIST colorchoice-1.0.0.crate 6857 BLAKE2B a0818be1299717461ffc1bcfb6fc53a0b3b645aa8c45fb72e045cf2d876fa207948610e58d6a837aad24838ea9616e80b0558ca3eae03fdf9bc4c03a8e5ba52f SHA512 53363f2889cd8e8a3b3ed10c48356896c0daa72f3c12c9c7804707ab0dbc07c0e34ef52fa4f0fb1647311ce5913168c1bf62c2407ff86a33f765a9e6fccad551 +DIST concurrent-queue-2.2.0.crate 19971 BLAKE2B 352eac954937dcdaf85de274125910abb9d338fc3b173ee2f3b800881209f9ab024428a615f2be15eef7112167cebdafd8d5d527e19d13cbeb412e0695337426 SHA512 0e5f69c188cda8e54a7236dddb3a92e929b906c3bbac3d3988b7b5a101001a21cf48ea3a4fa9abd52f395d20e2c04f822c39ae2ca25b287fbe823d5e665ae401 DIST convert_case-0.6.0.crate 18675 BLAKE2B 5e5ab159a61e68b801f1c95dc5336f3af7ffe6fee212c8ffb9905af1121f0b272b234b4e70a30f29f5ed24f4825ccfb59722057b69549fec0fc3472857ee1ce9 SHA512 3b17449195a9a36e3965db89eeb967979c192ad7743217ea08e8c8b91ecae1ac1674362d05dc6f32f1f361fface3f783398285bb78060403f65a777a9d29adf2 DIST core-foundation-0.9.3.crate 27059 BLAKE2B d94fec51b1b1055c285609f4bba45c5169a8cc775e251eac7fbf0da7ef894e1be9ca9f4236b82b67be0610bdf811366e0c6fd3cdb671a1e83c49717e2c5b2d03 SHA512 de07967c4f5e2d2e730b6f21984c228dad2cb2f55187f13074a2200f4ce9f906763ee818267a9c67ea560229db7363473b230670a6dbd224fc335f32ba03d072 DIST core-foundation-sys-0.8.4.crate 17725 BLAKE2B 8afe47838dc91c8848c0d6a96a604149e5f0762228dbc10c17b85e4e9cd2c3928712bd0b28e1071f5fd6fd76d4ef972cb86c6c929246fb6e84577776933a8ac7 SHA512 15da472316d6decc213e4e5f08ecd22a108ebefe427b890741de4f9199614f19123e64329da76de5e8b4c9ff74ffc31738fd929acc1460fc757b4aa1fd3fdbb6 -DIST cpufeatures-0.2.6.crate 11467 BLAKE2B 3c04a3b912e7f65d6da4b2e47029d47cd6d84383fe49bbfb88aee58bb2419f0805a0fc550a104233980a4a38d94ab545df76db8127873cf10780bf15019896ad SHA512 2b3ff21b38f61966ec63b56030c057a4eb3ce261c739c6bc6349dc0da6f6b31d06393db792696cce79950c68576bdc0ef2bf1c2ee0f456eae165af40f22c5dcd +DIST cpufeatures-0.2.7.crate 11563 BLAKE2B 917f8ce2675519b4d5d89fe09b02e147f00a915d195158a690b292376bcc2937dee8f76778506556ecde0187c74ca8c046973f44e1f34e4c8bb6809d2d4347b7 SHA512 46988efd895b88751200dd9693a1040f698c8b2ecd5d3d4ae1d8055e719aff262afea764083dabf1d8202a51e7e16b4f51adcffc8a2424c841b58840b6669490 DIST crossbeam-channel-0.5.8.crate 90455 BLAKE2B 017132056f1b40e55fbc7a09b75509d72b0a6123a0e5ea5d6104fe822f73b3ccce670d711d3b84b5ce743dcab5f10445297a6701b71213b77c0d56e2c3fd7160 SHA512 47677d6fe63050c51393e4a0537a3c65d7055c9eae118ebe60c5d716b4f47f23c2b1947b1e1b66bfb34a57c4db3a44631d323e996dd545565fe4f58c25863ff4 DIST crossbeam-utils-0.8.15.crate 42326 BLAKE2B 23e6bd2a6535c6fccf7b7d17487fdd4095c92a3f3ae383a72dd6d90c1c49c2ec8d96dc01a94c7127b2681bfaef843585b3ae8665ecbc43b2e7db8434e31c6c8b SHA512 adb9ce1886396bc637299cb8122d102bcc9e561f25d67ef73e98c9ed8a8b13b78bc0f5bbacab19d015e1a7690bc0201f08b3d8e82393ec347e7f2933eb622533 DIST crypto-common-0.1.6.crate 8760 BLAKE2B f2422bfb89c15d47a8f91c8f6695e05eb56990a922e3cdf3d426044736f9932324c0d899a151a6df4d6683e6a6b21659c657d3988734014c02cd854bb4b924e7 SHA512 471dbc43f517089d2cfe0868e29510c6ca579875b3bb5d013c70796db969b609b6c4bb35c9a07b9a2917012dc5708b717d48e317a20038adbe7e7039bf3ada6f @@ -56,20 +56,18 @@ DIST darling_macro-0.14.4.crate 1896 BLAKE2B e537b384c4c05103a962ff03be3da6c6c31 DIST data-encoding-2.3.3.crate 19117 BLAKE2B d77962932be4aefd5855db78379b56a9fdeb784a9916a3e4d0bf3b085a8b3286396122066ad875395bf3be3fe026422fdf5554ca67e0f1b53d9fba36c11c14cb SHA512 5922cdfaaa9b4c3b2faa68e86018653dac7bccef3f2a1e16f6c599dc8c3e98a644f29c3a9082234d3a58f9feb0eb54842e57ab62ceadcf287c43f7eed1906d93 DIST derivative-2.2.0.crate 48076 BLAKE2B 56d27e27493c3b818ad45703efda607a0a0d9a48b0d43785b6a013443b8b964b67bb5b5284d242358415c5fb81b86b02079ee7c0595ec07bc658240eb114b887 SHA512 3c65ecdabd2dc202be3d83b06f96b6f68504fe542ede7e2285093c6d360a33ec76a3787c436c6e5ff8f59d430436a4b8ce2f908cf7b2b08cd8b0045de4e5d1da DIST digest-0.10.6.crate 19527 BLAKE2B 402009105a6ac055be062769dd4f162aabb977b9afe29f451eeb3e6b5dd1a579c371c5ec996b9c1bdba3b4ded83830ed2e1934a0505480bffba1e0d16775a8f7 SHA512 21d3c1dc64e640300c51e8a009af464d6e3cd2b10aa67c87a038165c11409d6e5faad1967236724a9a4cab8fdd88826cac1db4798245fd53ac2ff1a9b2b68b76 -DIST dirs-4.0.0.crate 12503 BLAKE2B 02c0b9b68d09ca713e365410c72d761de5adb87a0fc5176c4f980050198cc05078fa67b43a8af1b16e80e7edf41a428dbe55807463bab59f3fade09b53d7399e SHA512 be582e5045f1916fb6b918c8e8c5907b4b663534025e4227ea4828e2aa9fe7fbcb3c48f1f0d08d163ba684aa4404076ac210e7f14766a09b9ed89a2825121b3b DIST dirs-5.0.0.crate 12235 BLAKE2B 532f66428db2d362ef80cf4379b228e51cd13763a91e8dac493db0dfe1e1d83aa91885c2dcdbc30ef1fbc83169754dcd0201595b227bd73503f403cfa256d0bf SHA512 3f89ac21dc875300ae7a6fd254f5bf0a3dd83d2fe144ecd890bc575ec01a2e69d9343b99905d7002321f185f3826ea9b3174a8800466c3d62fa62ca11fbab2cd -DIST dirs-sys-0.3.7.crate 10597 BLAKE2B bbeadbfe15d9b92e4057cb600f1957e066e295e0208e1645ee49fa76c55c45e273ae5b87337eeb398dd3ef3adf0a5584087b8fc0fb780aa23c6d9392029d6581 SHA512 e630964e4c452950a475c10a490b49b2979dd7dfda48172b905cc789153ae4a0ba2d7d91f690705cbfff23737c4b4a339eb0c49e922efd7d68a92fe6368a929f DIST dirs-sys-0.4.0.crate 10509 BLAKE2B d348905d87d802b3c93ed872c2cfc9319676076417060fa35d09f66855666c299ee3b2317485382a560118a1e55040e5b1baf34bdbe6326661fda6f445c158bc SHA512 5d8b6fdacbd817eed6477a53f8a145901e02cca3ba80788206b50f1cdcb499e9e9228584f545a0000f36a26412ce393b1b8dd2ef385243925d63145b6555c573 DIST either-1.8.1.crate 16027 BLAKE2B 2fad54b5f20bb8540fff5959ca7b2f9021c814ee610895d770f7081b12ebe2c93ce754c462df9d81824d479ca75e07f4a9e398c07a655f4abe2740b9c9de9c62 SHA512 5e4da301a605e0bc1ee3a269fe449aef044df05b5e833940c7f79bed61bbff4fc248e9c82b45dab92b2688d578ada000b271aaf67f2f4f7c82b35f05663cfe7e DIST encoding_rs-0.8.32.crate 1370046 BLAKE2B ca9c15eb521434daef94de5eecefb487e2b4053ac002f0fa24e3ad101b89fd4a19cbc05b2e52a85599a45d50869a5671dca0786254138b7a5e9d5dddd2be712e SHA512 8a695aedf388dc90b039277fb8a88cd0fe157002554ef478b820e962b6fb19f3fecd5940d0720cc820d07c77e64f7415271a119c87b72c740e6e370ee8cc418a -DIST enumflags2-0.7.6.crate 15065 BLAKE2B 6c998afe29203d927d3851ee88e7738501c36a722a523d091db72a059de04d432d3f7dd21ef97c67c3e6e37cb6806a31a57861e48cb86b7347111afd19d51479 SHA512 bffe4fd9e2165873f1a07e1e53ff2b21735d611f7e6033094a18f5ef300068955d8eb03ad26ec628a1a0f0335b087401baeac10560af5b45770b5ccff046e9a6 -DIST enumflags2_derive-0.7.6.crate 7898 BLAKE2B 12a6826e1a42de200362b181b48bedc5dd5a300c254f25b0611531916fb5e763addd1f49f1e8f72d84c0fb96681adb23edc14baf9e515aba52c7e74c4ecd3fb4 SHA512 836a9299d05bc0dfcea619aacddd0e476624529154ffc411aade65231902a703b6cabcbc22fb7bfc61baf05ae21880903b87df960fad8f16c731dfc41b95643f +DIST enumflags2-0.7.7.crate 15090 BLAKE2B 6533e0aadd1a85b410d14f6dfa140c33ad58e2e8cee7c446b4c27f7cf567f33f5f788da4c1f0fd6cc5c3d210dd6f9626434105b1cbd7275e2fbd86a9a073e392 SHA512 2519a25cad271d86b3195b29b0b75bc8792ef08816881aa9f3b403d7c63e6bc69b1b0d4fd565a62fdef3ee0f387157e331f8b3a17093e4374565125b1c9f080f +DIST enumflags2_derive-0.7.7.crate 7903 BLAKE2B 0e8f4ad8558254a6e532868608c23f70f63abee3708ad7fd5c41c8791c33a8790c3fe2eeeed722d207fb75721cc37773b64baf2ce0a406dd465c016092e6caf2 SHA512 f4b0c3b1a731e83c7cf27765392baafb0f27555c0ab708a7a430f349c520df7333d4d926c348a15339b082c6d0335491fac41eba3e61d42c3522717acbf05df5 DIST env_logger-0.10.0.crate 36574 BLAKE2B d2f387682059fe9b4566ab995be449c58c57b8df5e5d8bd5ffd153aec1648721d8a9606d3f9aa034263651f5182043e08b6cc08d2d29d0a10f6cc61df9949a06 SHA512 4dd02f9d333a1f15657167ef4bd403eda5426cad17e0a4a43fa20cc65449345eb4d3fae2d6b10a3480016b9e23497fac13ed7e70b40c9450ef430be9f910d3e4 -DIST errno-0.3.0.crate 10268 BLAKE2B b5afcebe6fa435eb67407c063c7d37f0303e7a6770edeafb1b87f36b7d5773c28c8b4b3c970e12f42788a3409f7442b23f015b2e6a5465ea4c6b0e9b9fe048b6 SHA512 8b0626190d965306ddd84383b6b5ab529502eddf3859f7b480f6864e83310248b6044485e000bece8b95ef24d2f1bfffad6c2eeebd177f3a10e819b29e5e6f5b +DIST errno-0.3.1.crate 10348 BLAKE2B 72831d0b69f95884a69918249cc0e814eb5eade3205331bec6d2021f8b01a42c4c9b494f2717033d65a4c5230c8490b6ce250d349c1e8e177b20e7e84a860020 SHA512 00d64157d066f1e7601c522c0f4e777eb662ca5cce64682f616de0734857765c343396f7161ac2908c3db0c474995ae157bfe9d8a9880743724d9bd428dfdf54 DIST errno-dragonfly-0.1.2.crate 1810 BLAKE2B 781fc26dce5c33d83b9a1fd9be2b2ce9ac2559aaa858957ba6777e143b1e44cdfee48e1b47e3c91a95075a51921d1a421d0b45eb3d8de827cf4dd0ad744a7d8c SHA512 f853f1e1b8dd0f359a8f9a0399b3384c1103cd090d96e2b2204f91a40d40a9eb99383d4aa6a11e5470c51557afacf452d4be2049600d4235d27f59870fa3b916 DIST event-listener-2.5.3.crate 15392 BLAKE2B c56ed5eafa64014141e869dcf952e86f755eb35ed1722f8139260cb502ba226351ed1bea301618e94c9ca7f3309747057eb5f7d7986cfcdb7f6b79d13d52b439 SHA512 ddd67c1139ffe2aba95d763b73db0e2a9985dd2e57cf8f72030047d53d46d833df4b4192730cf0af4e060ce52e4f2df23aab6509abb94a6cd02e0d8cc3559d22 DIST fastrand-1.9.0.crate 11910 BLAKE2B 570c66ec1d4ace08b9790299759e3b6f0394aca52c4ec2e02258229c198846cba7c0627807548bac3ef1f86c7e512c4bd105f1e18e35ac0ea6934f76a6838e1f SHA512 321567b5fad8552c0efc4393b1e77d1bce288b0a88c475d432f79e91b3457ee6eb5db9e4d65ac6381b9990c9916f4651b6a76250df44d51ea3e25bd8184bdc52 -DIST filetime-0.2.20.crate 15027 BLAKE2B 393bf9696992ebd17a8319f23d660a8c841b536109d8216103ba163ef50c78dafe35f640c8996a707a43fc523d24becf38ced2cada9cf072445b13bc3138ae38 SHA512 71b2705acb0aed833b8c5da8f07384aeb0e290be78c68f4bfc044bcb7e8285740186b74b0e37c619d93bc05b9022a83cb0edb75c688b106cdc844f843d0e8a0d +DIST filetime-0.2.21.crate 15026 BLAKE2B 069f38a2c3c25c53b288e3af7372cc314f7b5aa7a094f88d231cbd9fcf935f0bd17c72cdf9c038bc2e78a35e6cb768a66f659aa535c72b7fca5452bb28a1fa99 SHA512 5adbeadc9b93811aac7e8a91b2999006e5022689c7772fc2f231d905b8c1210e1b1e14eee327a081eb70e351b3ba7f8973f492d99a138ce83eed45f7b4a8b013 DIST fnv-1.0.7.crate 11266 BLAKE2B 81da85889c91b6567e0f555e37dd915f1bd919719d1ca10c31a6861d7aec29a49ae9c1e8bc500791bf9d6b8dbb318c096d04872c5872a4b1f7d45fbd8e12842d SHA512 2195a4b34a78e2dd9838caf0ee556bf87cbb4a8ef5505aac663b614eb59dcfc0c40f432463ede41ecca57bfe7711f72673d39a85fe03d426f1324097d5628334 DIST foreign-types-0.3.2.crate 7504 BLAKE2B 520818b702d990d296ecd31a8646850202509ccfa18edd0e1b260289619a6c351e758f317ec0824bd76eccb209b6f087057c25f1bd01a47897715013dd834867 SHA512 bf27b8243ed482c202d120383374f19ff09422535e24b9c1aebccc66529bf300ca17b8bbc76d67f98ac092e614497afe3add9dc68aa69c93074df05762f91232 DIST foreign-types-shared-0.1.1.crate 5672 BLAKE2B d2e42e04b6657e7a69fe0bd20c672176629c743e49a55fd007bb30e289710b70045d445ae9cae0eeaa747ee708c90e8abd9b5fc39bad8ec0666befe1b696d4f1 SHA512 bafdb2143e136fb0818e2ffd90b5c862b7181647d6568947d4e4531012bbf7a57b597221ec7056c1b562dfc0c3b5dead26d1a4111ebc15e7863737a873518a4a @@ -81,14 +79,14 @@ DIST futures-channel-0.3.28.crate 32281 BLAKE2B 128709ed9c3f275ee9365135426b626d DIST futures-core-0.3.28.crate 14780 BLAKE2B 551327876d54a6ccd97382679d61afb3e344f7c8e26813ac85779a57850cbb1f54041c82d71a7bfe4a30d1c8d9aeb560d8d4bf5babe7010fb7cf3c36c8ebf3cf SHA512 a21900a68f1a9232c245b160e95896b109315f10719147b4f104e11edb5b59c862555e07aee37a7d4fbedf0f09a02d4ed329f92fa1ad4679db1d7c78ae2865e0 DIST futures-executor-0.3.28.crate 17743 BLAKE2B b192025f0838c924783090e7b0bd7806edae0502172e5f961d4cab5a4a5c074050ab6a707a50baa0ac2f505deb1e3ace4259349570beab0bff34b7bf6849e9ef SHA512 1404717a512f1968e3ac6c53bb6c428fa049b0f6c61565ddc4859407cf16c56735cddf7a2931b2816c6c8dc8809f76e7f98ff05d4f80e4567488c2aa7b424a50 DIST futures-io-0.3.28.crate 8910 BLAKE2B 5554e9dd8548be47e7195ae8b223288cc2e765dc9feb703092972ec9e19ade825bc9d7093625a77c7dd2213df59e2c70ada84a84446b5a940c3e62daeb9dd57d SHA512 805177f2677a09d94ce5f010af9244e0e0dc285937e355a836179297c4c912a762f8d96bce57af388502810dcb67a772b7a522f5c6b21be3aa4b7ee46372d402 -DIST futures-lite-1.12.0.crate 36032 BLAKE2B 16cd92362ddb217fd3c316f1104635b086abbf3b482b3381d62e3b5ddbd20122d1dadb48c83d3022db080d05352ee5a40f33978529bac3eb182b875f45cd132d SHA512 3d26148ed1c87926de51412a8d08e0619c64b85b610a74d6f61fcc1972dc0cbedb04c5824fcb4ef0a920c557ac81a0b2b4403ddb1c01e11648694ae56c28d72a +DIST futures-lite-1.13.0.crate 37058 BLAKE2B e1151b6263adfc96494ced26c377eb6582c4529f1c6347c1f920623400d317f6466d11e03c1ed70dd4172c57340b13b1fb1cfceedf430e3b95879bfa120d8e59 SHA512 2c007c62294c86108eba30a850a341e8fb369892bcbacfcd4b7ca39f949bc9a20624c3bb21630706d8240e27dcc402cec542480dbae8867ff933375e4be15fef DIST futures-sink-0.3.28.crate 7852 BLAKE2B 752286cb15ff37e9bf4c6cc80c8ebfeb229dbaa4e8aea6fa505f1e145e5dec99c4818c8e7ba2bd8a03898350e05bc124a5ad83e28989e282dbc132ed13e7fbf3 SHA512 e3535aaffa42215448d78adcba72f1dc3131598169dbcc8b52b82fe3e74f4b0d5631ab3dd3ac5d4315be890b94d6fd8f53de274ee4815f9abb27d40982c96c07 DIST futures-task-0.3.28.crate 11848 BLAKE2B 79cd7b01d24a5274b0e564edf0f5d041414d9dee02c503f2303958e679db0db3c652c64352052d20bbad7bace078b553f77920e2ae21a948a1c884eeecc663ab SHA512 198f3efa51b1a8492a4151a6e4ef6e7abd09f2f537f5ffc2b8f2cf739718fb9714718226ee1cde7a58d41a2e623445ae64013f02e7f00489320c06292465fa82 DIST futures-util-0.3.28.crate 158510 BLAKE2B 0721356a4947b39cd066dc8a88afa7686b832be269295af3ebff8cd74b42dffe5484399f66e3e11e2b54c2b8e04ee002a9d507eeb5259fbdc00b226e0f94b175 SHA512 0c7dd3701b7ab0a443a56aa64e6d9b6ba7bb9ccba4c05dfe17608df3e2bed1c2fa460a0cb4abb9fb25289d3a776128ffcc4fced75ca73a65d40b18ee2e9a46e4 DIST generic-array-0.14.7.crate 15950 BLAKE2B e74c785e3127095625951da192a018281ea9976aaeb11019f9088c3f27748c5fed1ef25d577150864486dc48b5138d6892e42f99979339f711a66fc70756c82b SHA512 363a7b04e4102f9ca63d429721c1ada6272be6bf0a2e97da681faf76381f73f0e3acb86623b9ce2dae441de9fda704088391779b9769ec02b3c8c9f9f35f897d DIST gethostname-0.2.3.crate 8174 BLAKE2B a7579a33f8180729787d2489f0936191a911b2ab085d151e6bf6ff8dae1bda0d6707a69c1d6ba829b2b087042bdb6eb676b77fd722a61423eeb37fcb30554f81 SHA512 c3ce5187057ea09def22331d2f67a97cb53759e8c45179687a8bf9c67d16fac5f58d6c1e553b4f74b702bae0baa7c70eb5ed71f99ded3d508338a4b1e9f115fa -DIST getrandom-0.2.8.crate 30553 BLAKE2B 30211bc6a8ceb5ba765cbf068405cfc08842b2521c5850647971f4cb4bc9a5b0a9195ccfbc1461de019eeb7744ee69f934922ff21677259d7b815800516df4dc SHA512 cd7aea29f79a33a0de2a52a0a82f2b57ea8f27908ccfe00a5f42248766df88b225023603ec56d6fc634ef9c1eb67ad0135c90d4c695f6f659db0767e7fda44c5 -DIST h2-0.3.16.crate 162883 BLAKE2B 2465ba9f5c34313c7b07258bfb1eafd9b14f09340ab4b0d2189cd2404656088b6ae0a048ff9216adaa81bc32fbbb29f9167dfa6788021bf245850bc122dce17c SHA512 2a34cee510d39291cc8b5264a96201ae4cf78a1fa3a6f4cffbe42e0205315db5397668f7ce8a304c45c8ace51120037b567b5a40ca8451d5d2a87ad7e0fbc86e +DIST getrandom-0.2.9.crate 34457 BLAKE2B ccf7232ece1047000140ed6bb9a1afa784be87b5cf83e2f58dff77abcd79e34120b45336cb05e47fbfde36407957fe9da8b04971092ec05f67b321fde9142d29 SHA512 48e341125223945d1c02c4dfc54df303ae27d3ceca0d5a30b42065f5e40da600cb2010bb59e88af6b990d54b5eb4bf83ae5bbd27e13e56363f5f68be03ea9082 +DIST h2-0.3.18.crate 164556 BLAKE2B f56f1dd7b3beb8c9c0c5e6bb532ce84011b06a1886d112083aa4acfa2c036d4e00604fd55d863c0c52a4ac4fec2fe0e0d2e1a91a8e7e9b3ee703c1f4101f42ec SHA512 161701ee45571bde92a6c3899c8c161a00727d7963cc46aec2607ee057bd490240c6a6f476def9478b44ad4d7854591237d96240ca4d813d3650b07295f7be22 DIST hashbrown-0.12.3.crate 102968 BLAKE2B 492072f27eaec45abd2c5d7405c614c0c6a8221425e901bb6174bfa1688ee524408a618650126d6c683b7285b9bf0a21dcdbff7347e4d8f97bf7111defa1b7e5 SHA512 b3700fcd659a21a6b9b3777c18b37a83bf25542b4e8f2b963779a122f5d22e1742c064cfc03e649583e7dd5c6e90ca8407f8c51a0e8755f6a108682853022f76 DIST heck-0.4.1.crate 11567 BLAKE2B 520aeea740cfa30b0cca12f73594ffa655f32959673b1c9caaca1ea0162e455546ae3033881394c0ba0516bcd5c9a997da02162e1585522d665813b9096eabd9 SHA512 8c80e959d2f10a2893f9a71994720f90747742bb5b61fc0a539eed3ea5679b140c48fd7f7690d7122cd6af5f7f20a19d412e3569fe741c6d31f6b2ce1e0b80e8 DIST hermit-abi-0.2.6.crate 13027 BLAKE2B 4df5306639511a5f69594e903f8ce62482cbbfbfe272a91a12f407483dbac4e87c2d7e5668cc06ca5c0fc149ca93a3152fe6ad4bb3b96cacf56a22cb635e5b7f SHA512 bad8442bb822a9c99f6536db16523c80f5139af6a139bcc359c03725c59ff935816e2ecc5c491dc362ac75ab2dff41ab1e9dd29431f5e9a109b60eb9b7a8dc28 @@ -99,9 +97,9 @@ DIST http-body-0.4.5.crate 9242 BLAKE2B decb7a27f123c38afc1f7f36ad570bac6d5513e5 DIST httparse-1.8.0.crate 29954 BLAKE2B 82c48fdd6d28e94c42df180415ea3e30d471ace2fee09d7d8d33aff0a8e9a15d3029c90f3bb036b4f587c8902094a2ec21e4ca6ca7b654a82562bd84fe208ef9 SHA512 849159d9876e0474c71f3c7aa3a7271699b807b293832d88d52e4326ed410b25f9d7b9ad75a143a51fb5c8ea5016c2513348edbc050d3b62dc9a6737ae98ee8f DIST httpdate-1.0.2.crate 10673 BLAKE2B fbe2230262cd041e1ea8d6f9782376c25b0e841d711961464fd5cdae0e9effa33f50841d8adceb6b9753cdab911f3456c86bed0d2b8acc9be5f81da8e62a1b9c SHA512 4d650dbe7ec1d0f457bab71cd009fd92ee296fbe0a6b0c0ce4d71aa3bee720094a03968c08e542be60869350e05b4a1739542c6415e401407345f5643e15f8fd DIST humantime-2.1.0.crate 16749 BLAKE2B e2ae8325b037fb175b9200cc5c1944ce579056c6662cce307beb6701894552362a25e371aad65f8fb9384945b48815ca74bb8b544a32e0a5845b7edd30b918c9 SHA512 3bf29ddd1391d82897c22baa0ff3ed58ef6d6959859f1f8ed54d324caba5b6fb4422e56790511ce82f902cd11467f93c8ab7fc7b0e0bdb719308a4d0a446ae0c -DIST hyper-0.14.25.crate 195127 BLAKE2B c2d9b8ef0773e23b7b1746feb5eadc515c5ab63698670c5f0c3fb7de9b511f21ba310c04d66f236c8bdad9262af2e0c2a1b45d1092545276dfe04fc3ca157531 SHA512 abf06e17b1f6f5822c0447d160ab7d218124e27a1dce4b2264b5eb66a3642ce773ed060c59c784a20695c280c81cd4922b23930082945d46f3ac60e3a84965ee +DIST hyper-0.14.26.crate 195570 BLAKE2B 5a663a038d930c467fdfb2694eedd7f98e3ff994516102d5f6882407d3d6edc6f2195f905d707be1c644d7286f9f17188ae5f0fb02a2ff1a17d2621b0abef36e SHA512 7ffae47f5d4e98283202cf6dbb0ad8ffbcf9f0207c8e8aeece7432bda50f4e4d2b2fd97e85c89a42d23b9f607dae5c223d51f90b41b8b9b060bb84781ec0224b DIST hyper-tls-0.5.0.crate 13257 BLAKE2B 50cbe4ca7c1862fd3fff192de070341dd32bfb9f108b516e1e261ec8da7c4f7972b7b66e3d45c1497733a913b0281bef706994270ec8bd03eba7368612127aa4 SHA512 45dc16cc9ce48706e0b3575dca35ba1b6b3084dda8c2cc489d126e1c4f0bb96a9b2baa860d09f68c5e0a48c2a69e3eaf62f4f0406fffc4efefcd79d26c82896e -DIST i3status-rust-0.30.7.tar.gz 321344 BLAKE2B cf15c06f13f88372649d0750e8976a0887ce7af96879b66e0193e2cba13bd1da9f4975e20e05d05138433346cf63bf662bad0cea9a3f76ee1bf38d5f862d7db8 SHA512 3c7ba878759a8b3ced16cbe89e1ce09ee28dad4a74703c31879db16178eb1f271c326c9eb6589eb12f28ba95af6746ca3f2c8028951127865e73f4ff583a5430 +DIST i3status-rust-0.31.1.tar.gz 322153 BLAKE2B 15d0bd0176146febfff634c1d408d81f9e4ca01bca596d440e08f6ae6a43b85652c1f97d0d6834376c996e1eba800272ad14d912e3081b61dbadb5e6c2cf869f SHA512 ab7f53bbf2d863a949ed4cca0fb2f2813da986af9f47b18e8d38967d509219ee46397776e70533feb8360db1b89399feba571b26ab141d1bbb2610d94a815f31 DIST iana-time-zone-0.1.56.crate 19517 BLAKE2B 88a83a65b2e17afff6491953c1ec508168e3cb0d720992c7958aa98ffec263d3b32f4ad07664703b1e429d96faa211a50c557d5a1398a849c45ab9df796f8e4c SHA512 d1bc3ccc17c6d3abc44f8662a15b5c84f5381f90dceb5e14a826595706178ba0f8cbf7cfa86d3b7e967a51ef75a27cb868fda7a3531be9bd6e77e813580131e8 DIST iana-time-zone-haiku-0.1.1.crate 7200 BLAKE2B 9e748694423cadd6edebc1daef2aa4126904f5597202874d68066a15580cade77f48f1e6f2a77e17c7de0fae5204ef1262ad5b6f30bd95f4faec77748aa2ae0a SHA512 daa7570aaf5a07c990b07fdc2153b63d947598ed35aa9c35c4773772a6c67997143b120a18ff4c7c13474d296e81a92975ebf5b9aa9d204c1820e9629cb2e369 DIST ident_case-1.0.1.crate 3492 BLAKE2B bc79ebeefbb7e3ed1139e3f41d8d20fb175786bb123bdb9c1a92ea70effb4a0e5e798f24b068cd66a1bf20d53eea4bf24de495b5568c2d649ea804389a1327ab SHA512 81003a43f18da5997d644319274502e2066af9f9fd1400afda7cf2986b3ae0b7355b932302723cd3bda2d46b264340434d9279dea58425bad13785698d5808a9 @@ -113,19 +111,19 @@ DIST inotify-sys-0.1.5.crate 6965 BLAKE2B d70124656ce3e6f5ea3f430e8e7100d0691003 DIST instant-0.1.12.crate 6128 BLAKE2B 728923f757c1ee4e4a7afb90e460eed81392068961240a538e5c6468e15a0b6491f590fb5f6cc46e6d78901ca232351f65abb9f2f230d8f4983c5e58c4011902 SHA512 fae494c00111c51c840f9dd6a10febe403e27ebb933dd16633a213e9c20f2bc11adeb431c71f8a6713bf88f270a010941e15d83df294e658791934f83a5d2407 DIST io-lifetimes-1.0.10.crate 37294 BLAKE2B 9b8836c4bf30e6d102fd9973ac66f067c3ff8bc2806e55f26368ebdc9854f2e9cc6eecc8014f9a0b22a968a6eea8be243fcb7a641d2d0dfc747ee08a6a1450bb SHA512 4b2cde9522780a408c5d4e6406286bc5dd3a0de1a99675129e9856e5d889498a127fd5dd7c937a7542135abc2213b60bfb6258b7871b8709dcdd79d60455bea9 DIST ipnet-2.7.2.crate 27044 BLAKE2B 0adfa02e7ffeb48bf977206e63583fc5e20719bc7b850b4f3b2c9f934af83034478c96df1a5c2c3edecf4c58362f25cac42808191af0ad0d7a66fedef91dc45a SHA512 53cc9dcfaf4d4e83a436b739319d892e1b0e45cdf85a36ac6a8a1594b38caff719074b2c6008361b1cd40bf03fc705e9149aea54b4c75f88af2da9f20706e39e -DIST is-terminal-0.4.6.crate 7856 BLAKE2B 6fb70e6d251556876469c9af15c7a89dffeb2c4e96c44bdfe4e6a0c121e3a3aea9888a62ff52d83386c6c2e6c5805c9ac78ad6a8c91c641ec202c1791766b00d SHA512 2b937ab767692854d3253ae8dcd8ff6eb91f5ca002687354706092a977be8f4b314599af90dd54c5009b0b736321b1c8142378d3d4567481469966afecca92d5 +DIST is-terminal-0.4.7.crate 8356 BLAKE2B f0f42d6f6204c68bc8a9e1290b9b059ec55f5aa2f83f6966711a5f986852befe21ac9281fd611e65cb4fcbf35dfb212748785c7258c44602e7e390c51f09dec5 SHA512 56c00b2942963f8a0b5c40c96a885f85565fb09e247bfd5a3e77ca5c9e0e0e40a17a8d809c0541177e8b496fef87baac4b86c751765491ffffdb631515d8acf5 DIST itertools-0.8.2.crate 89203 BLAKE2B bcf8c00da5033f36cc205708324fd8eff083d46313ee84f567e4f333d8ac1ebe44474d89835a312a5357a48659e2f51d34d2194d548256118943999a3da8ebaf SHA512 325d87a80c0b217469762ae958c46925d284b37ddd987c3ab977c864f426dc6e4515701864f12fafbe49289b45b1910906f0e7d884ba8aea217cac521c3d1ff3 DIST itoa-1.0.6.crate 10410 BLAKE2B 8b1dc9ae9d55a006bb2abe3b0282e5e77397814b692a87b9becdc2bb74deabf5db09e3d5a2f604964cbff046148025988a5d916480e0402b2b80646fbed32875 SHA512 e1fb82fe16e1248141d48de9e05e7abed0c6fef58f2ff8b77b52aca5f16f3600c46707ff4c7a0f0307047610f29775bda74948d6d1efceb74b37cdd22e1fcf31 DIST js-sys-0.3.61.crate 80158 BLAKE2B 07980db627a1f4f385586ad0609b5daf30d590931d2ca0c123f2d84f6c97be0ea935aaae3ccd082440c7e7da1adb4eccfd054a3598d99351fafdfa748f567b5b SHA512 f97bb546af2111fe072a23cbdc71e4fbfd39fbfc6be37132b306853d5737175d4c9c0c4661096012f7fce3612f81509e62a97df8bcb21d7cc796a8084e5b2e16 DIST kqueue-1.0.7.crate 12554 BLAKE2B 2302bb9a6aae077c1b69e4892614e87fd86187fc4608cea08cd510a46ddc3a06b27027bcf6a865550187c983f3f80a9c7dcd6d8a6ca891e2cb6fb2d1a5d17396 SHA512 03a1eac44bab42b683312c7f541fc235ead3ec89e7e0b6991acff431f85086df9dd8a9ee1b80f784c9c5452d3e497170b734883ed0fd117ef033079d72f6c1c1 DIST kqueue-sys-1.0.3.crate 6673 BLAKE2B 79254d667b4cf1fa556f1773db23b00ac431bdea6c8ecf914e3c0837fe4e25a45c9b6fb76259d628e4c76a20f749df3fc285b54ea63ce3b52d21529358e81c3f SHA512 76023295abaa4415c1d7b37c844432ece522b762f78983cdf58106f65ca553ee96193bd8c93f3fd0af029d266d8414f2ba4d1b8835bcdc180acc7defa6269731 DIST lazy_static-1.4.0.crate 10443 BLAKE2B 25b2e61bbac48f0dcbc79c81d7bf01f2403d8269ecb6be3ea6147bd00f7a588df15a91f44dfc18ada19b21faa71de4637c7d493a8628cbecd0e547d74e616a23 SHA512 e124c0521ec7c950f3c4a066821918da7a9c6e711115d98009ae7c351928fdddead852e7596fea5937a9c30e4e4ce8eee7099b20248b5d6e3b2494b6a6d88cb8 -DIST libc-0.2.141.crate 671145 BLAKE2B c0e37825ac3fba376e942a0e2c2aeefcab384b24c50a453d1948376cecb3f953d59735e37aef8a9ca7ae707fc6b4818823fae7330f213bf084e5460a82dd3ed5 SHA512 29d81f440d62fa1c9f7983c38138994e61f4897761a50a4f14abce1ced85a8994c6f0cc0ce86f77113b74495e36ddbebae6627f0b94c44621620a395a6723cdd +DIST libc-0.2.142.crate 679343 BLAKE2B 4168a8c3766bbc4f5adbd4babd84757cb81bb3c8cc806b8b5c1381a88ddccbb8bf55ae84f2879ab26adda09a3d44d21e2708dc9bce5d4868663fad8dd0f0e086 SHA512 8eb465fea8bfa865aa592185ea2dd89a6d89252b0e44fb7398ae82c9fa031d501fc3a1c37e50d1971be528c6e1a4ca416da224ba82e5a8766ec598464593afdd DIST libpulse-binding-2.27.1.crate 130928 BLAKE2B 7e39fc51dfb8b43a81fa0f0fa24e8cc686d8ea31314bebcc957a19fe7db46d528de94d3f511b5438950da78292117a029fe13b74122afcf1efe413adbb65ab41 SHA512 34d84c9cca1504c44d3d44efe982ace491f5c834ecdbba583fe82b15f939ecbaabe906614928c4b2f9dd3a252d13da1cde69c112c1f99371eba5161520832f34 DIST libpulse-sys-1.20.1.crate 35988 BLAKE2B 59c175a98897e88f704ed72adb6f92d82b5c9115c8fa4df6320ae848a39468f6aa8a9a50db157c9e11990905124235b2f095c2bf5c4a761bea2740670f1b45cd SHA512 3cf36645099a5c8af1840c2f544a36940ef08a1d89d03c31aedeb44a92e8f3dfe9aa6c425fdbea79a664a0b1e30d64e667c3affe9cd506807f245f7ad62267cc DIST libsensors-sys-0.2.0.crate 5475 BLAKE2B 97d7a3bd6a1da7cf5b88636b282b5352f13fd0d7d91753ad67a6ec4b6eac7fc7b8793fa71a0409af3a5d74dc8616073e3e890a67fc5f198a36a493c2c46cedf6 SHA512 d0ff258ea1149f63c3a5b519e5f7e0ab825769391bfe0bbbebccc72bea6a90413bc3fa518671509c8895cb994e5ede3b63426bab12e7d29c2a48b4d4a938acb1 DIST link-cplusplus-1.0.8.crate 7674 BLAKE2B cbb93184d9deadd4912f6e03dfb7bb9d37f01b6d8d47dc9744724c848f297adb9cafb1599c2bbaffbff336f883e9a24c3cb4f11745ec4716a9a2c8cfa05f6305 SHA512 690afe063eb9726faa03443bfd01789a559aa10ded4bb3714ef7b13095005c817ad019fcc62b5f7b286c974a81e387ca3342d238e60ed7ab237c3628383a661e -DIST linux-raw-sys-0.3.1.crate 932203 BLAKE2B 090e9c11a36ed26b244d9f130c87d1c6adcd81424e83eded72ffc421192d0800af27c683afa262efa8b3063f0ea510ec113664e0c2b0eb273325d2c30443f313 SHA512 bd82bb055a8f40ccd4a1cbfbf8c628c63ed609489f7ebf61b9ccb268474c16e206867c3695e1da2840c72cb26b3f646fe9585148037604adfcdaf7bfb494a452 +DIST linux-raw-sys-0.3.4.crate 1007150 BLAKE2B c13475f95b539992e3675b9c59a46f649501ef19a7c83342c4b6195d4444d34c3861d677f40720fe17a362469c9065bbfa5c0fc884c48da45edfe35bc26cdc10 SHA512 fa058a39be583baf32f0425e7f3ed2a2f51dced89af7f9864ac3f172c1dd5708f75f5a4ca4e124c9b4fb78025417a4c119234c5493a59ebf76c05314594f1a84 DIST log-0.4.17.crate 38028 BLAKE2B b46be3719fc0a53e50b1f342762e188587e9f1ceb692c72473ce2663edfb8253742d30024e68c1444780ab7fc0e2d5b0601b8ea7228dc3405a9342a57548e605 SHA512 2477d88db42b1d92c30708d88823212e236f613b3465e85eb425f83f8d16fadfaf0352f06c2999a1852102edd2f6ffb10ecb539d8a3b6c48f552a25622ccffa2 DIST maildir-0.6.4.crate 13925 BLAKE2B 410e8476a3f1ecf94157b17e46033d0ae25e22c25469a04639054ba9a2332961292f86bf569a0fc85b57c313420bf61bf1ec76f2386400c5115f9259798f687a SHA512 7fb709afdeb5af282bff10b7caf7f64742b725a59f3be8438f5d17bc77383cac00ed4b4b3067d7dae27029915bd4746498671114b9892102aa63edc7366c4e51 DIST mailparse-0.14.0.crate 36965 BLAKE2B 577df2a11928120ae88a8afc5781767d4ffecdc39d4f22e0771d460bfe14d68a97427fe1f45b9a8f575c549d788bd4bbed007043a2fb41a7d79580033cedf336 SHA512 0edfecbd7f2fa918c758ae5e9c5634c85b69f57e928c85fe8b2aca41641d9e3ce12770ef40b7c3a31b1fb8ac6b15003166d9b86764a282ee2bf73461014c9018 @@ -147,13 +145,13 @@ DIST num-integer-0.1.45.crate 22529 BLAKE2B 4da3e801f71ba8f92c692497e200bfc8d321 DIST num-traits-0.2.15.crate 49262 BLAKE2B 942ab170b2acce1cb40e6847f766bf810a79edd293d34f3a27864f464c16fe2b99fb13171ba429cc6d584248de879434beaadf1b231a4001b0e8389ed6c1be04 SHA512 5228498af0f15daeac3c9210f3e6e71cfaaeb30beea81dd37f8eb06b9592c8bf3226a47597cd8592ad4c513964a9a40f1ab2c33102ef3dfe3800d22c8d4528e8 DIST num_cpus-1.15.0.crate 15680 BLAKE2B a4d98b29ad534de9bc262f58f615ec06bde5d5a2f5252f09b5a0a6ecb06a9daf9709ad9045eb08f7cb744d8a838854b9095aa73918e06624a84efbc11a9a5c1d SHA512 fd4772868def9460a6ee17ef6fc00b0bc74115eec891bb3fdb07ba5b5fe4057a2ac69eb31ba8beddbd3189c7be4545888e5724879f3a89132fbc9b32aa7bb10f DIST once_cell-1.17.1.crate 32856 BLAKE2B 8bde2aaaf9ef45d1f6b8458686179f1fe9295ee8faea269e9b49779583ce26ab9dafe988c3584e841a9e5d05e28430ca967ef3b25e755f48f0120d9c99cdb7bc SHA512 1302d51801e38bfee23e74c0046f1ecb1d3c27309b5fe11c2b6c99553b357db502ce1718695602f9d8b10429e8ff03f91c016d5d604957083728293824c05904 -DIST openssl-0.10.49.crate 251699 BLAKE2B d76ac22dfeaebe6308f377cf7d32e22846fe25cbac45b4b2bb9a131ab010e9f3b84b72fee0a8497f7295e88e5c94afe910fd705468d44f728553ee2b3d97e638 SHA512 20f2c219b8bec8b8b71d5166f01ac194af39f866a2890ca86442bdf82ffd16ea1bdaeab23bd3ad4e65670ea2365195f4ad296b3de8efc293efda8fc7dc34b203 +DIST openssl-0.10.51.crate 255686 BLAKE2B f31109bd63c60e5b5b497f19c0ebc922feb02a79bd1805353bfb6464fffb7d4509e5c6e4ae6dd3d8deb8c8236f279fb2a2669a01de1ed651a89b10b9d483d0f5 SHA512 4c6a5dadf5a8d1417fca2777ec7c98b9c59530559f053b1b8c86d5b497cae0e519439c0f087e330945ca1ea5724312f821d38b759dc7781e7862d173d188d0fe DIST openssl-macros-0.1.1.crate 5601 BLAKE2B 69dc1c1f3b7bc4f934cae0dce64c3efa501162e5279efd6af3b74f7a7716c04b6996b306b310f1c045cfa2eff2895314a47ecbb020a817e461c6d77d0bc11e92 SHA512 57e75c84f78fb83f884eeaedb0dd135ecb40192dad2facd908e6a575c9b65b38a2c93bca4630e09ea5a82c77d8bc8364cb2f5778cbfe9d8f484cafe3346b883c DIST openssl-probe-0.1.5.crate 7227 BLAKE2B d1fd6a9498b3ab7f25b228f19043067604bf20790530fd0ab6fe3d4d3bc27f13e6e94d1e7ef49314c3663477d8916b8790b90427f74976143b54b95350895165 SHA512 7e560314150709a34520472698060c4f29689d4e608dc4dde146140aa690350d3603279c693367deeb0f21ab34ef61956143a3447827a2b7a3d578b9ccd6552c -DIST openssl-sys-0.9.84.crate 63137 BLAKE2B 7466d3f7fd29c1f274cf5af0fe4482b9fb075796dfec2b08fcd22c1fa5711ccb4909e4d7e4fb8803405c898de4e8242de1ade9719e23c6879142f017748eefd8 SHA512 e1cc8a15dfc5fe5f5702dc8b5380871a65d364c3da560d58517690e0c23fee3de7853d71e90dc890b183697829215582bb2854c43b2da077494243933606627a +DIST openssl-sys-0.9.86.crate 65306 BLAKE2B 223d8278b0a739c92fe997c10c74ec640b55c54e540fc8bb5f981d80fd263cbf67ee56a4859eb436249c0c1ef25e8c462e91c3022b46d27ed7409d5e28e7d23d SHA512 e14da89b0e5c8dd6517d8be7d093a166ec08d3246bb3d4e262c0e91d8a21c0cc11d6a949d5d1abfc41c0a22b012a9ce2e6787649607f4c0dd20bc3b10312c83f DIST ordered-stream-0.2.0.crate 19077 BLAKE2B 581285d32136bb9c2134f405c5a2d67c952a36eb3613912be029f2826b847919188e1b479506b46f20e0b63d371f476b99d9e7e1ee8d47ddef7b4f48451b0e3e SHA512 99976f90637f0daedeae05d4270d33bc03fad1c06a85bcf2cd7140b149f76c7560d5e60becf05a633a62dc82f7f65900eb8f510c62aea4e630b78c45dc76d83e DIST pandoc-0.8.10.crate 17802 BLAKE2B 434b726810897376aa69b754eb78e48f140edd0e7e5b982ca0f287fbae1991c85e1945387642a0f4df3167cc17449118fe939bb5d5f21fb1cd5d0128a7cd16e3 SHA512 7a8e4d628f42138607b2f9d77cec545364433e88a8270af53f36a1355b0542b862177f4097257d37fee4b2c9e9c475e3bf6fde0772a4c512ae2dcdf0c76568f9 -DIST parking-2.0.0.crate 9714 BLAKE2B e3ecd48e90289fe173b1419ad3f68350dd05359461c5842e52304e20fef9b5e089803e0c0a8e85b249a546f61cf8624367e6ec164ef7638850b451d325851075 SHA512 21c5723dc0281ade1c2cd6a1c2215ba70eb47a721a4a594ef1e54061bc79579ffe9c31f06e534fd847f936ed265cd65a59dfa9e38880f8bd42c6e8ac70a13f93 +DIST parking-2.1.0.crate 9491 BLAKE2B c65653dbb00796d86bd6540e4d501f0a0e1ebc255c0fe5b5c96fc67ecfd6fdda5b3bd267dac31811ebe334603fc1a26622ea41dbe39621ce12e24e151ca4ebaa SHA512 2cf5741c137df3c7bcbc20208ccd9d1aa580ae25917766db1725a13b692ae7c6fcd212bd572cd7c00b7ed09f3f88ee303e8ecedf84b393c22b02239c3571baa4 DIST parse-zoneinfo-0.3.0.crate 76590 BLAKE2B 441e96b120e9bb4f666ace28f2999974e3bc6786a8b834b07601b4a13506505a93d2647e446f1871bb072b8a1d1c2075de259319c7c1699244dc4e0b89392017 SHA512 e87eb0feca1feda438bb44d92268779053feec9b0823a336ffc593f508fb6e918add1023d4abcb23fa334efe8a07ab41143f5fe841b4f62ac000feb23c6d840e DIST percent-encoding-2.2.0.crate 10075 BLAKE2B 397e59acc3953868c709244b89a2e0db3304c0b574ecba761026b570a485f2cb5b0b2a0159586d1f342ec395ef02ace536da3bc1c72093e1cf93f8b37b26b0ec SHA512 890a5256d2b4290e12e04a02c3529f3a017faa2b6016a4dd0f08b36509f0b1107eacfcb4702024d6a21ff8852a11f263c1adc096b16ef8d12c45a734c087fe68 DIST phf-0.11.1.crate 17232 BLAKE2B ca7932652a154bdff90b0260439c74da70e5c01c69f8ce2f0f88fb95247236f3a9d9e509f5deb36b4c3e9c23294bcc30ad415f4be5cf6e36bd09c31b961eda24 SHA512 d4b020ad259889828cf224a1d70fe0f78498c4d40c375a1c437a60d9c9a1a9c623737da54d197c358e0557e6f0c5a35a9d64198df90dc104d11f5eb7a17315a6 @@ -163,12 +161,12 @@ DIST phf_shared-0.11.1.crate 10320 BLAKE2B 9a511bdaf3c74c48da231effcf7e65935e7b0 DIST pin-project-lite-0.2.9.crate 27713 BLAKE2B d6985b5add432fb6287d1b0c9fb0cc91a195f82c5a748a9ea430e4ba884717ec7b16d730b5ea62de5b2bfead1771da2d115b3776e12e605f70f2538f374a28fa SHA512 cef0b77233adca712db1183f780732ea577cf1b27c2643de221d54c837c75ce749f907e24a967be7474812c7682cba613a3fc5d553a9578a1b80569da0e562e4 DIST pin-utils-0.1.0.crate 7580 BLAKE2B 457e1287202f16d1873b24bf4f1de1828300128c4ba3131758e64f9784d36d47365f22d85493c3a85d854f0d8dbb4c6cef3a0f5b064014dc03943e58b7ba9178 SHA512 828422b8440cc82ac6b0743e0112fa7540d437aed457564999092b1462cd7672cd6b1f0201b67075431aeedd3d9c5127468a3dd028744109944f7f023c82fd70 DIST pkg-config-0.3.26.crate 18662 BLAKE2B 2ad92dfdc8ac0414b12a61dd30ea4ac5f142bbb55d0555ecfa3a53e750367e1b11766a693ef11f8cbe5a2ddb978327632458b2bcf75be7aa8f973262033349ee SHA512 509c4d1494cccc20de6a62d9d037c63ff77ebee8d907747c57ba0926d177b08fcac0231ccdda14511b453deb0b76ddd10f8fbdf63ff94257d72a12a889546435 -DIST polling-2.6.0.crate 41714 BLAKE2B e7d011e0abdf57a40c1724331c2e4d21b960d3087d8255c1b2fe73c9815183058bfebb2c3aaa51d8d6445b8a12e2c8eb9e8f5ae22bd876a848b5ba9ea618eabb SHA512 3e7a29d919a364747be2a82be2b613b27fd5c033e2d3799f940f616c85057a6bb1c2b1022e60443f56f3fb3e61e9373845d9d69cf6ccb68fa57f222b0711303f +DIST polling-2.8.0.crate 43554 BLAKE2B 8fc5986db7c34989954bbe84bd69d1f61c59b890d4e5fd21a20f3861bad750aafe2d1a89b3181df97f3659f1a6c980a92e43dcb9ef9e1de3881518024caa6f58 SHA512 c22dc35f39f374f21483c987d43108472dbfc291508e3f5e1d76e2c466f40b396b1ba7c222db5e5a2c0e670e83b4c34e0fbb5c3e93d86435b8a2ebb0890471a2 DIST ppv-lite86-0.2.17.crate 22242 BLAKE2B 48c4a31a3b555fa37072c4de083580bb769747c7668748541af472778b5b58c3e7ab2b5e178760f542f973774f09910bdd4058ae5fb9d6b10c103eb76cfd0d3d SHA512 539d916e7e5869d832045c1aa88aec519bd000227f9b01d4dd0bfc9ffb640d5f5eb21b05eba718174773c97192a655ad3cb31b53ceb914dd19179a6699b3583a DIST proc-macro-crate-1.3.1.crate 9678 BLAKE2B ed617a1930bf28a26e865f6477229566a0c4ade7f2c1e8f70d628c5536985f03c7533c561490415e207c0f58b4885367e7f54ddcf10b058711829f78a34d68a9 SHA512 5306f017933ffa89eb6111ee00b0536179c5cfab56529440630a0bec86b62194ff16f57ebb471b233e88cd886b7b9871de8402ed29073b23e5ca98193e513659 DIST proc-macro2-1.0.56.crate 44454 BLAKE2B b2a1f28979245a784a4b3a0af8cb04bd01ef3e7aba32c45122fc05a6cceddb1b7303890827f1a2cb99b0b2ae013cd772bffd6e94ea226f0030cde867d6c22aad SHA512 511fd8332eca47ed834736d405e18d53d83642cf528bebb8fd67fa5561e19b0a43c359b3e8020ecd28f9fafdb065c484ca360abc0287a0f97e94d4f779145f03 DIST pure-rust-locales-0.5.6.crate 159349 BLAKE2B ff198ed3266e7bc7b6b4d26343a07b9ca85cf1eabbd1119e568dc8794da58de2c6f9639b01dadeb145d79ba6467bac0fc19594886cfe679a58b8baf7a3d39af6 SHA512 cb7855f243dfaee0c2f2dc70fd4eba77881f7a7309dabb60d40eea14ed2eec620385129c9bab3abd363d6ee915afc22a849533a833feb885862cf2f0e7b06a76 -DIST quick-xml-0.28.1.crate 155431 BLAKE2B 9b9d0dc0fa9225c5f69031714345d3529e3ae78669d81e00222d5c2a47b0bc1dc8ab34f384078b54f67790ba0883c86951e6508e3b29177411e8425727ef28f4 SHA512 1abb1645a7393ee2b22656e075bfb0caa9a6b74f4cd7ebdd3f4023a2d670581651ac73067a1161bcc788fd77816bcfdba93bf8fccab6f8d3ca6bd79ac3cc521f +DIST quick-xml-0.28.2.crate 156462 BLAKE2B 45fe1846ab93fd16f9afdc60e119918b3c50b7eddddc4ff1ff14c6a767ad0b18624b1ff1a251fbc58f58c50585b875eb73f0aafcf0fe8a8ac3bb58da27c55ac0 SHA512 24913a45e962c144c82f13a6ab4877ab7c91fd51f34becc6412a47dd91e75436590a646f85c346236ed2729d480242b20781ccfdd1d42bc2a510bc883966a0a0 DIST quote-1.0.26.crate 28397 BLAKE2B b468a5e9350843ea81e540d17c9fcb302b46fbd450e10280c5fff6fd7c98a439df8c3d3d47e551bc6d67ed02052b5b5c65d215d5ff8ee34f045747e75c1ba37e SHA512 6fcfe4d31f601aa60beb858c25df217421b0a184d185eebc7a4cb9fbf97c687992b77bebd8671a9e6193716387c3e926fed9b75a08684eb2d9a5b155fbc321a5 DIST quoted_printable-0.4.7.crate 7105 BLAKE2B cd71fb6b35a7887220aae8c8996eb0990dc02995357011bf91703b864af530b387737e303dba4dc0e7be6b896f4ea45d9bcc7926d830dcda1e23c7f94c6ff3b0 SHA512 5dc51d97e01c217e4d1c11acaf09b554230dce8fe627bc24155a6b6e8fc176d1de7b0206b91085f5c412d6c289d346f530f6e24391d53c1ef960fff76a76c33f DIST rand-0.8.5.crate 87113 BLAKE2B 516f26bb2a969d0d79e957818133f35d2c0b4d9f1b401098ea23c5b80d27599e842b9298c0c5e46e2a6cb6953857bf8a9fb71ec9366c5ce6708cf17df14f179c SHA512 8b33a8988906ba5e2057a9a84bdd11f867a5536c22f5056eec59ed4ec4e3a6da2fd773da4c0510d343762e5a4ea0f007db4c4a7cef87a47f90e36c1a84d86fb2 @@ -177,11 +175,11 @@ DIST rand_core-0.6.4.crate 22666 BLAKE2B 8b6b66d50aade877f2779c006f8038db450f808 DIST redox_syscall-0.2.16.crate 24012 BLAKE2B 9497a52044458b1435ea16e86ee072e379b6b11ee31602ea72d6b6072a4a99426f409c2e58108a4e9c36dc193fa49c83951e71f4fd4e158eafff18c594dc01ad SHA512 63b5d876baaf99f5cf737679bc6ac7a9e3d8a41aa93f5c59416ce7e3841e2513bff678773553cfe62fb452707f82acc384ea63aec932a31bf94679cd1caddd27 DIST redox_syscall-0.3.5.crate 23404 BLAKE2B 85aa4299d9816666bf576f523da5cdeae87b3c8fbb2af103e82258d23f73303c068a4b6c3ef4117ad67958cb31e41f836a9f59f2ce1bc52c23605e34399afcf1 SHA512 16f8f4766932bb54e4740cfdb4f0802f76246c0bf88c1d76c69c115949b124b625d8c3b85d8947073c2e9544f425aa16c10f71fabe3c03d29e424c47fe4ccdde DIST redox_users-0.4.3.crate 15353 BLAKE2B 5e3b4e902566620cee8856c092cac193366ddcd2f5aef787b1d485353a0da11486ae1359dc60f3c87a198cb68f93ef99ac7551cc2315412b93b10ffb10540633 SHA512 0d3366e23cf93e1b0e025a29025eaebfcd1145bd158e2663b94fd952dc2d8a25566819e3a03c4136ca16a6408d37396e2ead0814c3f0c2bb10334dfd0b838fda -DIST regex-1.7.3.crate 239886 BLAKE2B 8d9413178b626b09243e18a1c5e0336cd41e05659128d4026bd551df0c34b9e141e36c3134f3b22200b18828ef89082a08515047159afb4f4960e5fa840fd54b SHA512 f7e8dbcfaa10c2443b9a6dfa514edf0e149d33f1a135e4a828adf97dbb0f1af5a4b58a2bad75ea8cbecb9641f499b30ed06b8ba60c7eaba79409ca18ede85e4f -DIST regex-syntax-0.6.29.crate 299752 BLAKE2B 2408ebfe5f0dd6578c33f18e8ea9a0a7a84388420c5b67adcaedde477f3f67fb3e39ba9fab1f6892c7ae7fff754c4aca51314601529cabc6a8fc43af38a11f88 SHA512 28a58950d15df1f0ac4ff4185c05b535e8f5bf0b75f79fad24e40e17a02570d1c9bd9cfc919eed8756a1069bc489c5fdccfd04f6b8266c83e3412b7b4bdc262e +DIST regex-1.8.1.crate 248412 BLAKE2B 4f1355104def09ec8f7a7d604fb08d0a39af36cdbb5160c63329e8c06ef2d2ad1063fc7280c90ba3748e1766b65f52fd6da24e439d5262209a6137bcbe2eda9c SHA512 fe83c2497b786314cbd9ead0d85a39ca87ae92225e444a41ba381fe80aa381a88806e2c20e1c468b8b59503fdf1c2b7e5bf6eaae0ddf9f14a70c1ca2773e8830 +DIST regex-syntax-0.7.1.crate 339705 BLAKE2B 59dcdb9e0f5a2008db491756fb353745bf4dbaba0d3a8a6782960c990065e1870cc120d7a7e220991b78f89053aa63b1a9c326f5ae3526d47679e4ae30ae5e66 SHA512 ff61e4a075550fce3a16e516f8222a489dfe2bdf9431220c98c33b1f9e6b19da7bc1ca6bf34031235d6f1ad06882b63d606874a14d2e27c615701ecc2f4cdd9a DIST reqwest-0.11.16.crate 152152 BLAKE2B 38049b8583f52333aa877417c5c29ec46bcb5e39308eb82d1ac00b30eb5ce56db72d10ea1add4d00e03e2caff9efcaad6be6ac84fdba7f40cb828ce452f6388a SHA512 949cab4b4cf91092af76cba5e6d14b6211699f6ef237d4f42add32abb0cbdbb4a14b3460d6d016dcde64ef300fc7b9575d0e5e6afb8ddd38624504ec400914bb DIST roff-0.2.1.crate 10605 BLAKE2B 34d66bc4f4eb828523c464cd75632171277f6b1901916f2337013f8daf39915e1b7ee9154e18413145c9ae103917e0f34c2b6261ba16b3e969a2cd078a372c61 SHA512 001cbc21c5c8ca4362f91fb237b867966653e6f49fa20be1a6c3d3e8d9f2cca66c474eb0b59ecff1527c771554e8503cef94181295dcb007fbc1a50dab49ce0f -DIST rustix-0.37.7.crate 307751 BLAKE2B 0fa2b1fc50a845df3b67cb9d316dc9dc40f290c0e5f4e60b4025e9f649a743a05e78770c4b4362121ef7d75fcf11d8794251a0875a9a5d177afc826e9c943c94 SHA512 e72fcf16722b62dc9821a498b21254b6f794580aef64e2ae9db15eaf5f5c63bd55a22e0014a00e2a2fcdb4f6ad703c2fa8b75b2db387d1a658a34da7a4ca424e +DIST rustix-0.37.14.crate 317824 BLAKE2B a06dc1ea566f5ef5581cb6f14af30c096c95fc0764f5e2b093d21d959c71ac7078747d036c6618ba2ad98e25f979c48cb07a87f7303c8a7112501ef8a0c61828 SHA512 cf5a2c5062fa57d00a778d6d595fe8fd341f275cc4fca8c2e4b8a59f78636ddfbdb0f6f63e4bea63615ea33c61f0e333b7a853867b8e4d80ad94eac40f38959e DIST ryu-1.0.13.crate 46823 BLAKE2B c6d661cbff5e7b273da5a6bb704bb1910b897c55d854b05bd417f53853a832791afc351e5a5aeaa94ba99a8fe64c8a930221c52a8784519728da748371a4ae04 SHA512 25f60216d91e68cb47695ce4e966fae674d5b3e4b0cf33e740248c1605fdcf0c963acd278a485c5b4bb0a1c1144002e73173592222af4989df7a4ba402508c13 DIST same-file-1.0.6.crate 10183 BLAKE2B a320c8343e0b38078ba81c4f0159d886bf47764c74efe0d7cd2b3218426e8341b51e523c00a9e5fbc2ee1057618296bd70b576c68751bd55d6ddb352defaca15 SHA512 3ba35309742c8db63210d9ea78bff4ecd80471d69e6238eb96c7bf0673814f221e2d838fe6311bfc5a0e71b4a7ccba33e07859c0b9cff2171969ff08a4214a7c DIST schannel-0.1.21.crate 41719 BLAKE2B 8e3ce88c460b44839a46304c5ce6c02ec518a1f094165ae8589107cd32b79553e1c7aab581cb07fed4ef5935822ae4af8141f63d70e1f898a10e75377b1a057c SHA512 7457d4accd0096c791240aa19970307c6448486a22303e3b20b7fb25c326e50edb8564781e3d81ecb4a7626796ef78233c224f9baccc0de03f0eae2086624880 @@ -189,14 +187,14 @@ DIST scratch-1.0.5.crate 8013 BLAKE2B 64bad5081da3765fab34b582c679fdb345d592adbd DIST security-framework-2.8.2.crate 77045 BLAKE2B 8581e0056fc0422aef0122e4948d6244eebdad0935c73ac1b01fe31de19f730325f11446dc3dbf5f1ec4400de099eed1d61caef5b8e318365c4dbf9dabab3be3 SHA512 6abaf2129cff62220f152786a36fd4728c72fb2b55f3f75b396ffdf4344902077c8c0784eaaf07e2a4d9311f833298b46372a968b798dd838ea495668fde1be3 DIST security-framework-sys-2.8.0.crate 17911 BLAKE2B ed066e2cb8986930bdcf55060fcb5a34f826aa27d51ba4236f8a8e56de8fe3a2b33be8da14c64c0809f46c0dce02a20729e6863af2261a04006ac65a291ddea7 SHA512 5e670f5f5d54f2bc11e05435b975d5d26d990d6f7446613dcd5be88c3cd52baeb702931cfc663fd5018c8c99f4619c23e57f31eea60b15d3a5e7ce01a291886c DIST sensors-0.2.2.crate 4789 BLAKE2B a419ce8c726c2804d9942c7d2768a4d927e52cb3296d9b43e851d14a3ba851e645e2c70d5f105ffad0a0a62f690f5b1c0f16b75815b17098a9194bc274143959 SHA512 d18346fff03bd5a75116b2150482ba37e45fe50c053921fa3afdeb0dcb3e7b4f85d5d87432f3232cb9868703e94cec56338104f3b04f2e3020ee24f202591125 -DIST serde-1.0.159.crate 77014 BLAKE2B a377be7b7a0624ca9449d962693100d4ee892a252b4fe1326dee2057a214029ecacde05aedb7f0adcebc9815e6b4ea7ec2096ef4db4c55526defdef88a20cc25 SHA512 4e5373b940b5328fabca35759e8a02816c89692b83996c6224be39365b6409688ef2db0eef24219381003133a31da93a41b500a76aeb1b84c05df9a91ff4844d -DIST serde_derive-1.0.159.crate 55039 BLAKE2B 6a239fe8b045c5d61e3503186325e2e4fd3cdbd13e6727e79b673f894f5fdd0872419b0b0f6dae97b9c3dbf737b41bb4816e92fc6a0efa0487350bdb0a8dbb7a SHA512 ee05d53cc4e7a36ba6073cf0be235ff4606e26430ab2a25379a6b915378c8c76584ba77b2fef8125edacf4effffa37adce8e51109e3f5bc6f418987de90fa574 -DIST serde_json-1.0.95.crate 144618 BLAKE2B beb05d7c37fcbacf4cc7dc04380e818a144a81e20e09ac9aecf6488bc18b142713bd1e9c7bc2ff4d10dd2385ccd280207cd992380bde4616db54f0852141eb0f SHA512 ff9f3f9e9a0e07956923bbac02288915c31f5ee24fc618808bfd4aa4b36ec40ec8d0e4426d926bdbcd019c9a4a6608dff5a651bf92dc5663eaf69c7c060223ba +DIST serde-1.0.160.crate 77010 BLAKE2B 45d2585bd7e5dcd368b72c29046bd595c577826da4aea6d019adaf07d23adc096db7aba952037dfdac9dbf08a1e92ababd44cc784ace557fe2cfe83beca446cf SHA512 b03eb453ac01a483843829952462de4e8f6d0fa4a244d38a6f476a911e2e991a508121265befd108134ae7cce8a7a40c4d217f80f3e025f9a612a0bf80862306 +DIST serde_derive-1.0.160.crate 55081 BLAKE2B 851cbd173bd758d46c9f545f05a17f65f7b0a2cd353cc75a985072e3772ca6d8395b63208d845dfba231d7cb5fcee97ec0df0bd0df010096577d618fad8bffb0 SHA512 14b2a2ad7131efa7ec95d5a6e7633a9d1e991b046c0b00cce9c3681edd73cb53ff477aa52a430d8465aa8b362696244ea80f12ffbf0e6f98e35605fe4c60f407 +DIST serde_json-1.0.96.crate 144652 BLAKE2B 2754e63479aa07507015dcb0f989d6447f5b2c01e5f02cf8a843d90c90c6fd0acd3ecb68d80d76c249efdabe0bd0670649a9e576269928d2276ba00a3153131d SHA512 39779419900e1d395d81e70cff0e7a688564a66124b08e74da54ac30f389c912707f4bf5e29afab6fa106faf4bf4e0b841f42fef125cf7bec185482ff6bbba0e DIST serde_repr-0.1.12.crate 9549 BLAKE2B 03f1fecd3edd4c2e14f936db0c1a4452784da327eae63af4086d38323a56ef06b34bf49bd10ca4afe35afa67db4cfd119cdcf98532a57d6badd055bc931f4dff SHA512 c0897efb6ee046b29c810bfa28c6aa5d8cf10ab33e220ee7e1747e9abd2ea0721585f267060cf0a1b03c8f3e5588a48d344079bee2fc9d7472ba2ed61461c714 DIST serde_spanned-0.6.1.crate 7828 BLAKE2B 78d39bca0850b78f0835167ca7786c0bf356d668389aaaf3ace946e91d9a7db8dcba895e833d87e88502b2ba969cac9aad6c1a053c5ecb37f845ebb3b0bb5b32 SHA512 6271aa2af243021002a10cdbd16cb081bf10ab53a61cace104182eb4f28e0c0d7c447b7dcedb350ce78debf5ed6ce6502cb823ae9177d98c5288310094eb22d9 DIST serde_urlencoded-0.7.1.crate 12822 BLAKE2B 38c74ea862f041828467dfa586bad9b8e1d1d64a9f82fb7f98727e3965377d00e59f2dbf20955a9dce976b6911c0a619d2a6e4cc9dfc73cf0f6c449d873fd072 SHA512 b209ad01b6565e95c1d5b431a3f4f8a0df3d11c2a06a44123048bfa4b34ebb6807eec593f0c1c89de3a06ac3786a14747df9c70b4f4d5e4b72b4feb53084eb60 -DIST serde_with-2.3.1.crate 122337 BLAKE2B 95713e93ba6a961f9ea36dc79443f7475041246f58194ab14f5294a8d272d0e6ba0b4cf9e14e56ae80370f6fa3ace73ff342301b4056b71c52231d6962b6fa7c SHA512 83efc891fe7c75c6a61f74288a6583376b591a29cfbd46208e47b7845468b9002415420890872e814fed3d2883b5cf8349e5ac371a2b1e944036f8856d3564c3 -DIST serde_with_macros-2.3.1.crate 27409 BLAKE2B b52df8e3d6b753515fe6b2842437cb6398bc460505d81f2068a607542336bdec7e64eed32a8d0c7a797cd4dbec8378a15e33475a070b59af54d810a5460cbfd4 SHA512 618bbbb27f777c62d99775301f54fbade05f75d40c97c756da50c7e369fb74b028af5a1aaf28aee539b73ed35345b5723211b0f57d8533b9c6330c408d4d9abe +DIST serde_with-2.3.2.crate 123354 BLAKE2B 910c6b8e51ba63a7c75d003097f43a9f799f6674c7283e521ebc8895914b80fd7e85f9fdd18228ba26441f5afbe7ff227033f1d879254c0e7fd3ec51ac9792ab SHA512 6e756e7e6ac78c1a8195f97e6b197847d1cf9d9a85ab8c149a8d7e936d614a7b7c670e7ce3e040f1796967f6c11c6a350a544c38e210ccf76a4692d137fd7f5f +DIST serde_with_macros-2.3.2.crate 27611 BLAKE2B ac64f84286a7eac314cad1d9c4e24b7ff2098f6d8fdb846bee6f98efd02901a271dfe30eadc34664411e2ab0e9ec110ecf95e8508da083e7816799f206b74c44 SHA512 25bee2633c1869b5ebce3ad647ec2a90662ee8a2b2d2ad5aa1c36049a658c44a4b6845df65a7bfca9ab3261cc24c53f03668dad5fc2171a7329c8f475a88b445 DIST sha1-0.10.5.crate 12146 BLAKE2B 476a0c365ab639a0ce427856787595865a60339fd6b81a45f879ff9b9112021d2c3a62e0a817b4555951131a7fe257d0c30988631ddddc3d217274c46c79ebe6 SHA512 1046b91a9ea64b90098ee6e16c63f0620dc7c2dc847d200972a3da3c8d1ac61fa9030682099a411cdd24717b64d488e0b1be1cbe8f7bfee26b8c15cf4f8e5e9b DIST shellexpand-3.1.0.crate 25591 BLAKE2B ba395d9d98fed37979e97609689f909b264ddb44dae56ae4958da9a0e85aa382a00bbca42530cda2701e934233aa1d44509495235ba0512beb33a827cee5c9f0 SHA512 9b20074425db359cf92f29c52be91a3a58a91e6f3116b210913f24dc31b5371ef9d77fe46e7da39e42eac87fa4ccb8ebf9175d7bd5fe6b520d12b9d3b31cc65e DIST signal-hook-0.3.15.crate 50138 BLAKE2B feade39b877523dd138a5df3114e13c35d6a2ca281ed4cb7774dc970b3cc88b9dc011db2914c87655c0962ad1cc72293fd105f06fa4297e02fe28d78bc56c1c8 SHA512 8b7703c8ef683868e4b0c315a73fcf6802f3e28730db6b79301e9818532ea62d6d218c9ff3ba465e02ed5c19a33e733ec5f7750ae9e0f823a2ebb35bb911a3cb @@ -204,7 +202,7 @@ DIST signal-hook-registry-1.4.1.crate 17987 BLAKE2B f1df8bba55c72a506b9210347f9d DIST signal-hook-tokio-0.3.1.crate 7984 BLAKE2B 9e45b63cb335ce3c449deb085db7154c90a717151dcb7ec81ad393d0c040f2d816573203632eca47249306754935ba7ecccad5c039b8383e997a9c713b9e5f31 SHA512 14df27bb3b210480a26cedfc453cff92329f22f4783b2803482137abca396dd3c268ae114e54c6287b0d55e5f8f1a6851146b1623febf4ccf7f209ef4d83f639 DIST siphasher-0.3.10.crate 9889 BLAKE2B e5dd6d265340b4c9e4266ab1ff3a20f1fb87fd493b2d7b5fba32d26421cc858b38929e4ab96941d0c055375b8acebbd04236d994cadca324500ed05064b9bfc9 SHA512 f90425a2cccc9575d377bb92a765d34653ddef1ac12b7c63dc6d700aaa74b525787e11609061c2d3e44ea56fe0e4b8f93f7b13f0279b5de2e0f710c5caffd4ce DIST slab-0.4.8.crate 16928 BLAKE2B f20603e1331a767c3f55b56d58bbdb9fc126794a116db128fce6d204122c420e9a65478f9f10a26f86c045dbd55a62556862f4339f3a41419f810bcfa9fd145d SHA512 1d713a217b3816a1e6c230d4bb52c32c90f600e64520f0c339ea8255ee8aefd887d969fa23497f1bd8b2b1f7dcb4b220957889746f04dc3453240b5f28517192 -DIST smart-default-0.6.0.crate 8169 BLAKE2B d4b19bf0a96d9eddb05b7530545a5b138464c8a23448abe60ad21a2dc6d1f335bfbd97b76a48b1f801d078e9bf84879c736b64b9d8d932478fa93e57d77590d3 SHA512 66ecfadb3c7a7a8c6ee48b62146a058595e87efc18f4962a7bcf04120067440a83fcb4489c7831986eba06450279546b019c111e2a2a01e7f2d52fb82e98914d +DIST smart-default-0.7.1.crate 8435 BLAKE2B 52951725b6ac1167cd8deba62ff92c475bbe0956ff4ebb20ff8e5ba812f2d94a5b0a6c4e0f4b65db7d6a0334a5cb6100ac38bc2076b6f885bb235ce2385e5fb0 SHA512 f9fdbf067568db78b13ab48b6373d432563a3293c74fe99532676d9980eafea1648b3b9aba46e82ffc2b9cb31d9b51eaadd088bce06be372b50c4471774a7fdc DIST socket2-0.4.9.crate 45421 BLAKE2B 19c296b1b42839086793a29234f604a6c94ed1b9d30c4eb1ec695a76acfa266840f482e64b4ee2d5b4520f70849fbaf88984020ac25ec393918b89b2682d2541 SHA512 6cb2aabc409fc7d9942afc2073a36ad8730c06dcdab1866b9d3d72dc55afc643be6a2ca1f38c2e19fbfe782ae584512a1ab357c0f4974f98967a4f489e65331f DIST static_assertions-1.1.0.crate 18480 BLAKE2B 358dd5ac413d06f62da0388e2016c5fcb8ec68fd7dceb0dbbcb97665c032b7509b7e083c20701648b6a9174485f117c02682ae4bde7ef037e80a85cdf6a0c86e SHA512 46d0e35f77941dee6f60f574c130472248063dc38494c1c4f84f7c048244cc2a58a86fe17c0990e3f0f01406b75ed385a13d00058612b27cf0e867c8d31c92ee DIST strsim-0.10.0.crate 11355 BLAKE2B bcb25ad0a7284e24e4f17ebe0ccb621bdc4118e499b50b094d98aa7e8fcc0b96716c9953c3516ce7ea78309d41d424892ded595259696a5bbffdcb07802b5c2f SHA512 78b318532addfcf5c1ccc1e14539e258aab9d3cd893cc45d82342549bde838c177d90f13c560671f8f32929af47d0b467db35e6876bd7697d8b3f9e055aeeac1 @@ -212,7 +210,7 @@ DIST strsim-0.9.3.crate 10266 BLAKE2B d850a2d5199cdc2deae94c02a1934933e22b943750 DIST swayipc-async-2.0.1.crate 4578 BLAKE2B 5e752421271704e4299389aaa6879bd5001fdbcad379ae75797d24a1d13d5546ae7800c3b67bafc0ffbe535227b83715820efe8b3e5be41c140500dcc7ca3ff1 SHA512 0af877c0faa8dafc5f8eea2b76258d90ce846515f7a057d7b63bfa95bdb7974e9dac9879259a092a5270dcb4e20de80511a5d10d3f8110b348d4f4ee7529a106 DIST swayipc-types-1.3.0.crate 9446 BLAKE2B 4ea0d3f7b32ee65d99a4072bc8e208ced2c6ee787a60de6bc081c7fdc1ea4fe65d99cea9b383689960f359cacdee8873de4a3579b825168a8ae1ce56a23ecf1a SHA512 1fafcd20443c98452c5a9c578734912fbced3ea3c7141ef4ed868511eaca401d08703c26b1cfc365b057cda38cc38546aec5da93d94d60612d18a4578aaf17d2 DIST syn-1.0.109.crate 237611 BLAKE2B e827445d00c79a8eeb91eacde472f1987addd6ce9e1df95d7abf6446a77ff4173a8006845f3ae71c1da47193cfb72e0ead9a6d6bad2573be12c17e90735d9ad9 SHA512 12816b9e8cf984024b2fbce9f0ae14cf94d4d2c06f08cc54fb793ce78770bb4cc1288eb7df0ba5e8e937756e1e8e295c53fe07a0c5dde1ea8ddba03b6203b37d -DIST syn-2.0.13.crate 240619 BLAKE2B 80536a808aa671424fd940d28013b96988b0f51c29400c5fe1ca7e6789587c670cef7e746a527701641bcb9df73925ab2fa581ad5f877b2d5cdec31590ccf223 SHA512 940ed62d2d5676034292e675ffac2fbc495976ebced6a295cc4da8914e9e9f059275e892e0033bebfd26e3692236c504dd36973e7f62b8e1943f19ec6491d9e1 +DIST syn-2.0.15.crate 240785 BLAKE2B ee2a2250e7083770f8fcb5ac0b387a28bab041e56dc9a835bdc366d39830cbd464aec156b47947331864220d78856f74e94c24061bd0c4fc908584efd355bce6 SHA512 19520d13b417ad2cabaf7e31f45271d41f26158607d0ab21e76a04e824133c64f4acba0f8c044c675028832563ed7cc73fd88d519520ef3834008dbb3d04663b DIST tempfile-3.5.0.crate 31129 BLAKE2B 6d32584819794dbbb1f30970577ca2c82cf79979f94b070327285ae8bca6f8e3ea2402d2034290472f284ce039a3a578bfdfa81a53b5c49b587dbdb40960f6fe SHA512 8e8775a9727e32f6931b3289d2b8aefa5ede7b224ae2e1937da3aff371ef5f6078587f060eb36793e9779249992a97acc39c02c6095c41467929e39ada12c7db DIST termcolor-1.2.0.crate 17917 BLAKE2B 5ca7802b0bd29495bcd2deaddcdb4c3ff964073a373eaf39964a24ed91a48c5c33e192d676099e2837064df3149fdd73aba7d241e9aeaad9887bf1bcae9d38f0 SHA512 cf1896523353390b2f90b2a8bf30f47da5fc7c2daa635bd0cd8059bdc73feb243e46e4279562fe45d5726f2840833b1e967c7de19ffc0c853592d9f86c0c1be7 DIST thiserror-1.0.40.crate 18709 BLAKE2B 8057ebcd11546f8b3ae5d760c1dd1764386f3c29dc43bc7a4aef20604970c65356daef137734e80260051d41e39979943bfda496459696b924a95f455159704c SHA512 db1b1fab3aa61dc6bbc672670eb70cee2f838fa713d3a927022900eddde253108d123bded1aa6df8d314e1aa2f8ff37bc72fc9b0803fe3a56447a64290ab2a91 @@ -246,7 +244,7 @@ DIST utf8parse-0.2.1.crate 13435 BLAKE2B a1c111d7ffc60690f2aaa86f034c66ba1abe4e1 DIST vcpkg-0.2.15.crate 228735 BLAKE2B 6b6bacd9a7fa38919241f45a97f58cae957e58d3aac99df208a26aa718e4f1644f4ccefa31b09151e5c1952288e0e5837c363918b98c7f55079a948a952c1c50 SHA512 7322a21e8811b2fe4e79e09dc321458068ecdf1953f05d36233f3278ecc0b1dfc64194db7010dd46fcf692285f42475beb090c6c6cac0c8f9fe0eb5c770e3172 DIST version_check-0.9.4.crate 14895 BLAKE2B fa1fa4008af165bfc1fdbe560488afd9d232cfafee94104fbcc4cbc52f234849bff9ddfa88109a1ac682f6d9c1d86b0459893d223f64e65adc08966aaf93dc89 SHA512 b172dc9a3759a4a683ffc39b9a40b03b9974b626a088217de87090466cef695226557c226cf3e469b2b25ee7297b7eb0d7719878cab42457f80146a81943c0c8 DIST waker-fn-1.1.0.crate 7114 BLAKE2B e510eec0490f0caca3930000cecccde209ad387d1657c380f95122c68ccc15fcbe0684315d0aea28f094f2c65f7b7b08ae62f6ec95e0d67fc47e6af0ba4589e9 SHA512 80f612597534d9f8bdcd5e6bdff740805efe28242822bc6db360e114a23cb47ff88c74b8ab855bc764f0a73545e85a69d76bce1441e5899a36e41ca270695dc5 -DIST walkdir-2.3.2.crate 23516 BLAKE2B 473f2b51aafd6ac17e5c3da8d545d179b31486b3a65ab39fbd8bd7fbb2ebcc24bebf01781200a26a68f0b1cb464f5763a919aead3b03eba5a7e1be6efec5500b SHA512 6c44071354faf37720ec4117ded34c8d530489542ee107ac26a7a56ef4a882b9003e22e84f1d61f6078643521343e35aa1f7b57c838779e78e5937a667bf82da +DIST walkdir-2.3.3.crate 23125 BLAKE2B 3bd354b9796a31bd4c8f4ca695514101a7837ae2134fa1ffec20df1cc946a67b38c6b50affbc2cb79ffee0934474d8269378dab5ac49a4943ccf8c7aaa51db11 SHA512 2b6e1e27c16e310f636eb1c9ee58435509fb8f7a6c5beba4dd13d87aa1d91599a593bfe720a675d536ce63e217c31e240a57122455d8e18de1282a9e7fc3defe DIST want-0.3.0.crate 6550 BLAKE2B d97ac51dd5e49bec27cd196711110679013bb7aca520235db3f38c7d4399a2a17b9cf599cd0811137df957f2341e75442d48483dc7aed6910f0eed7a78ddad37 SHA512 7e7af8ddcc6faed3e3d18384a000339617187b74b0adf111a02bc15fdb152c88007844d6fe6f35a47a13f3384a19ee4723b884623de7d45c6619d76aa6699404 DIST wasi-0.11.0+wasi-snapshot-preview1.crate 28131 BLAKE2B fe501889f25d65e2d032f885cc50c4f8bf7dd70fd5cbc438de349838370d8699e9627b0a4fc76030ea9fe6d508f41d0c9928a875fdbc47e73bfb17241cf7b155 SHA512 043500ab28cd9cb779475255da5d109ebab7fccca72b64873dc28d77bc5a157ba8d96b9e8f05223b5b36c7089bb7b4ba87657fc69bac16b78972f897294a865f DIST wasm-bindgen-0.2.84.crate 172947 BLAKE2B 90c9b846bcea9d099a394b42f126990db82d1dcbe247f8b63f8c91cdfbb5e2d184d36daedaf8fcee58c34afe89bf9a30454063693d64806ead3427680a87e7af SHA512 20f8c9e4f8d81c66e34d9ca2b266fabaae30da9015d139cd4eba3f314c67c17cb562c6eec5127c41302c11c2f314237add2524a8b9a4d5346b8822a37e467b2d @@ -255,9 +253,9 @@ DIST wasm-bindgen-futures-0.4.34.crate 15117 BLAKE2B 7a6a70d07e021680dad6ae9d4b8 DIST wasm-bindgen-macro-0.2.84.crate 12857 BLAKE2B 23ae9963cc2cf9bc589f5d77c8d3819aeb9d671f0bddd17093b2df096cc800d2130bd2a994b786a5f446e9194947199b3f0cdf1c16f15e7283a4ae319ca849a1 SHA512 23b69ff601c149909d81200bc2902018ec71efad8aec9cd84a0653025aaf852cc86d93e28c5f60144ba6ce5aeff04b90d23761e263e3783d45097316525d6f43 DIST wasm-bindgen-macro-support-0.2.84.crate 19076 BLAKE2B 4f779d7d0a406f376092ea8193851dbc86e9dbb822464db66a2022274665b03b9bf6552f79263014510cfaf4284847e98e8173263a6565f1af0c29054bd33fff SHA512 f2a8b6e0170dcea0d2f4a50361f036ad6604c499a89f0cf602578d0958d47c193aecebbd98e63310f592b08f8fe53da6c3d7a124b433ee384aa22371d9c963e5 DIST wasm-bindgen-shared-0.2.84.crate 7219 BLAKE2B 4910158ed884dd9dbb32b1539b0c89a583f98df05cb29654487a26db063c973d44cb086dad4b466f9bc63104e3d4da72fe9feed32618f8243151dfb9ccfaff29 SHA512 fc4bf134a33c71852b91d09fbf1e1801e2b97b5c2756e2680d0c1f8701da30b22b56777d8e806e13602beb040775824966e378f7b9805e131a385e7816ddd010 -DIST wayrs-client-0.5.0.crate 48079 BLAKE2B 6d54a513ce5e9a0389bfe86ea508ea0ac53544e0286776619d5180e274f6978699114d98a6a27890ebe04532144788d3158e179ed982450a14bdb4e9f3323383 SHA512 e66983ab24ddd1e49c28ded91f40f901a1d0085a6ce8e95074db127af89308e04d1281cca6437a114ca7b0d9d77615a9a7a09d38d8f8cd63ef6126abf5afca6b -DIST wayrs-protocols-0.5.0.crate 141601 BLAKE2B 19123cdac68777fd0579fdd50e4e906dc7472230d835451dcf5d17ea42d11e34fa93b3d4916388476bb2768f0b680fb85c0e50f16c17b0b2929e1643f0fdded5 SHA512 cc46ce9491469a27a08c9114c31a53e763e1cbf69769ce1866fd49c140766ab5590355ab25427db91ea0ea291f90cf786803da050f475597134ec2dbee414303 -DIST wayrs-scanner-0.4.0.crate 7203 BLAKE2B 11f972e5d5f30121847ccc3b6a12b9eb8fc6515fa46a6c864b76b01885bce2d6d2a70fd32248ed43aeaf9fb76b3eab4d25a63b7677a885bb9750281286db9f72 SHA512 e1bd5b0cf1c2f9f66f0535962af47c2f8997c352343c77ba2a12449c8375f12343401e91b09e14410c400cc470860c8dd36cd1691c4e5207c50ff42a88cc17b9 +DIST wayrs-client-0.10.0.crate 49664 BLAKE2B b94621ef29b3852da483782026cab9c098babb4dde40451448d9174b109861f26a86ae64e2611907e6da0044b8734cf0ff553f099847977aad9de4ba98858a3c SHA512 3655c865298e224870b5aae9a8b33b569944842a44160007257144af8181fa76f125c311fe2dac6a692d74f2243f43cab8efcc69f436844a5018dfaabd107133 +DIST wayrs-protocols-0.10.0.crate 142433 BLAKE2B fe7edd02baac6704727e670fefa8fd136573d9793e205278b9b161f3e3941261dc53b9922d0ddf270c3694ecb3ba9ded10c553e5dee653ad871d6b06c7c330a8 SHA512 a94b3435500e689e2ca8c106e3c0852d4fd79605dd3e4f4a091687b76cf4a3f5b36d52be824f1fc422a1b8a2dfc7fe738aa1b6d809ac7a3d3a804d56b778a0e2 +DIST wayrs-scanner-0.10.0.crate 7678 BLAKE2B f1d9a89cc5569ae7093a058809aceea43d2f054a021b91f466eabb2ac8f092011c3e33873bd38c925550d73f3ece9e1d2568b9b0b111180db9527345be5fa79e SHA512 26603b2977af9cdde76e862c4b73c8f0eb23564a3cc6db99cc429557c689bd22419f0051cb9dbcba803783ec4adf971a9a26bbca5f5c5f413dbf8df605bb08b3 DIST web-sys-0.3.61.crate 706333 BLAKE2B f57cb14032e2ea01b5e0ffcef0988ee3e8227c1da7d27ef8799583f64cddb4bcfbbb145f5ea1889006fc9ff61d42b1c02d4b278d67371c9d914827113f5e4128 SHA512 dd8c93a92295a9cd94a4a4cac4a81d9fa41c2c0bc885c1861eae5cc317a0d55e1a9d34b97b91999bf617a071f7f8acc39bb0d4a684b40543519f0cad6b82a25c DIST winapi-0.3.9.crate 1200382 BLAKE2B cb5799749ccd935ea2d7068d953cecf19f543d9db7dc16ad4584bb7005373ada34937a3ced7225544d8bc765da599911c7a3190efefb3a25b7c1bb7123b4f673 SHA512 ff8b7b78065f3d8999ec03c725a0460ebc059771bf071c7a3df3f0ecd733edf3b0a2450024d4e24e1aedddaecd9038ce1376c0d8bbf45132068cf45cf4a53a97 DIST winapi-i686-pc-windows-gnu-0.4.0.crate 2918815 BLAKE2B 4d357e4d30f9552972170d65b9a5358b69c46a3e772fe05efc22f3d4ffc1caeeaad7aacdc7abd503a7ad0545f8bd7d22bf351dcb6df76f812fa4d45c34d65df0 SHA512 a672ccefd0730a8166fef1d4e39f9034d9ae426a3f5e28d1f4169fa5c5790767693f281d890e7804773b34acdb0ae1febac33cde8c50c0044a5a6152c7209ec2 @@ -285,8 +283,9 @@ DIST windows_x86_64_msvc-0.42.2.crate 666936 BLAKE2B bc3a456e7f8bc272f8978ec6950 DIST windows_x86_64_msvc-0.48.0.crate 671422 BLAKE2B abb063610dcc38581657133182b7d9efeed5553df67bd2bd6f30f1668a645186e4824f9ef556a5abc84ace10b1b437b6325bbda6df5a64ce880d7dcb743ac786 SHA512 6e598b8e3ac54912a8ebac01b0dd2c58fd282072527d7fedc7f6ebecdfb7dcb09ae46c22293bc0117849437f8b053db5e90406e7a38276f0f0afd06be3966795 DIST winnow-0.4.1.crate 138177 BLAKE2B 9fb55dc5dbca2250c5921aebc42fd8dff7da6fc70656d5690475cf9d81d569b01e68c5134401f70759a9edbe1704cf76727efe5442961b1d220827130497b735 SHA512 390b3da6688d61d90d9bb221d95c7243968209b692737999b13326204954d1e916b390ac8a3a0e0864695ad9a073ed8a79e592ca565be374cc6e909b4166d52a DIST winreg-0.10.1.crate 25725 BLAKE2B db536f2a098e4ff6ae4ff80a19bd2029030d68007c3d6100f5135da1a7c223463fc17640f533bc1d4e8c53e9becb186d98351719b3b6276802c68cc755b9ba4e SHA512 09f2d18f62c3c427ebed40d667b672bb778629502ad3c39541f324b2d5ac41f0822c98b7e5320314144130580da46f1e8e51928941850e7d4af28455a564360c -DIST zbus-3.11.1.crate 142580 BLAKE2B aea0366476dd3fb4c8f9e924777932e45efb25bd23fbcfc3881337852c5df3d821facdb28695f4782a505774b237c0e7d1affb40e6e0946fcd79fec4f5c50608 SHA512 cde89fa2f3da6efc064ceb3e1a742a785b713d84839a8c43ed3b765a6ddced0405e0b0aa6278b143e42080f528fd910fb85026d9acf5f99c351232d2ef1f9109 -DIST zbus_macros-3.11.1.crate 25824 BLAKE2B de3fd6eee7064b9d2dc6b1db9b0f0b8c240104fd4b1458ce484d98cdbff2d500d50f9518be76ec53e1f2e625cbe1ad362ce18132ca2394b9311be125211f5a59 SHA512 5a7eb2f9452f5e55b945cbffd825940d8457372ba812026845998d3fbf716b85bf8cb246926116cc716f464d5e243fe4f42072569f9366a5fff5a9fb1e6be825 +DIST xdg-home-1.0.0.crate 3310 BLAKE2B 9ca30a8daabf4e48aa3266f382c8d33313388057d7cc0b837130229b342df4da8b712831df6ed4b71f55014e0b6acef482849735c82957e71fffcdb4eb781f63 SHA512 943414b1238be9cb0785987e45e90412ea1df6f838ec845147555e09e2433966b2635b59884f9adc13f79820661062f13c1368fa959f785897a2617ffad0bc23 +DIST zbus-3.12.0.crate 144160 BLAKE2B 9f3ee37bc181a775ffc882a5773b00d2fa71750ee6dea0b60be9530b58d15d3f7f8ff952edca3395471b87c3d7f6165d479d2c7dd1e35e52f78c05cc8d5ef236 SHA512 5ad55f5c439905e64f85ff6045f765cc867bad27b9374b895fbb52bf6b77d45a5a8bbd6200e2161442952418be44e9d1dffdc3c5f267122e8a24e74037ce9a1f +DIST zbus_macros-3.12.0.crate 25823 BLAKE2B a46927b647d46aa9986257f803e54facf38d94cb86ee1f783b333f86f94747b809ee42da06ae6f617f8ee41768466e5d9430e2d12a28b186fbb9bc630b2d38cc SHA512 10455510e5e81676cd013d087c97aaac3d91d13bea498a1357c0b2c9c148ea294240936d8d85b91fb205a88fc87ed2c683cbb4470c683fb79a352e9742dc9dfe DIST zbus_names-2.5.0.crate 9861 BLAKE2B c171980b661d97142abc873eaa0acbf21300ac0165aa9e28012e798c79db871e10c52336e7eb73a568359d7e9b395e5782457530da509fb81afc767d0180fb17 SHA512 7a42f274e2d9d6dd452d8ca47b22d3b1e2e13bf0708693cfd71293ecffc7a13fa957175aa0dc78b8d17251933faf04d6e2250bb9edb2034eff7bba99392076e8 DIST zvariant-3.12.0.crate 71199 BLAKE2B 7e847bf9ff922ac3fb7c17540243b6bc4dfe0a4d07630eef9e618d5c9090f8de7b4515ed77cff86ac6b51acde28126e410e1832d96451b642bb29d2de8207cef SHA512 42661d7681b24e0fddc8db6df944abedd60a9d656133c3ec704dec7f248b2c843e01032bd46cc6fddf8aa56e2a0970a5a10248bd3117f832b67677e3a81f9ab6 DIST zvariant_derive-3.12.0.crate 10828 BLAKE2B ec1f15c8770ccabb24c02b3cd5117b1ea60d735a2f827d2dd59fda09ced27445707278250394bf57ce93db2521a43470a15432a0e6011ae3bb591d2aeb42fe0e SHA512 c8ffb416ef2f4d4246973a75a00c9f614e6f7b634f76df801058a1586e39e66ee20129ac0f489c135bfc1864116c7115b8870e78301da9f86df785622c41e2b9 diff --git a/x11-misc/i3status-rust/files/i3status-rust-0.30.7-disable-stripping.patch b/x11-misc/i3status-rust/files/i3status-rust-0.30.7-disable-stripping.patch deleted file mode 100644 index 8961533150..0000000000 --- a/x11-misc/i3status-rust/files/i3status-rust-0.30.7-disable-stripping.patch +++ /dev/null @@ -1,12 +0,0 @@ -We strip binaries downstream to aid in the generation of backtraces. -https://wiki.gentoo.org/wiki/Project:Quality_Assurance/Backtraces#Stripping -https://github.com/greshake/i3status-rust/issues/1863 ---- a/Cargo.toml -+++ b/Cargo.toml -@@ -104,5 +104,5 @@ features = ["json"] - - [profile.release] - lto = "thin" --strip = true -+strip = false - debug = 1 diff --git a/x11-misc/i3status-rust/files/i3status-rust-0.31.1-disable-stripping.patch b/x11-misc/i3status-rust/files/i3status-rust-0.31.1-disable-stripping.patch new file mode 100644 index 0000000000..efeba76e54 --- /dev/null +++ b/x11-misc/i3status-rust/files/i3status-rust-0.31.1-disable-stripping.patch @@ -0,0 +1,10 @@ +--- a/Cargo.toml ++++ b/Cargo.toml +@@ -104,6 +104,7 @@ features = ["json"] + + [profile.release] + lto = "thin" ++debug = true + + [profile.release-debug-info] + inherits = "release" diff --git a/x11-misc/i3status-rust/i3status-rust-0.30.7.ebuild b/x11-misc/i3status-rust/i3status-rust-0.31.1.ebuild similarity index 88% rename from x11-misc/i3status-rust/i3status-rust-0.30.7.ebuild rename to x11-misc/i3status-rust/i3status-rust-0.31.1.ebuild index 9bab7ac57a..c1dd060a3a 100644 --- a/x11-misc/i3status-rust/i3status-rust-0.30.7.ebuild +++ b/x11-misc/i3status-rust/i3status-rust-0.31.1.ebuild @@ -6,12 +6,13 @@ EAPI=8 CRATES=" - aho-corasick-0.7.20 + aho-corasick-1.0.1 android_system_properties-0.1.5 - anstream-0.2.6 - anstyle-0.3.5 - anstyle-parse-0.1.1 - anstyle-wincon-0.2.0 + anstream-0.3.1 + anstyle-1.0.0 + anstyle-parse-0.2.0 + anstyle-query-1.0.0 + anstyle-wincon-1.0.1 anyhow-1.0.70 async-broadcast-0.5.1 async-io-1.13.0 @@ -25,29 +26,28 @@ CRATES=" base64-0.21.0 bitflags-1.3.2 block-buffer-0.10.4 - bumpalo-3.12.0 + bumpalo-3.12.1 byteorder-1.4.3 bytes-1.4.0 - calibright-0.1.2 + calibright-0.1.3 cc-1.0.79 cfg-if-1.0.0 charset-0.1.3 chrono-0.4.24 - chrono-tz-0.8.1 + chrono-tz-0.8.2 chrono-tz-build-0.1.0 - clap-4.2.1 - clap_builder-4.2.1 + clap-4.2.4 + clap_builder-4.2.4 clap_derive-4.2.0 clap_lex-0.4.1 clap_mangen-0.2.10 codespan-reporting-0.11.1 - concolor-override-1.0.0 - concolor-query-0.3.3 - concurrent-queue-2.1.0 + colorchoice-1.0.0 + concurrent-queue-2.2.0 convert_case-0.6.0 core-foundation-0.9.3 core-foundation-sys-0.8.4 - cpufeatures-0.2.6 + cpufeatures-0.2.7 crossbeam-channel-0.5.8 crossbeam-utils-0.8.15 crypto-common-0.1.6 @@ -64,20 +64,18 @@ CRATES=" data-encoding-2.3.3 derivative-2.2.0 digest-0.10.6 - dirs-4.0.0 dirs-5.0.0 - dirs-sys-0.3.7 dirs-sys-0.4.0 either-1.8.1 encoding_rs-0.8.32 - enumflags2-0.7.6 - enumflags2_derive-0.7.6 + enumflags2-0.7.7 + enumflags2_derive-0.7.7 env_logger-0.10.0 - errno-0.3.0 + errno-0.3.1 errno-dragonfly-0.1.2 event-listener-2.5.3 fastrand-1.9.0 - filetime-0.2.20 + filetime-0.2.21 fnv-1.0.7 foreign-types-0.3.2 foreign-types-shared-0.1.1 @@ -89,14 +87,14 @@ CRATES=" futures-core-0.3.28 futures-executor-0.3.28 futures-io-0.3.28 - futures-lite-1.12.0 + futures-lite-1.13.0 futures-sink-0.3.28 futures-task-0.3.28 futures-util-0.3.28 generic-array-0.14.7 gethostname-0.2.3 - getrandom-0.2.8 - h2-0.3.16 + getrandom-0.2.9 + h2-0.3.18 hashbrown-0.12.3 heck-0.4.1 hermit-abi-0.2.6 @@ -107,7 +105,7 @@ CRATES=" httparse-1.8.0 httpdate-1.0.2 humantime-2.1.0 - hyper-0.14.25 + hyper-0.14.26 hyper-tls-0.5.0 iana-time-zone-0.1.56 iana-time-zone-haiku-0.1.1 @@ -120,19 +118,19 @@ CRATES=" instant-0.1.12 io-lifetimes-1.0.10 ipnet-2.7.2 - is-terminal-0.4.6 + is-terminal-0.4.7 itertools-0.8.2 itoa-1.0.6 js-sys-0.3.61 kqueue-1.0.7 kqueue-sys-1.0.3 lazy_static-1.4.0 - libc-0.2.141 + libc-0.2.142 libpulse-binding-2.27.1 libpulse-sys-1.20.1 libsensors-sys-0.2.0 link-cplusplus-1.0.8 - linux-raw-sys-0.3.1 + linux-raw-sys-0.3.4 log-0.4.17 maildir-0.6.4 mailparse-0.14.0 @@ -154,13 +152,13 @@ CRATES=" num-traits-0.2.15 num_cpus-1.15.0 once_cell-1.17.1 - openssl-0.10.49 + openssl-0.10.51 openssl-macros-0.1.1 openssl-probe-0.1.5 - openssl-sys-0.9.84 + openssl-sys-0.9.86 ordered-stream-0.2.0 pandoc-0.8.10 - parking-2.0.0 + parking-2.1.0 parse-zoneinfo-0.3.0 percent-encoding-2.2.0 phf-0.11.1 @@ -170,12 +168,12 @@ CRATES=" pin-project-lite-0.2.9 pin-utils-0.1.0 pkg-config-0.3.26 - polling-2.6.0 + polling-2.8.0 ppv-lite86-0.2.17 proc-macro-crate-1.3.1 proc-macro2-1.0.56 pure-rust-locales-0.5.6 - quick-xml-0.28.1 + quick-xml-0.28.2 quote-1.0.26 quoted_printable-0.4.7 rand-0.8.5 @@ -184,11 +182,11 @@ CRATES=" redox_syscall-0.2.16 redox_syscall-0.3.5 redox_users-0.4.3 - regex-1.7.3 - regex-syntax-0.6.29 + regex-1.8.1 + regex-syntax-0.7.1 reqwest-0.11.16 roff-0.2.1 - rustix-0.37.7 + rustix-0.37.14 ryu-1.0.13 same-file-1.0.6 schannel-0.1.21 @@ -196,14 +194,14 @@ CRATES=" security-framework-2.8.2 security-framework-sys-2.8.0 sensors-0.2.2 - serde-1.0.159 - serde_derive-1.0.159 - serde_json-1.0.95 + serde-1.0.160 + serde_derive-1.0.160 + serde_json-1.0.96 serde_repr-0.1.12 serde_spanned-0.6.1 serde_urlencoded-0.7.1 - serde_with-2.3.1 - serde_with_macros-2.3.1 + serde_with-2.3.2 + serde_with_macros-2.3.2 sha1-0.10.5 shellexpand-3.1.0 signal-hook-0.3.15 @@ -211,7 +209,7 @@ CRATES=" signal-hook-tokio-0.3.1 siphasher-0.3.10 slab-0.4.8 - smart-default-0.6.0 + smart-default-0.7.1 socket2-0.4.9 static_assertions-1.1.0 strsim-0.10.0 @@ -219,7 +217,7 @@ CRATES=" swayipc-async-2.0.1 swayipc-types-1.3.0 syn-1.0.109 - syn-2.0.13 + syn-2.0.15 tempfile-3.5.0 termcolor-1.2.0 thiserror-1.0.40 @@ -253,7 +251,7 @@ CRATES=" vcpkg-0.2.15 version_check-0.9.4 waker-fn-1.1.0 - walkdir-2.3.2 + walkdir-2.3.3 want-0.3.0 wasi-0.11.0+wasi-snapshot-preview1 wasm-bindgen-0.2.84 @@ -262,9 +260,9 @@ CRATES=" wasm-bindgen-macro-0.2.84 wasm-bindgen-macro-support-0.2.84 wasm-bindgen-shared-0.2.84 - wayrs-client-0.5.0 - wayrs-protocols-0.5.0 - wayrs-scanner-0.4.0 + wayrs-client-0.10.0 + wayrs-protocols-0.10.0 + wayrs-scanner-0.10.0 web-sys-0.3.61 winapi-0.3.9 winapi-i686-pc-windows-gnu-0.4.0 @@ -292,8 +290,9 @@ CRATES=" windows_x86_64_msvc-0.48.0 winnow-0.4.1 winreg-0.10.1 - zbus-3.11.1 - zbus_macros-3.11.1 + xdg-home-1.0.0 + zbus-3.12.0 + zbus_macros-3.12.0 zbus_names-2.5.0 zvariant-3.12.0 zvariant_derive-3.12.0 @@ -321,8 +320,8 @@ PATCHES=( DEPEND="dev-libs/openssl:= sys-apps/dbus - sys-apps/lm-sensors - notmuch? ( net-mail/notmuch ) + sys-apps/lm-sensors:= + notmuch? ( net-mail/notmuch:= ) pulseaudio? ( media-libs/libpulse )" RDEPEND="${DEPEND}" BDEPEND="man? ( virtual/pandoc )" diff --git a/x11-misc/picom-jonaburg/picom-jonaburg-9999.ebuild b/x11-misc/picom-jonaburg/picom-jonaburg-9999.ebuild index c6eb4e1841..6bafd1eab4 100644 --- a/x11-misc/picom-jonaburg/picom-jonaburg-9999.ebuild +++ b/x11-misc/picom-jonaburg/picom-jonaburg-9999.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_10 ) inherit git-r3 meson python-any-r1 virtualx xdg DESCRIPTION="A lightweight compositor for X11 (previously a compton fork)"