diff options
author | Wolfgang Müller | 2023-09-23 18:58:00 +0200 |
---|---|---|
committer | Wolfgang Müller | 2023-09-23 18:58:00 +0200 |
commit | 1db9df7b1d1ced4bacb9ad1e43ff60830c2101b1 (patch) | |
tree | c3b73b1aac3d572d1dfb3b638bb7f4e1b82aa4e1 | |
parent | b73cf7dc4497e57e8531a560df3ac3ec28356250 (diff) | |
download | pramantha-1db9df7b1d1ced4bacb9ad1e43ff60830c2101b1.tar.gz |
sys-power/upp: new package, add 0.1.7
-rw-r--r-- | sys-power/upp/Manifest | 3 | ||||
-rw-r--r-- | sys-power/upp/metadata.xml | 11 | ||||
-rw-r--r-- | sys-power/upp/upp-0.1.7.ebuild | 25 |
3 files changed, 39 insertions, 0 deletions
diff --git a/sys-power/upp/Manifest b/sys-power/upp/Manifest new file mode 100644 index 0000000..9d319fa --- /dev/null +++ b/sys-power/upp/Manifest @@ -0,0 +1,3 @@ +DIST upp-0.1.7.tar.gz 72841 BLAKE2B 9fe3ad2ef66144c2b8b60ccc6d2e84dfed44c0adfabb0950820b22a7693c00613f1e216c874d503e7f8df5b0fa2e82c0db778270d433c2f82c368daa079d613e SHA512 aa0672444436f8136a333a24e3fc7f5597fc198a763d2222b295b23eadde559d8afb7706a4909220ab4cc009ccafbf61410bb6113cdb904e0dcf0aa38d26eef1 +EBUILD upp-0.1.7.ebuild 520 BLAKE2B c4e675bb68752da1543a9b4ceb5dec50dd56abf779ec3fdfb12d10345087e4c69b39af820f56b873afb4359d5519bd5b339d42807e59bd474e9f6933bb17001f SHA512 57c9781c557fc05262d71ecd76bebba36dabef51ee9987627a75f5f78ad014b49f22de7977802ed8369f9aa49bddbb5746a1108ba8da1b8245a15cc1c66c1aec +MISC metadata.xml 338 BLAKE2B e05d3130c3c4b5c623ce85788955e77f15ad6fbba3c8683fd85d76f8512da5dcc3be6d285ae1103c2e67d93848c2d9603d26b54a37eeb74291e0592267bddf94 SHA512 e87378cc6e35713e80a2d0537ac26da4a172d6c23fa8b99313c937005a06152aebbaffee12d89929a90660ba4b3bf4cd945f7c809414c270df3d0c3fcad11a83 diff --git a/sys-power/upp/metadata.xml b/sys-power/upp/metadata.xml new file mode 100644 index 0000000..07b17b0 --- /dev/null +++ b/sys-power/upp/metadata.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>wolf@oriole.systems</email> + </maintainer> + <upstream> + <remote-id type="github">sibradzic/upp</remote-id> + <remote-id type="pypi">upp</remote-id> + </upstream> +</pkgmetadata> diff --git a/sys-power/upp/upp-0.1.7.ebuild b/sys-power/upp/upp-0.1.7.ebuild new file mode 100644 index 0000000..f697ec6 --- /dev/null +++ b/sys-power/upp/upp-0.1.7.ebuild @@ -0,0 +1,25 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{11,12} ) +DISTUTILS_USE_PEP517=setuptools +inherit distutils-r1 pypi + +DESCRIPTION="A tool for parsing, dumping and modifying data in Radeon PowerPlay tables" +HOMEPAGE="https://github.com/sibradzic/upp https://pypi.org/project/upp/" + +KEYWORDS="amd64 x86" + +RESTRICT="test" + +LICENSE="GPL-3" +SLOT="0" +IUSE="" + +RDEPEND="${PYTHON_DEPS} + dev-python/click[${PYTHON_USEDEP}] +" + +DEPEND="${RDEPEND}" |