summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHaelwenn (lanodan) Monnier <contact@hacktivis.me>2019-05-26 13:53:21 +0200
committerMichał Górny <mgorny@gentoo.org>2019-06-09 12:12:02 +0200
commitfc9b85fa5ffabaee742f63930c30eb352d76f5d4 (patch)
tree84161216d2d25a8894df0c2c41bb9e2cdac2253b /app-misc/g810-led
parentapp-misc/g810-led: Bump to 0.3.4 (diff)
downloadgentoo-fc9b85fa5ffabaee742f63930c30eb352d76f5d4.tar.gz
gentoo-fc9b85fa5ffabaee742f63930c30eb352d76f5d4.tar.bz2
gentoo-fc9b85fa5ffabaee742f63930c30eb352d76f5d4.zip
app-misc/g810-led: Remove old (0.3.1)
Signed-off-by: Haelwenn (lanodan) Monnier <contact@hacktivis.me> Closes: https://github.com/gentoo/gentoo/pull/12116 Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'app-misc/g810-led')
-rw-r--r--app-misc/g810-led/Manifest1
-rw-r--r--app-misc/g810-led/g810-led-0.3.1.ebuild47
2 files changed, 0 insertions, 48 deletions
diff --git a/app-misc/g810-led/Manifest b/app-misc/g810-led/Manifest
index b6cbbbdfd36d..9155947ee579 100644
--- a/app-misc/g810-led/Manifest
+++ b/app-misc/g810-led/Manifest
@@ -1,2 +1 @@
-DIST g810-led-0.3.1.tar.gz 34069 BLAKE2B ebc83e1f0908e521573f6ea812c1893e8314548dbe30cad4a8f2af171eaf7f73ba905f6e01eafe9bca6c1bf006d626086091c871c6382dcd9a58caa76173ca59 SHA512 62bf73a897f8c1c967ce64f6e352d55b08af764b2aac8ce722906cdc67db28676bc5665d1ba307f0c43360e57d53e75fa39aea29ca7aa6da2e125782ae38446c
DIST g810-led-0.3.4.tar.gz 34549 BLAKE2B 7816fc7d9892f0e7bde5369612c1b251b2b64846b68ddc795b4ca777b6369ef3e8a0a70b797883edb5d220af6a4905e55ceb24c53dbba307cf8589fe7c2cf232 SHA512 3ec460f6994adcf58c2fa024433544c83bac789981f31605ba4e4eeec255864e00fe2bcd485c1867fce9d2df9ab7313f88cbd7bcc1bab8d805dc560955386b59
diff --git a/app-misc/g810-led/g810-led-0.3.1.ebuild b/app-misc/g810-led/g810-led-0.3.1.ebuild
deleted file mode 100644
index 2e51fcb5d4f2..000000000000
--- a/app-misc/g810-led/g810-led-0.3.1.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 2018-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit systemd udev eutils
-
-DESCRIPTION="Led controller for Logitech G- Keyboards"
-HOMEPAGE="https://github.com/MatMoul/g810-led"
-SRC_URI="https://github.com/MatMoul/g810-led/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="+hidapi"
-
-RDEPEND="
- hidapi? ( dev-libs/hidapi:= )
- !hidapi? ( virtual/libusb:= )
-"
-
-DEPEND="${RDEPEND}"
-
-DOCS=("README.md" "sample_profiles" "sample_effects")
-
-src_compile() {
- emake LIB="$(usex hidapi hidapi libusb)"
-}
-
-src_install() {
- dolib.so "lib/libg810-led.so.${PV}"
- dosym "libg810-led.so.${PV}" "/usr/$(get_libdir)/libg810-led.so"
-
- dobin bin/g810-led
- local boards=(213 410 413 512 513 610 910 pro)
- local x
- for x in "${boards[@]}"; do
- dosym g810-led "/usr/bin/g${x}-led"
- done
-
- systemd_dounit systemd/g810-led.service
- systemd_dounit systemd/g810-led-reboot.service
-
- udev_newrules udev/g810-led.rules 60-g810-led.rules
-
- einstalldocs
-}