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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 896731581C1 for ; Fri, 5 Jul 2024 10:53:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D3D9E2BC0A7; Fri, 5 Jul 2024 10:53:57 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BCCB62BC0A7 for ; Fri, 5 Jul 2024 10:53:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 00B0834306D for ; Fri, 5 Jul 2024 10:53:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8C0071DC6 for ; Fri, 5 Jul 2024 10:53:55 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1720176815.5f3a9fa9a91faa243ec9affa842c717c33c8a9b6.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/kcheck/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/kcheck/kcheck-9999.ebuild X-VCS-Directories: sys-apps/kcheck/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 5f3a9fa9a91faa243ec9affa842c717c33c8a9b6 X-VCS-Branch: master Date: Fri, 5 Jul 2024 10:53:55 +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: f32c5c4e-c56d-4387-ab88-b9ba47050b66 X-Archives-Hash: bdba34615d50f2c84f81762a11ffb5d5 commit: 5f3a9fa9a91faa243ec9affa842c717c33c8a9b6 Author: Arthur Zamarin gentoo org> AuthorDate: Fri Jul 5 10:53:35 2024 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Fri Jul 5 10:53:35 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f3a9fa9 sys-apps/kcheck: remvoe stale live ebuild Signed-off-by: Arthur Zamarin gentoo.org> sys-apps/kcheck/kcheck-9999.ebuild | 32 -------------------------------- 1 file changed, 32 deletions(-) diff --git a/sys-apps/kcheck/kcheck-9999.ebuild b/sys-apps/kcheck/kcheck-9999.ebuild deleted file mode 100644 index f1cb161e868b..000000000000 --- a/sys-apps/kcheck/kcheck-9999.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python3_{9..10} ) - -inherit distutils-r1 - -if [[ ${PV} == 9999 ]]; then - EGIT_REPO_URI="https://github.com/wraeth/kcheck" - inherit git-r3 -else - SRC_URI="https://github.com/wraeth/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -fi - -DESCRIPTION="Record and check required kernel symbols are set" -HOMEPAGE="https://github.com/wraeth/kcheck" - -LICENSE="MIT" -SLOT="0" - -RDEPEND=" - dev-python/ConfigArgParse[${PYTHON_USEDEP}] - sys-apps/portage[${PYTHON_USEDEP}]" - -src_install() { - distutils-r1_src_install - mkdir "${D}"/etc || die - mv -v "${D}"/{usr/,}etc/kcheck.conf || die - rmdir -v "${D}"/usr/etc || die -}