From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E867F139368 for ; Fri, 13 Aug 2021 06:58:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 147CEE0872; Fri, 13 Aug 2021 06:58:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E7E7FE0872 for ; Fri, 13 Aug 2021 06:58:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 232A1342B53 for ; Fri, 13 Aug 2021 06:58:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 66B2E8BB for ; Fri, 13 Aug 2021 06:58:05 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1628837863.2b9bbad9de27c93fb07577866bf0cbd1f1f2e897.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/eclean-kernel/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/eclean-kernel/eclean-kernel-2.99.3.ebuild app-admin/eclean-kernel/eclean-kernel-9999.ebuild X-VCS-Directories: app-admin/eclean-kernel/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 2b9bbad9de27c93fb07577866bf0cbd1f1f2e897 X-VCS-Branch: master Date: Fri, 13 Aug 2021 06:58:05 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c55236c5-7723-4147-a957-fd6c393c8a5a X-Archives-Hash: c5fd977f158693877a5c243afdae6ef7 commit: 2b9bbad9de27c93fb07577866bf0cbd1f1f2e897 Author: Michał Górny gentoo org> AuthorDate: Fri Aug 13 06:06:08 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Aug 13 06:57:43 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b9bbad9 app-admin/eclean-kernel: Add compressor rdeps Signed-off-by: Michał Górny gentoo.org> app-admin/eclean-kernel/eclean-kernel-2.99.3.ebuild | 10 +++++++--- app-admin/eclean-kernel/eclean-kernel-9999.ebuild | 10 +++++++--- 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/app-admin/eclean-kernel/eclean-kernel-2.99.3.ebuild b/app-admin/eclean-kernel/eclean-kernel-2.99.3.ebuild index f5d2e9c65b8..f4274285b26 100644 --- a/app-admin/eclean-kernel/eclean-kernel-2.99.3.ebuild +++ b/app-admin/eclean-kernel/eclean-kernel-2.99.3.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{7..9} ) +PYTHON_COMPAT=( python3_{8..9} ) inherit distutils-r1 DESCRIPTION="Remove outdated built kernels" @@ -13,8 +13,12 @@ SRC_URI="https://github.com/mgorny/eclean-kernel/archive/v${PV}.tar.gz -> ${P}.t LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" +IUSE="lz4 lzo zstd" -RDEPEND="kernel_linux? ( dev-python/pymountboot[${PYTHON_USEDEP}] )" +RDEPEND=" + kernel_linux? ( dev-python/pymountboot[${PYTHON_USEDEP}] ) + lz4? ( dev-python/lz4[${PYTHON_USEDEP}] ) + lzo? ( dev-python/python-lzo[${PYTHON_USEDEP}] ) + zstd? ( dev-python/zstandard[${PYTHON_USEDEP}] )" distutils_enable_tests pytest diff --git a/app-admin/eclean-kernel/eclean-kernel-9999.ebuild b/app-admin/eclean-kernel/eclean-kernel-9999.ebuild index 65468374c08..2e9db8819be 100644 --- a/app-admin/eclean-kernel/eclean-kernel-9999.ebuild +++ b/app-admin/eclean-kernel/eclean-kernel-9999.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{7..9} ) +PYTHON_COMPAT=( python3_{8..9} ) inherit distutils-r1 git-r3 DESCRIPTION="Remove outdated built kernels" @@ -13,8 +13,12 @@ EGIT_REPO_URI="https://github.com/mgorny/eclean-kernel.git" LICENSE="BSD" SLOT="0" KEYWORDS="" -IUSE="" +IUSE="lz4 lzo zstd" -RDEPEND="kernel_linux? ( dev-python/pymountboot[${PYTHON_USEDEP}] )" +RDEPEND=" + kernel_linux? ( dev-python/pymountboot[${PYTHON_USEDEP}] ) + lz4? ( dev-python/lz4[${PYTHON_USEDEP}] ) + lzo? ( dev-python/python-lzo[${PYTHON_USEDEP}] ) + zstd? ( dev-python/zstandard[${PYTHON_USEDEP}] )" distutils_enable_tests pytest