Gentoo Archives: gentoo-commits

From: Lev Babiev <harley@××××××.org>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/sfwbar/
Date: Wed, 30 Dec 2020 20:50:18
Message-Id: 1609361407.060f7f3498e6abf31a0d2ff7f72fb4273cc2ef69.LBCrion@gentoo
1 commit: 060f7f3498e6abf31a0d2ff7f72fb4273cc2ef69
2 Author: Lev Babiev <harley <AT> hosers <DOT> org>
3 AuthorDate: Wed Dec 30 20:50:07 2020 +0000
4 Commit: Lev Babiev <harley <AT> hosers <DOT> org>
5 CommitDate: Wed Dec 30 20:50:07 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=060f7f34
7
8 gui-apps/sfwbar: new ebuild
9
10 Signed-off-by: Lev Babiev <harley <AT> hosers.org>
11
12 gui-apps/sfwbar/Manifest | 1 +
13 gui-apps/sfwbar/metadata.xml | 13 +++++++++++++
14 gui-apps/sfwbar/sfwbar-0.9.4.ebuild | 31 +++++++++++++++++++++++++++++++
15 3 files changed, 45 insertions(+)
16
17 diff --git a/gui-apps/sfwbar/Manifest b/gui-apps/sfwbar/Manifest
18 new file mode 100644
19 index 00000000..10d8700a
20 --- /dev/null
21 +++ b/gui-apps/sfwbar/Manifest
22 @@ -0,0 +1 @@
23 +DIST v0.9.4.tar.gz 90159 BLAKE2B c1f0fdd77469c231f8bb7e0862049979354e076427ad08ca5fe6383fac44b424b5583041a21425bfaa490f872fa0757214e7796d187f9fc7cb62b22d6b65c039 SHA512 e2cbe1bb6f89dd9632e21d9f008267bae2ef62c63e54021c791d3f24c09c817b3670509d3be29a23795c50e63e78330fdbbc1ab6b527c012585e28950958171d
24
25 diff --git a/gui-apps/sfwbar/metadata.xml b/gui-apps/sfwbar/metadata.xml
26 new file mode 100644
27 index 00000000..e277680b
28 --- /dev/null
29 +++ b/gui-apps/sfwbar/metadata.xml
30 @@ -0,0 +1,13 @@
31 +<?xml version="1.0" encoding="UTF-8"?>
32 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
33 +<pkgmetadata>
34 + <maintainer type="person">
35 + <email>harley@××××××.org</email>
36 + <name>Lev Babiev</name>
37 + </maintainer>
38 + <upstream>
39 + <remote-id type="github">LBCrion/sfwbar</remote-id>
40 + <bugs-to>https://github.com/LBCrion/sfwbar/issues</bugs-to>
41 + <changelog>https://github.com/LBCrion/sfwbar/releases</changelog>
42 + </upstream>
43 +</pkgmetadata>
44
45 diff --git a/gui-apps/sfwbar/sfwbar-0.9.4.ebuild b/gui-apps/sfwbar/sfwbar-0.9.4.ebuild
46 new file mode 100644
47 index 00000000..15741a72
48 --- /dev/null
49 +++ b/gui-apps/sfwbar/sfwbar-0.9.4.ebuild
50 @@ -0,0 +1,31 @@
51 +# Copyright 2020 Gentoo Authors
52 +# Distributed under the terms of the GNU General Public License v2
53 +
54 +EAPI=7
55 +
56 +inherit meson
57 +
58 +DESCRIPTION="Sway Floating Window Bar"
59 +HOMEPAGE="https://github.com/LBCrion/sfwbar"
60 +SRC_URI="https://github.com/LBCrion/sfwbar/archive/v${PV}.tar.gz"
61 +KEYWORDS="~amd64"
62 +
63 +LICENSE="GPL-2"
64 +SLOT="0"
65 +IUSE=""
66 +
67 +DEPEND="
68 + >=x11-libs/gtk+-3.22.0:3[introspection,wayland]
69 + gui-libs/gtk-layer-shell
70 + >=dev-libs/json-c-0.13:0=
71 +"
72 +RDEPEND="${DEPEND}"
73 +BDEPEND="
74 + virtual/pkgconfig
75 +"
76 +
77 +src_configure() {
78 + local emesonargs=(
79 + )
80 + meson_src_configure
81 +}