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 2D74115800A for ; Thu, 13 Jul 2023 06:46:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 74DEFE086D; Thu, 13 Jul 2023 06:46:50 +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 6011EE086D for ; Thu, 13 Jul 2023 06:46:50 +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 A1419335CE3 for ; Thu, 13 Jul 2023 06:46:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 11244ACE for ; Thu, 13 Jul 2023 06:46:48 +0000 (UTC) From: "Jakov Smolić" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jakov Smolić" Message-ID: <1689230791.881cda72ae32b96ac62e5349d753bca87e402c78.jsmolic@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-kernel/kergen/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-kernel/kergen/kergen-0.1.5-r1.ebuild X-VCS-Directories: sys-kernel/kergen/ X-VCS-Committer: jsmolic X-VCS-Committer-Name: Jakov Smolić X-VCS-Revision: 881cda72ae32b96ac62e5349d753bca87e402c78 X-VCS-Branch: master Date: Thu, 13 Jul 2023 06:46:48 +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: 37a86c7a-a06a-415c-b91e-6211e2531a3f X-Archives-Hash: 75ed965f9ca531e12af46f573521190f commit: 881cda72ae32b96ac62e5349d753bca87e402c78 Author: Jakov Smolić gentoo org> AuthorDate: Wed Jul 12 11:13:43 2023 +0000 Commit: Jakov Smolić gentoo org> CommitDate: Thu Jul 13 06:46:31 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=881cda72 sys-kernel/kergen: Migrate to DISTUTILS_USE_PEP517 Closes: https://bugs.gentoo.org/910039 Signed-off-by: Jakov Smolić gentoo.org> sys-kernel/kergen/kergen-0.1.5-r1.ebuild | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/sys-kernel/kergen/kergen-0.1.5-r1.ebuild b/sys-kernel/kergen/kergen-0.1.5-r1.ebuild new file mode 100644 index 000000000000..c1cc79a36986 --- /dev/null +++ b/sys-kernel/kergen/kergen-0.1.5-r1.ebuild @@ -0,0 +1,17 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{9..11} ) + +inherit distutils-r1 + +DESCRIPTION="Kernel config generator" +HOMEPAGE="https://github.com/nichoski/kergen" +SRC_URI="https://github.com/nichoski/kergen/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86"