Gentoo Archives: gentoo-commits

From: Matthew Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: gui-apps/mako/
Date: Mon, 12 Jul 2021 03:00:11
Message-Id: 1626058796.f6b0ed2ad82d2ebdd1be85ae1ca834f080493c1f.prometheanfire@gentoo
1 commit: f6b0ed2ad82d2ebdd1be85ae1ca834f080493c1f
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 12 02:54:18 2021 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 12 02:59:56 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6b0ed2a
7
8 gui-apps/mako: 1.6 bump
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.2
11 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
12
13 gui-apps/mako/Manifest | 1 +
14 gui-apps/mako/mako-1.6.ebuild | 52 +++++++++++++++++++++++++++++++++++++++++++
15 2 files changed, 53 insertions(+)
16
17 diff --git a/gui-apps/mako/Manifest b/gui-apps/mako/Manifest
18 index b52304f50a6..6f776759d1a 100644
19 --- a/gui-apps/mako/Manifest
20 +++ b/gui-apps/mako/Manifest
21 @@ -1 +1,2 @@
22 DIST mako-1.5.tar.gz 57077 BLAKE2B 0ad931ce6408774f029855d0d98bd9444ff246f2ee82dcaa59774caddc9aaa7d632a7584eaaa4439eafd17b72935eada8400fe93e1ec7f9c23b3860049b55269 SHA512 64bb78d391bf07259a62a4045103803c8e108ac2da2fe8a413b09a0e8c2ac9c82eea1ae9576db41f7088476099fc2071543c99d3a52a35f72f5dbb537bba8c47
23 +DIST mako-1.6.tar.gz 60468 BLAKE2B 77fcd52e69d6e253d0afb2b0057c94090c0ad6f6bd929eafb88808ad7b7a0deb76f06af99de8bc94064436c47a4110aa2314557b7ff068ba482f285f2ea23e13 SHA512 1b503779b5607ae072d72ba43a2c4557fdf9fdad113e5a2370eb2e603e51422b3a483ac5f4a948ae33d62e7d9e86a6bbc89b2cba98647c4789505a49981c8baf
24
25 diff --git a/gui-apps/mako/mako-1.6.ebuild b/gui-apps/mako/mako-1.6.ebuild
26 new file mode 100644
27 index 00000000000..3387b2f9bc1
28 --- /dev/null
29 +++ b/gui-apps/mako/mako-1.6.ebuild
30 @@ -0,0 +1,52 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit meson
37 +
38 +DESCRIPTION="A lightweight notification daemon for Wayland. Works on Sway."
39 +HOMEPAGE="https://github.com/emersion/mako"
40 +
41 +if [[ ${PV} == 9999 ]]; then
42 + inherit git-r3
43 + EGIT_REPO_URI="https://github.com/emersion/${PN}.git"
44 +else
45 + SRC_URI="https://github.com/emersion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
46 + KEYWORDS="~amd64 ~arm64 ~x86"
47 +fi
48 +
49 +LICENSE="MIT"
50 +SLOT="0"
51 +IUSE="+icons"
52 +
53 +DEPEND="
54 + dev-libs/wayland
55 + x11-libs/pango
56 + x11-libs/cairo
57 + || (
58 + sys-apps/systemd
59 + sys-auth/elogind
60 + )
61 + sys-apps/dbus[user-session]
62 + icons? (
63 + x11-libs/gtk+:3
64 + x11-libs/gdk-pixbuf
65 + )
66 +"
67 +RDEPEND="
68 + ${DEPEND}
69 + >=dev-libs/wayland-protocols-1.21
70 +"
71 +BDEPEND="
72 + virtual/pkgconfig
73 + app-text/scdoc
74 +"
75 +
76 +src_configure() {
77 + local emesonargs=(
78 + -Dicons=$(usex icons enabled disabled)
79 + "-Dwerror=false"
80 + )
81 + meson_src_configure
82 +}