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 092C913835A for ; Fri, 1 Jan 2021 13:14:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 177AEE0896; Fri, 1 Jan 2021 13:14:43 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 00562E0867 for ; Fri, 1 Jan 2021 13:14:42 +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 DAA57340C96 for ; Fri, 1 Jan 2021 13:14:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8F45346B for ; Fri, 1 Jan 2021 13:14:40 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1609361407.060f7f3498e6abf31a0d2ff7f72fb4273cc2ef69.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master 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: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 060f7f3498e6abf31a0d2ff7f72fb4273cc2ef69 X-VCS-Branch: master Date: Fri, 1 Jan 2021 13:14:40 +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: 9e7b0981-1182-49dd-8c65-c57a65af659e X-Archives-Hash: 181bf819be82f4f051e66b6f60a2c2bb commit: 060f7f3498e6abf31a0d2ff7f72fb4273cc2ef69 Author: Lev Babiev hosers org> AuthorDate: Wed Dec 30 20:50:07 2020 +0000 Commit: Andrew Ammerlaan riseup net> 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 +}