From a929faef073604d472520b89451b890b2ea7c30b Mon Sep 17 00:00:00 2001 From: Alexey Zapparov Date: Sun, 26 May 2024 14:50:34 +0200 Subject: [PATCH 1/7] dev-ruby/ruby-install: add 0.9.3, drop old ones Signed-off-by: Alexey Zapparov --- dev-ruby/ruby-install/Manifest | 4 +- .../ruby-install-0.9.1-fix-version.patch | 13 ----- .../ruby-install/ruby-install-0.8.5.ebuild | 44 ----------------- .../ruby-install/ruby-install-0.9.1.ebuild | 48 ------------------- ...0.9.0.ebuild => ruby-install-0.9.3.ebuild} | 4 +- 5 files changed, 3 insertions(+), 110 deletions(-) delete mode 100644 dev-ruby/ruby-install/files/ruby-install-0.9.1-fix-version.patch delete mode 100644 dev-ruby/ruby-install/ruby-install-0.8.5.ebuild delete mode 100644 dev-ruby/ruby-install/ruby-install-0.9.1.ebuild rename dev-ruby/ruby-install/{ruby-install-0.9.0.ebuild => ruby-install-0.9.3.ebuild} (86%) diff --git a/dev-ruby/ruby-install/Manifest b/dev-ruby/ruby-install/Manifest index 59455c7430..885193ab40 100644 --- a/dev-ruby/ruby-install/Manifest +++ b/dev-ruby/ruby-install/Manifest @@ -1,3 +1 @@ -DIST ruby-install-0.8.5.tar.gz 32904 BLAKE2B 6128d489c53c02b53b96f243a7c5fd3de2a360eac8ed7873c89cfafb229e611f77f3275e66bb1aef0ccad772029f7727c0e4a62c6dc74ec1780c7badd219cc52 SHA512 4f5546652e741eb4b1b72780a73e0b41b8bd212dd979e31124b8a1a96e9bbebdcb7951da20768b992776206a446b489214f2b1261255855760e2e3477118f8d7 -DIST ruby-install-0.9.0.tar.gz 34536 BLAKE2B de44b380b47f1c194bd9c39e43527c48b61f051bc126b051d87ce23db7d5ed3c6f46a97ff454e847a47fe16535c15d5903839f07ed30446f0b2f0d063364961b SHA512 d40195519d4d49749e13fb9d1c2e8f6a4c4c7b1cb4c419ce737a2dc2f7f6fb80b0783626bfe4b4bdd642a189d6fd641a5a121a4fa661e8a7539b4eefa12435ae -DIST ruby-install-0.9.1.tar.gz 35732 BLAKE2B b61d882d9f7a1c8e07b0b094689f6606f1a80fd03f334b2d6365e0a9b18a0ca6829ef0db009fa783821cfb58a13dc130d96a280775027a7d901eb599f0900b34 SHA512 48fdc6904b5ab7f4cb6f18385432edade88bf2f388ef167ab2752b51841a481fc0f1b735169b6ef50f2dd070e1e59c28d21c7a4aa8dabe292a668b5d41db52a7 +DIST ruby-install-0.9.3.tar.gz 39008 BLAKE2B aa498ec23eb96f1732e4b46b286939e9f39e632d1215e70bdcbc4ae05d2e490711ba4f9ae2766af4bb068e5ed9dbb041f118ff8fd4b6fb430294f5d7c84cf417 SHA512 4c9576ba5a825b696d4586034110adabbb687a8cefb27ade2d2129a23463ea7d9c01372c92395a1fcc2d35655a0d5f708a9d1368ee33051add602a8676da3c9e diff --git a/dev-ruby/ruby-install/files/ruby-install-0.9.1-fix-version.patch b/dev-ruby/ruby-install/files/ruby-install-0.9.1-fix-version.patch deleted file mode 100644 index 040452eed2..0000000000 --- a/dev-ruby/ruby-install/files/ruby-install-0.9.1-fix-version.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/share/ruby-install/ruby-install.sh b/share/ruby-install/ruby-install.sh -index 976c2277..a0457d9f 100644 ---- a/share/ruby-install/ruby-install.sh -+++ b/share/ruby-install/ruby-install.sh -@@ -2,7 +2,7 @@ - - shopt -s extglob - --ruby_install_version="0.9.0" -+ruby_install_version="0.9.1" - ruby_install_dir="${BASH_SOURCE[0]%/*}" - ruby_install_cache_dir="${XDG_CACHE_HOME:-$HOME/.cache}/ruby-install" - diff --git a/dev-ruby/ruby-install/ruby-install-0.8.5.ebuild b/dev-ruby/ruby-install/ruby-install-0.8.5.ebuild deleted file mode 100644 index 706d5e5d21..0000000000 --- a/dev-ruby/ruby-install/ruby-install-0.8.5.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 2021-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="Installs Ruby, JRuby, Rubinius, TruffleRuby (native / GraalVM), or mruby." -HOMEPAGE="https://github.com/postmodern/ruby-install" -SRC_URI="https://github.com/postmodern/ruby-install/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="test" - -PROPERTIES="test_network" -RESTRICT="!test? ( test )" - -DEPEND=">=app-shells/bash-3.0:*" -RDEPEND="${DEPEND} - sys-apps/grep - || ( >net-misc/wget-1.12 net-misc/curl ) - dev-libs/openssl - app-arch/tar - app-arch/bzip2 - app-arch/xz-utils - sys-devel/patch - || ( >=sys-devel/gcc-4.2 sys-devel/clang )" -BDEPEND="test? ( dev-util/shunit2 )" - -# XXX: `make check` seems to be broken (violates shellcheck tests) -src_test() { - emake test -} - -src_prepare() { - default - - sed -i Makefile -e "s/^VERSION=.\+$/VERSION=${PVR}/" \ - || die "Cannot fix doc location to follow Gentoo/FHS guidelines" -} - -src_install() { - emake DESTDIR="${D}" PREFIX="/usr" install -} diff --git a/dev-ruby/ruby-install/ruby-install-0.9.1.ebuild b/dev-ruby/ruby-install/ruby-install-0.9.1.ebuild deleted file mode 100644 index 4e4057cefa..0000000000 --- a/dev-ruby/ruby-install/ruby-install-0.9.1.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 2021-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="Installs Ruby, JRuby, Rubinius, TruffleRuby (native / GraalVM), or mruby." -HOMEPAGE="https://github.com/postmodern/ruby-install" -SRC_URI="https://github.com/postmodern/ruby-install/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="test" - -PROPERTIES="test_network" -RESTRICT="!test? ( test )" - -DEPEND=">=app-shells/bash-3.0:*" -RDEPEND="${DEPEND} - sys-apps/grep - || ( >net-misc/wget-1.12 net-misc/curl ) - dev-libs/openssl - app-arch/tar - app-arch/bzip2 - app-arch/xz-utils - sys-devel/patch - || ( >=sys-devel/gcc-4.2 sys-devel/clang )" -BDEPEND="test? ( dev-util/shunit2 )" - -PATCHES=( - "${FILESDIR}/${P}-fix-version.patch" -) - -# BUG: `make check` fails: https://github.com/postmodern/ruby-install/issues/442 -src_test() { - emake test -} - -src_prepare() { - default - - sed -i Makefile -e "s/^VERSION=.\+$/VERSION=${PVR}/" \ - || die "Cannot fix doc location to follow Gentoo/FHS guidelines" -} - -src_install() { - emake DESTDIR="${D}" PREFIX="/usr" install -} diff --git a/dev-ruby/ruby-install/ruby-install-0.9.0.ebuild b/dev-ruby/ruby-install/ruby-install-0.9.3.ebuild similarity index 86% rename from dev-ruby/ruby-install/ruby-install-0.9.0.ebuild rename to dev-ruby/ruby-install/ruby-install-0.9.3.ebuild index 6316a7848d..27cb8a5e4c 100644 --- a/dev-ruby/ruby-install/ruby-install-0.9.0.ebuild +++ b/dev-ruby/ruby-install/ruby-install-0.9.3.ebuild @@ -3,7 +3,7 @@ EAPI=8 -DESCRIPTION="Installs Ruby, JRuby, Rubinius, TruffleRuby (native / GraalVM), or mruby." +DESCRIPTION="Installs Ruby, JRuby, Rubinius, TruffleRuby, or MRuby." HOMEPAGE="https://github.com/postmodern/ruby-install" SRC_URI="https://github.com/postmodern/ruby-install/archive/v${PV}.tar.gz -> ${P}.tar.gz" @@ -35,7 +35,7 @@ src_test() { src_prepare() { default - sed -i Makefile -e "s/^VERSION=.\+$/VERSION=${PVR}/" \ + sed -i Makefile -e "s/^VERSION=${PV}$/VERSION=${PVR}/" \ || die "Cannot fix doc location to follow Gentoo/FHS guidelines" } From fac24386c0dbee345d3688bd0460516b1133b70a Mon Sep 17 00:00:00 2001 From: Julien Roy Date: Sun, 26 May 2024 08:48:15 -0400 Subject: [PATCH 2/7] dev-python/oauth2: treeclean Signed-off-by: Julien Roy --- dev-python/oauth2/Manifest | 1 - dev-python/oauth2/metadata.xml | 25 ----------------------- dev-python/oauth2/oauth2-1.9.ebuild | 31 ----------------------------- 3 files changed, 57 deletions(-) delete mode 100644 dev-python/oauth2/Manifest delete mode 100644 dev-python/oauth2/metadata.xml delete mode 100644 dev-python/oauth2/oauth2-1.9.ebuild diff --git a/dev-python/oauth2/Manifest b/dev-python/oauth2/Manifest deleted file mode 100644 index e36d62201c..0000000000 --- a/dev-python/oauth2/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST oauth2-1.9.gh.tar.gz 27353 BLAKE2B 07fd62f16e4053d2bac7c1ab672fd178967ff20c9e3ecd6a1c31d5898fa0aeb6170944b07b2345f73aa9b2928622e7e0e88f2a96cf0d0bb4ea89417de80917cd SHA512 ba3183aa4e5512920fa540955321646c167d23dfd4bc2fad4d5426e1b71e35e91fe11f6cd919a7913015f9bf33c43849659cb97c862a57b5c2e288ace29ad452 diff --git a/dev-python/oauth2/metadata.xml b/dev-python/oauth2/metadata.xml deleted file mode 100644 index 1a6a39cdcc..0000000000 --- a/dev-python/oauth2/metadata.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - This library implements OAuth 1.0 and not OAuth 2.0. - - This code was originally forked from Leah Culver and Andy Smith's oauth.py code. Some of the tests come from a fork by Vic Fryzel, while a revamped Request class and more tests were merged in from Mark Paschal's fork. A number of notable differences exist between this code and its forefathers: - - 100% unit test coverage. - The DataStore object has been completely ripped out. While creating unit tests for the library I found several substantial bugs with the implementation and confirmed with Andy Smith that it was never fully baked. - Classes are no longer prefixed with OAuth. - The Request class now extends from dict. - The library is likely no longer compatible with Python 2.3. - The Client class works and extends from httplib2. It's a thin wrapper that handles automatically signing any normal HTTP request you might wish to make. - - - Vitaly Zdanevich - zdanevich.vitaly@ya.ru - - - joestump/python-oauth2 - oauth2 - https://github.com/joestump/python-oauth2/issues - - diff --git a/dev-python/oauth2/oauth2-1.9.ebuild b/dev-python/oauth2/oauth2-1.9.ebuild deleted file mode 100644 index 602912ffef..0000000000 --- a/dev-python/oauth2/oauth2-1.9.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYPI_NO_NORMALIZE=1 -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{3..12} ) - -inherit distutils-r1 - -DESCRIPTION="A fully tested, abstract interface to creating OAuth clients and servers." -HOMEPAGE="https://github.com/joestump/python-oauth2" -SRC_URI="https://github.com/joestump/python-${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz" -S="${WORKDIR}"/python-${P} - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -RDEPEND="dev-python/httplib2[${PYTHON_USEDEP}] -dev-python/mock[${PYTHON_USEDEP}] -dev-python/pycodestyle[${PYTHON_USEDEP}] -dev-python/pytest[${PYTHON_USEDEP}]" - -src_prepare() { - rm -rf "${S}/tests" - distutils-r1_src_prepare -} From 338bc832c264a108366edf26acbfa8be4f0d6344 Mon Sep 17 00:00:00 2001 From: Julien Roy Date: Sun, 26 May 2024 08:48:29 -0400 Subject: [PATCH 3/7] dev-python/python-oauth2: treeclean Signed-off-by: Julien Roy --- dev-python/python-oauth2/Manifest | 3 -- dev-python/python-oauth2/metadata.xml | 11 ------- .../python-oauth2-1.1.1-r1.ebuild | 32 ------------------- 3 files changed, 46 deletions(-) delete mode 100644 dev-python/python-oauth2/Manifest delete mode 100644 dev-python/python-oauth2/metadata.xml delete mode 100644 dev-python/python-oauth2/python-oauth2-1.1.1-r1.ebuild diff --git a/dev-python/python-oauth2/Manifest b/dev-python/python-oauth2/Manifest deleted file mode 100644 index 6e9c045c06..0000000000 --- a/dev-python/python-oauth2/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -DIST python-oauth2-1.1.1.tar.gz 45363 BLAKE2B 26d502ab0f577d1ec50462bec50ce43ae94f7fd54ccc9145c731b2c1c2795f84eb939bdaea6fea43b8866076f065700a04f329c84c52114e3455507da0058d10 SHA512 5dad5ebf38298379fb430426f57f705bcfe38137c418d7b5afa837ab2473e699e0bf63cbc2078c28ca87fcdb10303f5a94cc4028739217c352eecb280a8e7847 -EBUILD python-oauth2-1.1.1-r1.ebuild 853 BLAKE2B ccd124326b21dd8a81ae8974d68eb2c8c09bfc3c2cb3f6af4782c1f233b6e88ed5918b50d6b3422e33ec369681f7ecd4fbec80b238f5b39594a9f7dfd31147ef SHA512 d139b094c6ce867bfc2cc37d39c9db6d4eb609c8704cf0f176880e24f8f39c1983a3ea3d21733f46d53302a3feb601e82732326f73481ad0df386b3d9ecca925 -MISC metadata.xml 344 BLAKE2B d89e439120cb6b7ea6e0543dcef2f107af475d9d13b9a5f2c6a79b5da4560434ff59f79929911a6f33f2459087d4001ac86815a3bd7019daa4b502ba72458c81 SHA512 aff830a58350d81f6c73a6a2249654f7b8982557dabe04bace6b05084eb940e94c07899c597f62845579a5d5e1bac2582fca230dfba153ced5581af729237e7f diff --git a/dev-python/python-oauth2/metadata.xml b/dev-python/python-oauth2/metadata.xml deleted file mode 100644 index 1fb0f14ac8..0000000000 --- a/dev-python/python-oauth2/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - zdanevich.vitaly@ya.ru - - - frida/frida - python-oauth2 - - diff --git a/dev-python/python-oauth2/python-oauth2-1.1.1-r1.ebuild b/dev-python/python-oauth2/python-oauth2-1.1.1-r1.ebuild deleted file mode 100644 index d64ad58965..0000000000 --- a/dev-python/python-oauth2/python-oauth2-1.1.1-r1.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..12} ) -PYPI_NO_NORMALIZE=1 -DISTUTILS_USE_PEP517=setuptools -inherit distutils-r1 pypi - -DESCRIPTION="OAuth 2.0 provider for python" -HOMEPAGE="https://pypi.python.org/pypi/python-oauth2" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -RESTRICT="test" - -RDEPEND="dev-python/pymongo[${PYTHON_USEDEP}] - dev-python/python-memcached[${PYTHON_USEDEP}] - dev-python/redis[${PYTHON_USEDEP}] - dev-python/tornado[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND}" -# test? ( dev-python/mock[${PYTHON_USEDEP}] -# )" - -#python_test() { -# # Skip tests which require network access -# py.test -k "not (test_access_token_post or test_access_token_get \ -# or test_two_legged_post or test_two_legged_get)" || die \ -# "tests failed with ${EPYTHON}" -#} From 75fa1a7cf0c1783b53b91570045fde4ed3cae6cf Mon Sep 17 00:00:00 2001 From: Julien Roy Date: Sun, 26 May 2024 08:50:10 -0400 Subject: [PATCH 4/7] dev-python/evernote3: treeclean Signed-off-by: Julien Roy --- dev-python/evernote3/Manifest | 1 - dev-python/evernote3/evernote3-1.25.14.ebuild | 21 ------------------- dev-python/evernote3/metadata.xml | 13 ------------ 3 files changed, 35 deletions(-) delete mode 100644 dev-python/evernote3/Manifest delete mode 100644 dev-python/evernote3/evernote3-1.25.14.ebuild delete mode 100644 dev-python/evernote3/metadata.xml diff --git a/dev-python/evernote3/Manifest b/dev-python/evernote3/Manifest deleted file mode 100644 index 0d8a334a78..0000000000 --- a/dev-python/evernote3/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST evernote3-1.25.14.tar.gz 128787 BLAKE2B d3be20f6f582d30e19d20e8c91920f3b09588d035f337b784064c9659df6ce22cb6ece3736ced60dc33d8f04a0544241314cc5efd54a238f38b865361433155d SHA512 a7f80bb804c69274fb48a33f039787fcf8ee45a4af380f1e757df4f7b36bcfdf855a0776e8f7140286db1d1c52480c5be9d08ade3fc02d8d743f62329e48b287 diff --git a/dev-python/evernote3/evernote3-1.25.14.ebuild b/dev-python/evernote3/evernote3-1.25.14.ebuild deleted file mode 100644 index 659359ecf8..0000000000 --- a/dev-python/evernote3/evernote3-1.25.14.ebuild +++ /dev/null @@ -1,21 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{10..12} ) -DISTUTILS_USE_PEP517=setuptools - -inherit distutils-r1 pypi - -DESCRIPTION="Evernote SDK" -HOMEPAGE="https://github.com/Evernote/evernote-sdk-python3" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND="dev-python/oauth2[${PYTHON_USEDEP}] -dev-python/oauthlib[${PYTHON_USEDEP}] -dev-python/requests[${PYTHON_USEDEP}] -dev-python/requests-oauthlib[${PYTHON_USEDEP}]" diff --git a/dev-python/evernote3/metadata.xml b/dev-python/evernote3/metadata.xml deleted file mode 100644 index a57a2fa070..0000000000 --- a/dev-python/evernote3/metadata.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - Vitaly Zdanevich - zdanevich.vitaly@ya.ru - - - Evernote/evernote-sdk-python3 - evernote3 - https://github.com/Evernote/evernote-sdk-python3/issues - - From bca0e24008b1e3ce5d61e11b51212e217d8d8e21 Mon Sep 17 00:00:00 2001 From: Julien Roy Date: Sun, 26 May 2024 08:50:57 -0400 Subject: [PATCH 5/7] app-shells/zsh-silver: treeclean Signed-off-by: Julien Roy --- app-shells/zsh-silver/metadata.xml | 13 -------- app-shells/zsh-silver/zsh-silver-9999.ebuild | 35 -------------------- 2 files changed, 48 deletions(-) delete mode 100644 app-shells/zsh-silver/metadata.xml delete mode 100644 app-shells/zsh-silver/zsh-silver-9999.ebuild diff --git a/app-shells/zsh-silver/metadata.xml b/app-shells/zsh-silver/metadata.xml deleted file mode 100644 index a9c4c76e0d..0000000000 --- a/app-shells/zsh-silver/metadata.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - Leonardo Hernández Hernández - leohdz172@proton.me - - - https://github.com/silver-prompt/zsh/issues - https://github.com/silver-prompt/zsh/blob/master/README.md - silver-prompt/zsh - - diff --git a/app-shells/zsh-silver/zsh-silver-9999.ebuild b/app-shells/zsh-silver/zsh-silver-9999.ebuild deleted file mode 100644 index abd6ff029c..0000000000 --- a/app-shells/zsh-silver/zsh-silver-9999.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="Zsh plugin for silver" -HOMEPAGE="https://github.com/silver-prompt/zsh" - -inherit git-r3 -EGIT_REPO_URI="https://github.com/silver-prompt/zsh.git" - -LICENSE="GPL-3" -SLOT="0" - -RDEPEND=" - app-shells/zsh - app-shells/silver -" - -DEPEND="${RDEPEND}" - -src_install() { - insinto /usr/share/zsh/site-contrib/zsh-silver - doins silver.plugin.zsh - - einstalldocs -} - -pkg_postinst() { - elog - elog "In order to use ${CATEGORY}/${PN} add" - elog ". /usr/share/zsh/site-contrib/zsh-silver/silver.plugin.zsh" - elog "at the end of your ~/.zshrc" - elog -} From 442f32be57c8beb903e910ce0322a74d85b0680d Mon Sep 17 00:00:00 2001 From: Julien Roy Date: Sun, 26 May 2024 08:51:51 -0400 Subject: [PATCH 6/7] profiles: remove mask from treecleaned packages Signed-off-by: Julien Roy --- profiles/package.mask | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/profiles/package.mask b/profiles/package.mask index 9d490d25cb..92c8f7b88d 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -93,12 +93,6 @@ dev-python/hypothesmith # Masked for removal on 2024-05-28 x11-terms/rio-terminfo -# David Roman (2024-04-27) -# Only a live ebuild without tests, inactive for +4 years -# The package consist only of a 20 line zsh script -# Removal on 2024-05-26 -app-shells/zsh-silver - # Lucio Sauer (2024-04-27) # Archived upstream, no revdeps, known security bugs, open downstream bugs # https://github.com/ad-oliviero/uwufetch/issues/257 @@ -106,17 +100,6 @@ app-shells/zsh-silver # Removal on 2024-05-27 app-misc/uwufetch -# David Roman (2024-04-27) -# According to the maintainer it does no longer works -# Removal on 2024-05-26 -dev-python/evernote3 - -# David Roman (2024-04-27) -# Only needed by evernote2 and is deprecated and abandoned by upstream -# Removal on 2024-05-26 -dev-python/python-oauth2 -dev-python/oauth2 - # Julien Roy (2024-03-21) # sys-libs/libucontext is masked in ::gentoo sys-libs/gcompat From 67f556ec28b3ba81b9d00a6c2c5f165e39f27bb8 Mon Sep 17 00:00:00 2001 From: Julien Roy Date: Sun, 26 May 2024 08:52:26 -0400 Subject: [PATCH 7/7] profiles: fix mask for clevis Signed-off-by: Julien Roy --- profiles/package.mask | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiles/package.mask b/profiles/package.mask index 92c8f7b88d..e21e6e5e0d 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -107,7 +107,7 @@ sys-libs/gcompat # Julien Roy (2024-03-09) # Dracut fails to boot with Clevis 20 # https://github.com/latchset/clevis/issues/456 -=app-crypt/clevis-20 +~app-crypt/clevis-20 # Viorel Munteanu (2023-06-07) # Does not work on no-multilib profiles and cannot be masked per profile