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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1D8A915808B for ; Mon, 11 Apr 2022 05:38:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B91CEE0993; Mon, 11 Apr 2022 05:38:23 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E8065E0993 for ; Mon, 11 Apr 2022 05:38:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B386D3416BF for ; Mon, 11 Apr 2022 05:38:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0F1761BD for ; Mon, 11 Apr 2022 05:38:10 +0000 (UTC) From: "Dex Conner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Dex Conner" Message-ID: <1649655431.64859b59867b99566777276ed9d16ccda95d4b2e.cantcuckthis@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/someblocks/ X-VCS-Repository: repo/proj/guru X-VCS-Files: gui-apps/someblocks/metadata.xml gui-apps/someblocks/someblocks-9999.ebuild X-VCS-Directories: gui-apps/someblocks/ X-VCS-Committer: cantcuckthis X-VCS-Committer-Name: Dex Conner X-VCS-Revision: 64859b59867b99566777276ed9d16ccda95d4b2e X-VCS-Branch: dev Date: Mon, 11 Apr 2022 05:38:10 +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: 9ca3e835-893a-44b8-9b7c-06f6dd4aa225 X-Archives-Hash: 8eca069ae0643f4c7d1ff4e1b74adb42 commit: 64859b59867b99566777276ed9d16ccda95d4b2e Author: Dex Conner danwin1210 de> AuthorDate: Mon Apr 11 05:37:11 2022 +0000 Commit: Dex Conner danwin1210 de> CommitDate: Mon Apr 11 05:37:11 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=64859b59 gui-apps/someblocks: initial import Signed-off-by: Dex Conner danwin1210.de> gui-apps/someblocks/metadata.xml | 8 ++++++++ gui-apps/someblocks/someblocks-9999.ebuild | 32 ++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) diff --git a/gui-apps/someblocks/metadata.xml b/gui-apps/someblocks/metadata.xml new file mode 100644 index 000000000..2ad19f02c --- /dev/null +++ b/gui-apps/someblocks/metadata.xml @@ -0,0 +1,8 @@ + + + + + cantcuckthis@danwin1210.de + Dex Conner + + diff --git a/gui-apps/someblocks/someblocks-9999.ebuild b/gui-apps/someblocks/someblocks-9999.ebuild new file mode 100644 index 000000000..ba84c122f --- /dev/null +++ b/gui-apps/someblocks/someblocks-9999.ebuild @@ -0,0 +1,32 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit savedconfig git-r3 + +DESCRIPTION="Modular status bar for somebar written in c." +HOMEPAGE="https://git.sr.ht/~raphi/someblocks" +EGIT_REPO_URI="https://git.sr.ht/~raphi/someblocks" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="" + +DEPEND="" +RDEPEND="${DEPEND}" +BDEPEND="" + +src_prepare() { + default + + restore_config blocks.h +} + +src_install() { + emake PREFIX="${ED}/usr" install + + einstalldocs + + save_config blocks.h +}