summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Hartmann <sultan@gentoo.org>2023-01-14 18:45:56 +0100
committerStephan Hartmann <sultan@gentoo.org>2023-01-14 18:45:56 +0100
commit35742945f0a55c7a541669266e83c56f7f74f7a3 (patch)
treef3b533a593b5ded4c1a003fa7fe2084e0f65f06a /app-misc/liquidctl
parentapp-misc/liquidctl: add 1.12.1 (diff)
downloadgentoo-35742945f0a55c7a541669266e83c56f7f74f7a3.tar.gz
gentoo-35742945f0a55c7a541669266e83c56f7f74f7a3.tar.bz2
gentoo-35742945f0a55c7a541669266e83c56f7f74f7a3.zip
app-misc/liquidctl: drop 1.12.0
Signed-off-by: Stephan Hartmann <sultan@gentoo.org>
Diffstat (limited to 'app-misc/liquidctl')
-rw-r--r--app-misc/liquidctl/Manifest1
-rw-r--r--app-misc/liquidctl/liquidctl-1.12.0.ebuild53
2 files changed, 0 insertions, 54 deletions
diff --git a/app-misc/liquidctl/Manifest b/app-misc/liquidctl/Manifest
index 77760ab0c8e2..6f7dedb2be43 100644
--- a/app-misc/liquidctl/Manifest
+++ b/app-misc/liquidctl/Manifest
@@ -1,3 +1,2 @@
DIST liquidctl-1.11.1.tar.gz 1836371 BLAKE2B e302251855b48405d811287061df3593f0549f02d8d369ae0c0178c27722b69e3c589763de5a963e2b2a37d88f3213e649da9e6f74db59a36f9b803d33d2b038 SHA512 06c11eb0bb258ec4111e885d5ed2bf89842fc0a9bfbc57aee6c86d405808d9bd9582fa137beac7250949448454412d03ade0bc3ee16cd3bd8de3fff66a0cc1bf
-DIST liquidctl-1.12.0.tar.gz 1841834 BLAKE2B b3922a55db32234cf87914530beccbf58943fb66a9c71f94ed7135187035ad901da364fcab87dbfc8c57312d494e2daec7fabcfff6823b7b55fbb3b538db889b SHA512 6c55cd223e64a6f202dca0331fdb352c8402de859bd01b1eed1d9f3859fd9b6371393b2e365c642dd9a24e76adb5a1f6a9c0603214b3198c3c0ee4e7a8fafd39
DIST liquidctl-1.12.1.tar.gz 1842721 BLAKE2B b3732d4192fef2a2dfcb8edd42a3fb0d5c2f9b32c43a8950561e302a122fe4c993338035d3b779929e625257f4f59576550bfbf8a334c1b1fbba868ed0abc562 SHA512 37e81f29516d051603fb50f9fd5e6b6646a02d2aea1dc1d4247b2286a9649f79b85c4d856ab5f1df04ae2f3eecc2ebc4f865e08b28be85c2915be9723854cf7a
diff --git a/app-misc/liquidctl/liquidctl-1.12.0.ebuild b/app-misc/liquidctl/liquidctl-1.12.0.ebuild
deleted file mode 100644
index 7efd2e56d181..000000000000
--- a/app-misc/liquidctl/liquidctl-1.12.0.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 2022-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-PYTHON_COMPAT=( python3_{9..10} )
-DISTUTILS_USE_PEP517=setuptools
-
-inherit distutils-r1 udev
-
-DESCRIPTION="Cross-platform tool and drivers for liquid coolers and other devices"
-HOMEPAGE="https://github.com/liquidctl/liquidctl"
-SRC_URI="https://github.com/liquidctl/liquidctl/releases/download/v${PV}/${P}.tar.gz"
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="
- dev-python/colorlog[${PYTHON_USEDEP}]
- dev-python/crcmod[${PYTHON_USEDEP}]
- dev-python/docopt[${PYTHON_USEDEP}]
- dev-python/hidapi[${PYTHON_USEDEP}]
- dev-python/pillow[${PYTHON_USEDEP}]
- dev-python/pyusb[${PYTHON_USEDEP}]
- sys-apps/i2c-tools[${PYTHON_USEDEP},python]
-"
-
-BDEPEND="
- dev-python/setuptools_scm[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-
-src_test() {
- # Without this variable, it attempts to write to /var/run and fails
- XDG_RUNTIME_DIR="${T}/xdg" distutils-r1_src_test || die
-}
-
-python_install_all() {
- distutils-r1_python_install_all
-
- dodoc docs/*.md
- dodoc -r docs/linux/
-
- udev_dorules extra/linux/71-liquidctl.rules
-}
-
-pkg_postinst() {
- udev_reload
-}
-
-pkg_postrm() {
- udev_reload
-}