From a68f9c8e922e08f028e066f11d7ee645305a85f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gon=C3=A7alo=20Negrier=20Duarte?= Date: Sat, 8 Jul 2023 13:48:58 +0100 Subject: [PATCH] dev-python/undervolt: new package, add 0.3.0, 9999 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Gonçalo Negrier Duarte --- dev-python/undervolt/Manifest | 1 + dev-python/undervolt/metadata.xml | 7 ++++++ dev-python/undervolt/undervolt-0.3.0.ebuild | 26 +++++++++++++++++++++ dev-python/undervolt/undervolt-9999.ebuild | 24 +++++++++++++++++++ 4 files changed, 58 insertions(+) create mode 100644 dev-python/undervolt/Manifest create mode 100644 dev-python/undervolt/metadata.xml create mode 100644 dev-python/undervolt/undervolt-0.3.0.ebuild create mode 100644 dev-python/undervolt/undervolt-9999.ebuild diff --git a/dev-python/undervolt/Manifest b/dev-python/undervolt/Manifest new file mode 100644 index 0000000000..4bc0c031f7 --- /dev/null +++ b/dev-python/undervolt/Manifest @@ -0,0 +1 @@ +DIST 0.3.0.tar.gz 9161 BLAKE2B 4e23f591c2c765a996bec6f9d4c17d80a4fa8de96648549522a259c63b455833b46554e33024d19768d161c2000bc6ee01a8d183c742a6c689c05c5fecc263ed SHA512 154590a5172bb305e32d464b340ef8c96fc081464dc1090deda364ad47e4eaba010376ab7cb8d001103b64d44bc38c34aff6f9a1bd6125ce5b149ccb6c96065f diff --git a/dev-python/undervolt/metadata.xml b/dev-python/undervolt/metadata.xml new file mode 100644 index 0000000000..8796d312c1 --- /dev/null +++ b/dev-python/undervolt/metadata.xml @@ -0,0 +1,7 @@ + + + + + georgewhewell/undervolt + + diff --git a/dev-python/undervolt/undervolt-0.3.0.ebuild b/dev-python/undervolt/undervolt-0.3.0.ebuild new file mode 100644 index 0000000000..ea4396824f --- /dev/null +++ b/dev-python/undervolt/undervolt-0.3.0.ebuild @@ -0,0 +1,26 @@ +# 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..12} ) + +inherit distutils-r1 + +SRC_URI="https://github.com/georgewhewell/undervolt/archive/refs/tags/${PV}.tar.gz" +DESCRIPTION="Undervolt Intel CPUs under Linux" +HOMEPAGE="https://github.com/georgewhewell/undervolt" + +LICENSE="GPL-2" +SLOT="0" + +KEYWORDS="~amd64 ~x86" + +src_compile() { + distutils-r1_src_compile +} + +src_install() { + distutils-r1_src_install +} diff --git a/dev-python/undervolt/undervolt-9999.ebuild b/dev-python/undervolt/undervolt-9999.ebuild new file mode 100644 index 0000000000..9f5d803b98 --- /dev/null +++ b/dev-python/undervolt/undervolt-9999.ebuild @@ -0,0 +1,24 @@ +# 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..12} ) + +inherit git-r3 distutils-r1 + +EGIT_REPO_URI="https://github.com/georgewhewell/undervolt.git" +DESCRIPTION="Undervolt Intel CPUs under Linux" +HOMEPAGE="https://github.com/georgewhewell/undervolt" + +LICENSE="GPL-2" +SLOT="0" + +src_compile() { + distutils-r1_src_compile +} + +src_install() { + distutils-r1_src_install +}