From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1904E1382C5 for ; Wed, 30 Dec 2020 20:50:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 173C4E01B5; Wed, 30 Dec 2020 20:50:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id ED90AE0A6E for ; Wed, 30 Dec 2020 20:50:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9C27C341018 for ; Wed, 30 Dec 2020 20:50:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 211C532B for ; Wed, 30 Dec 2020 20:50:14 +0000 (UTC) From: "Lev Babiev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lev Babiev" Message-ID: <1609361407.060f7f3498e6abf31a0d2ff7f72fb4273cc2ef69.LBCrion@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/sfwbar/ X-VCS-Repository: repo/proj/guru X-VCS-Files: gui-apps/sfwbar/Manifest gui-apps/sfwbar/metadata.xml gui-apps/sfwbar/sfwbar-0.9.4.ebuild X-VCS-Directories: gui-apps/sfwbar/ X-VCS-Committer: LBCrion X-VCS-Committer-Name: Lev Babiev X-VCS-Revision: 060f7f3498e6abf31a0d2ff7f72fb4273cc2ef69 X-VCS-Branch: dev Date: Wed, 30 Dec 2020 20:50:14 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 11b16a7e-0704-49f2-8b76-37ede1fdb0cb X-Archives-Hash: 183930bc5b6a4128e33b5be18b395bad commit: 060f7f3498e6abf31a0d2ff7f72fb4273cc2ef69 Author: Lev Babiev hosers org> AuthorDate: Wed Dec 30 20:50:07 2020 +0000 Commit: Lev Babiev hosers org> CommitDate: Wed Dec 30 20:50:07 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=060f7f34 gui-apps/sfwbar: new ebuild Signed-off-by: Lev Babiev hosers.org> gui-apps/sfwbar/Manifest | 1 + gui-apps/sfwbar/metadata.xml | 13 +++++++++++++ gui-apps/sfwbar/sfwbar-0.9.4.ebuild | 31 +++++++++++++++++++++++++++++++ 3 files changed, 45 insertions(+) diff --git a/gui-apps/sfwbar/Manifest b/gui-apps/sfwbar/Manifest new file mode 100644 index 00000000..10d8700a --- /dev/null +++ b/gui-apps/sfwbar/Manifest @@ -0,0 +1 @@ +DIST v0.9.4.tar.gz 90159 BLAKE2B c1f0fdd77469c231f8bb7e0862049979354e076427ad08ca5fe6383fac44b424b5583041a21425bfaa490f872fa0757214e7796d187f9fc7cb62b22d6b65c039 SHA512 e2cbe1bb6f89dd9632e21d9f008267bae2ef62c63e54021c791d3f24c09c817b3670509d3be29a23795c50e63e78330fdbbc1ab6b527c012585e28950958171d diff --git a/gui-apps/sfwbar/metadata.xml b/gui-apps/sfwbar/metadata.xml new file mode 100644 index 00000000..e277680b --- /dev/null +++ b/gui-apps/sfwbar/metadata.xml @@ -0,0 +1,13 @@ + + + + + harley@hosers.org + Lev Babiev + + + LBCrion/sfwbar + https://github.com/LBCrion/sfwbar/issues + https://github.com/LBCrion/sfwbar/releases + + diff --git a/gui-apps/sfwbar/sfwbar-0.9.4.ebuild b/gui-apps/sfwbar/sfwbar-0.9.4.ebuild new file mode 100644 index 00000000..15741a72 --- /dev/null +++ b/gui-apps/sfwbar/sfwbar-0.9.4.ebuild @@ -0,0 +1,31 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit meson + +DESCRIPTION="Sway Floating Window Bar" +HOMEPAGE="https://github.com/LBCrion/sfwbar" +SRC_URI="https://github.com/LBCrion/sfwbar/archive/v${PV}.tar.gz" +KEYWORDS="~amd64" + +LICENSE="GPL-2" +SLOT="0" +IUSE="" + +DEPEND=" + >=x11-libs/gtk+-3.22.0:3[introspection,wayland] + gui-libs/gtk-layer-shell + >=dev-libs/json-c-0.13:0= +" +RDEPEND="${DEPEND}" +BDEPEND=" + virtual/pkgconfig +" + +src_configure() { + local emesonargs=( + ) + meson_src_configure +}