diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2023-05-29 19:31:55 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2023-06-11 20:21:35 +0200 |
commit | cd127c09b75550b91f34035a1d176d8e783d5e36 (patch) | |
tree | 32eae8ec5282f783a0b230c7376defa9973e4a1b /x11-misc | |
parent | x11-misc/i3status: EAPI 8 bump, switch to media-libs/libpulse (diff) | |
download | gentoo-cd127c09b75550b91f34035a1d176d8e783d5e36.tar.gz gentoo-cd127c09b75550b91f34035a1d176d8e783d5e36.tar.bz2 gentoo-cd127c09b75550b91f34035a1d176d8e783d5e36.zip |
x11-misc/i3status: drop 2.14
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/i3status/i3status-2.14.ebuild | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/x11-misc/i3status/i3status-2.14.ebuild b/x11-misc/i3status/i3status-2.14.ebuild deleted file mode 100644 index 4a7d1e2f875a..000000000000 --- a/x11-misc/i3status/i3status-2.14.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit fcaps meson - -DESCRIPTION="generates a status bar for dzen2, xmobar or similar" -HOMEPAGE="https://i3wm.org/i3status/" -SRC_URI="https://i3wm.org/${PN}/${P}.tar.xz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86" -IUSE="pulseaudio" - -BDEPEND="virtual/pkgconfig" -RDEPEND=" - >=dev-libs/yajl-2.0.2 - dev-libs/confuse:= - dev-libs/libnl:3 - media-libs/alsa-lib - pulseaudio? ( || ( media-sound/pulseaudio media-sound/apulse[sdk] ) ) -" - -DEPEND=" - ${RDEPEND} - app-text/asciidoc - app-text/xmlto -" - -PATCHES=( - -) - -src_prepare() { - default - - # Needs an ALSA master device, bug #840622 - # Also skipped in CI: - # https://github.com/i3/i3status/blob/07ad5aef2deea1f10eb6c544593e7a87205f24f8/.github/workflows/main.yml#L34 - rm -rf testcases/020-percentliteral-volume || die -} - -src_configure() { - local emesonargs=( - $(meson_use pulseaudio pulseaudio) - ) - meson_src_configure -} - -pkg_postinst() { - fcaps cap_net_admin usr/bin/${PN} - - elog "${PN} can be used with any of the following programs:" - elog " i3bar (x11-wm/i3)" - elog " x11-misc/xmobar" - elog " x11-misc/dzen" - elog "Please refer to manual: man ${PN}" -} |