Gentoo Archives: gentoo-commits

From: Marek Szuba <marecki@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/vicious/
Date: Wed, 29 Jun 2022 15:52:14
Message-Id: 1656517925.69a83c99b01528c7c57f287c6585158c34425add.marecki@gentoo
1 commit: 69a83c99b01528c7c57f287c6585158c34425add
2 Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 29 14:53:52 2022 +0000
4 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 29 15:52:05 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69a83c99
7
8 x11-plugins/vicious: drop 2.5.0
9
10 Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
11
12 x11-plugins/vicious/Manifest | 1 -
13 x11-plugins/vicious/vicious-2.5.0.ebuild | 64 --------------------------------
14 2 files changed, 65 deletions(-)
15
16 diff --git a/x11-plugins/vicious/Manifest b/x11-plugins/vicious/Manifest
17 index e69f05a97f78..943dd61e014f 100644
18 --- a/x11-plugins/vicious/Manifest
19 +++ b/x11-plugins/vicious/Manifest
20 @@ -1,2 +1 @@
21 -DIST vicious-2.5.0.tar.gz 67557 BLAKE2B ffbc1b3c0e32b554cc367a51e5e17130e1b9f7fed2e8505aaa1845719ecd6d465d43ba839ac3a9b73a87e43ff3144c2074f3750d5f67b516d033a74144e9e12f SHA512 deb21587d1d7f2e6e4dd77c74abbfa337acf6c99ef9bebc0e505f1508afc6e3b03f043a639f866fcda0191447c103d3fba51376682201482fb669a263321dee5
22 DIST vicious-2.5.1.tar.gz 68635 BLAKE2B fa952f878140e76a44bde98ab928fe2a01a12f0e931a4f8ee366acba584661a0e42b150d4f69bfaaf7c58c68d57d2e261d8b586fb1abbd329d9f30fe90c2e21d SHA512 63de92a4e7d666d5737bfc0f50857c48f40818e5f1cf81ba672284db764c68d151f73afd6507b7392b38ae91cf1d18104284618430d15dd8837c56a0283571fe
23
24 diff --git a/x11-plugins/vicious/vicious-2.5.0.ebuild b/x11-plugins/vicious/vicious-2.5.0.ebuild
25 deleted file mode 100644
26 index 31dbb976d373..000000000000
27 --- a/x11-plugins/vicious/vicious-2.5.0.ebuild
28 +++ /dev/null
29 @@ -1,64 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -inherit optfeature
36 -
37 -DESCRIPTION="Modular widget library for x11-wm/awesome"
38 -HOMEPAGE="https://github.com/vicious-widgets/vicious"
39 -SRC_URI="https://github.com/${PN}-widgets/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
40 -
41 -LICENSE="GPL-2+"
42 -SLOT="0"
43 -KEYWORDS="amd64 ~arm x86"
44 -IUSE="contrib"
45 -
46 -RDEPEND="x11-wm/awesome"
47 -
48 -src_install() {
49 - insinto /usr/share/awesome/lib/vicious
50 - doins -r widgets spawn.lua helpers.lua init.lua
51 -
52 - if use contrib; then
53 - insinto /usr/share/awesome/lib/vicious/contrib
54 - doins contrib/*.lua
55 - fi
56 -
57 - einstalldocs
58 -}
59 -
60 -pkg_postinst() {
61 - # Note that as of 2.5.0 this list may or may not be incomplete - it has been produced
62 - # only by searching for occurrences of vicious.spawn (the recommended way of calling
63 - # external helpers because it supports async) and popen (still used by many contrib widgets).
64 - # Moreover, dependencies of all non-Linux widgets have been excluded on purpose.
65 - optfeature_header "These widgets need some dependencies:"
66 - optfeature "cmus" "media-sound/cmus"
67 - optfeature "fs" "sys-apps/coreutils" # df
68 - optfeature "gmail" "net-misc/curl"
69 - optfeature "hddtemp" "net-misc/curl[telnet] app-admin/hddtemp"
70 - optfeature "hwmontemp" "sys-apps/grep"
71 - optfeature "mdir" "sys-apps/findutils"
72 - optfeature "mpd" "net-misc/curl[telnet] media-sound/mpd"
73 - optfeature "notmuch" "net-mail/notmuch"
74 - optfeature "volume" "media-sound/alsa-utils" # amixer
75 - optfeature "weather" "net-misc/curl"
76 - optfeature "wifi" "net-wireless/wireless-tools"
77 - optfeature "wifiiw" "net-wireless/iw"
78 - if use contrib; then
79 - optfeature "contrib/btc" "net-misc/curl"
80 - optfeature "contrib/buildbot" "net-misc/curl"
81 - optfeature "contrib/countfiles" "sys-apps/findutils"
82 - optfeature "contrib/mpc" "media-sound/mpc"
83 - optfeature "contrib/openweather" "net-misc/curl"
84 - optfeature "contrib/netcfg" "sys-apps/coreutils" # ls
85 - optfeature "contrib/nvinf" "x11-drivers/nvidia-drivers" # nvidia-settings
86 - # ossvol needs 'ossmix' - not packaged?
87 - optfeature "contrib/pulse" "media-sound/pulseaudio" # pacmd
88 - optfeature "contrib/rss" "net-misc/curl"
89 - optfeature "contrib/sensors" "sys-apps/lm-sensors"
90 - optfeature "contrib/wpa" "net-wireless/wpa_supplicant" # wpa-cli
91 - fi
92 - elog
93 -}