diff options
Diffstat (limited to 'x11-plugins/vicious')
-rw-r--r-- | x11-plugins/vicious/Manifest | 2 | ||||
-rw-r--r-- | x11-plugins/vicious/vicious-2.6.0.ebuild | 64 |
2 files changed, 0 insertions, 66 deletions
diff --git a/x11-plugins/vicious/Manifest b/x11-plugins/vicious/Manifest index 6d612446c643..4e654be6e075 100644 --- a/x11-plugins/vicious/Manifest +++ b/x11-plugins/vicious/Manifest @@ -1,5 +1,3 @@ -DIST vicious-2.6.0.tar.gz 69108 BLAKE2B de86326b8975511cf053e6707bdc133ad23c95cadd64190de326bfae2c710a2f97b7cbc102cf88f14e6ebfdeface2896862b52521ba5d83a47014bc7bd65d0d3 SHA512 d8107ab1bad80b115789d7dbda44568cee17546f76c03889028f61f8293d9c897eec1cb7f96b973a39f0c94889c13f13c6cbccb944390c80820a327691223af6 DIST vicious-2.7.0.tar.gz 69420 BLAKE2B 5de98a40e2cf0c0d02820c4bc3a6c1f349a0a2efa9b1947ff39b522fe0c58ea92e1772e16d4b798147e985dcd37b4b8c31b67f3c4d791b3d1594af5d13d6b716 SHA512 683816be5a667671ae11b7aa1f5ca718a79f03ebdde8c38a44f2648c1cfd3facea256f0cad04f963ba00766427f8196050a77ff7446ef427a31adfeb0fb6799c -EBUILD vicious-2.6.0.ebuild 2295 BLAKE2B 7857ba735a36ab909eeab12978454ab7793a49bb04fb2d6b0aad0257c764196b3fa1e6988fdf0e1d82bb612b2d6c33a899c49072ad764af78c54cb9aa9e79792 SHA512 ebd0858f7452da45d0ccf272cdb9efd5ebb8626d06126558b46d793a6d139c11a5a04c00cc70d9404c473ec6db220ff3e1ad7f1f0617a2210c23db8fc2829ebf EBUILD vicious-2.7.0.ebuild 2295 BLAKE2B 19b4b0d7986048398f6bdd58472ea45b6ef79db89bfe79dd95fc890fd6d8d5e91d8b26db9845e20eb83c06a9239587c0cafc115ef1b18b87d7615d5f2baaa6ba SHA512 4a42f51b3dd98a8b843749f5a2d3341341e1aab71f83074cd09ead8a9c85e49283859c1ce37ade06882102be83f40fffdbd686efd931254cd5e87ed26dddd525 MISC metadata.xml 414 BLAKE2B 24463a34d1a0e60cdf056b6e3de4ccd78b6cb65174358a1b765b2ff311c88aedb6f518c00029db302368a289b47e4b7120c743c03f377e822a517843e69c599b SHA512 51986f783e509cc980694f80b6e6b63b23ce392c6b878896f5970d48520d6557a79977952db906cd65ac60a0125f73dd66837866e648947a01a0b0e28a245c0a diff --git a/x11-plugins/vicious/vicious-2.6.0.ebuild b/x11-plugins/vicious/vicious-2.6.0.ebuild deleted file mode 100644 index d0818ac178f4..000000000000 --- a/x11-plugins/vicious/vicious-2.6.0.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit optfeature - -DESCRIPTION="Modular widget library for x11-wm/awesome" -HOMEPAGE="https://github.com/vicious-widgets/vicious" -SRC_URI="https://github.com/${PN}-widgets/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="amd64 ~arm ~riscv x86" -IUSE="contrib" - -RDEPEND="x11-wm/awesome" - -src_install() { - insinto /usr/share/awesome/lib/vicious - doins -r widgets spawn.lua helpers.lua init.lua - - if use contrib; then - insinto /usr/share/awesome/lib/vicious/contrib - doins contrib/*.lua - fi - - einstalldocs -} - -pkg_postinst() { - # Note that as of 2.5.1 this list may or may not be incomplete - it has been produced - # only by searching for occurrences of vicious.spawn (the recommended way of calling - # external helpers because it supports async) and popen (still used by many contrib widgets). - # Moreover, dependencies of all non-Linux widgets have been excluded on purpose. - optfeature_header "These widgets need some dependencies:" - optfeature "cmus" "media-sound/cmus" - optfeature "fs" "sys-apps/coreutils" # df - optfeature "gmail" "net-misc/curl" - optfeature "hddtemp" "net-misc/curl[telnet] app-admin/hddtemp" - optfeature "hwmontemp" "sys-apps/grep" - optfeature "mdir" "sys-apps/findutils" - optfeature "mpd" "net-misc/curl[telnet] media-sound/mpd" - optfeature "notmuch" "net-mail/notmuch" - optfeature "volume" "media-sound/alsa-utils" # amixer - optfeature "weather" "net-misc/curl" - optfeature "wifi" "net-wireless/wireless-tools" - optfeature "wifiiw" "net-wireless/iw" - if use contrib; then - optfeature "contrib/btc" "net-misc/curl" - optfeature "contrib/buildbot" "net-misc/curl" - optfeature "contrib/countfiles" "sys-apps/findutils" - optfeature "contrib/mpc" "media-sound/mpc" - optfeature "contrib/openweather" "net-misc/curl" - optfeature "contrib/netcfg" "sys-apps/coreutils" # ls - optfeature "contrib/nvinf" "x11-drivers/nvidia-drivers" # nvidia-settings - # ossvol needs 'ossmix' - not packaged? - optfeature "contrib/pulse" "media-sound/pulseaudio" # pacmd - optfeature "contrib/rss" "net-misc/curl" - optfeature "contrib/sensors" "sys-apps/lm-sensors" - optfeature "contrib/wpa" "net-wireless/wpa_supplicant" # wpa-cli - fi - elog -} |