Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gui-apps/waybar/
Date: Thu, 29 Aug 2019 00:35:05
Message-Id: 1567038247.a940f9c1e55dc35579868e9f4248e1a3f3492a36.bman@gentoo
1 commit: a940f9c1e55dc35579868e9f4248e1a3f3492a36
2 Author: Bernardo Meurer <meurerbernardo <AT> gmail <DOT> com>
3 AuthorDate: Mon Aug 26 20:10:59 2019 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 29 00:24:07 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a940f9c1
7
8 gui-apps/waybar: yank 0.7.2
9
10 Package-Manager: Portage-2.3.73, Repoman-2.3.17
11 Signed-off-by: Bernardo Meurer <bernardo <AT> standard.ai>
12 Closes: https://github.com/gentoo/gentoo/pull/12796
13 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
14
15 gui-apps/waybar/waybar-0.7.2.ebuild | 58 -------------------------------------
16 1 file changed, 58 deletions(-)
17
18 diff --git a/gui-apps/waybar/waybar-0.7.2.ebuild b/gui-apps/waybar/waybar-0.7.2.ebuild
19 deleted file mode 100644
20 index fc844ec121d..00000000000
21 --- a/gui-apps/waybar/waybar-0.7.2.ebuild
22 +++ /dev/null
23 @@ -1,58 +0,0 @@
24 -# Copyright 1999-2019 Gentoo Authors
25 -# Distributed under the terms of the GNU General Public License v2
26 -
27 -EAPI=7
28 -
29 -inherit meson
30 -
31 -DESCRIPTION="Highly customizable Wayland bar for Sway and Wlroots based compositors."
32 -HOMEPAGE="https://github.com/Alexays/Waybar"
33 -
34 -if [[ ${PV} == 9999 ]]; then
35 - inherit git-r3
36 - EGIT_REPO_URI="https://github.com/Alexays/${PN^}.git"
37 -else
38 - SRC_URI="https://github.com/Alexays/${PN^}/archive/${PV}.tar.gz -> ${P}.tar.gz"
39 - KEYWORDS="~amd64"
40 -fi
41 -
42 -LICENSE="MIT"
43 -SLOT="0"
44 -IUSE="libcxx mpd network pulseaudio tray +udev"
45 -
46 -DEPEND="
47 - dev-cpp/gtkmm:3.0
48 - dev-libs/jsoncpp:=
49 - dev-libs/libinput:=
50 - dev-libs/libsigc++:2
51 - >=dev-libs/libfmt-5.3.0:=
52 - >=dev-libs/spdlog-1.3.1:=
53 - dev-libs/wayland
54 - dev-libs/wayland-protocols
55 - gui-libs/wlroots
56 - libcxx? ( sys-libs/libcxx )
57 - mpd? ( media-libs/libmpdclient )
58 - network? ( dev-libs/libnl:3 )
59 - pulseaudio? ( media-sound/pulseaudio )
60 - tray? ( dev-libs/libdbusmenu[gtk3] )
61 - udev? ( virtual/libudev:= )"
62 -
63 -RDEPEND="${DEPEND}"
64 -
65 -BDEPEND="virtual/pkgconfig"
66 -
67 -if [[ ${PV} != 9999 ]]; then
68 - S="${WORKDIR}/${PN^}-${PV}"
69 -fi
70 -
71 -src_configure() {
72 - local emesonargs=(
73 - $(meson_use libcxx)
74 - $(meson_feature mpd)
75 - $(meson_feature network libnl)
76 - $(meson_feature pulseaudio)
77 - $(meson_feature tray dbusmenu-gtk)
78 - $(meson_feature udev libudev)
79 - )
80 - meson_src_configure
81 -}