From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AE84C1580EB for ; Tue, 27 May 2025 23:53:34 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 979B7343121 for ; Tue, 27 May 2025 23:53:34 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 942FD110287; Tue, 27 May 2025 23:53:33 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 8688B110287 for ; Tue, 27 May 2025 23:53:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1EFB6343121 for ; Tue, 27 May 2025 23:53:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B3D6228E9 for ; Tue, 27 May 2025 23:53:31 +0000 (UTC) From: "Quinet Charlie" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Quinet Charlie" Message-ID: <1748389968.111fc1ffea0d97289256dda614cb577f4953fa3c.w.iron.zombie@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/walker/ X-VCS-Repository: repo/proj/guru X-VCS-Files: gui-apps/walker/walker-9999.ebuild X-VCS-Directories: gui-apps/walker/ X-VCS-Committer: w.iron.zombie X-VCS-Committer-Name: Quinet Charlie X-VCS-Revision: 111fc1ffea0d97289256dda614cb577f4953fa3c X-VCS-Branch: dev Date: Tue, 27 May 2025 23:53:31 +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: b3cfe1ad-0cb0-45eb-a904-aaaedb4e37f5 X-Archives-Hash: 03be159855d54a7ddf7c7ce224f1bbda commit: 111fc1ffea0d97289256dda614cb577f4953fa3c Author: Charlie Quinet gmail com> AuthorDate: Tue May 27 23:52:48 2025 +0000 Commit: Quinet Charlie gmail com> CommitDate: Tue May 27 23:52:48 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=111fc1ff gui-apps/walker: add live ebuild At least this one will work Signed-off-by: Charlie Quinet gmail.com> gui-apps/walker/walker-9999.ebuild | 44 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/gui-apps/walker/walker-9999.ebuild b/gui-apps/walker/walker-9999.ebuild new file mode 100644 index 0000000000..5554a0e601 --- /dev/null +++ b/gui-apps/walker/walker-9999.ebuild @@ -0,0 +1,44 @@ +# Copyright 2024-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit go-module git-r3 + +DESCRIPTION="Multi-Purpose Launcher with a lot of features. Highly Customizable and fast" +HOMEPAGE="https://github.com/abenz1267/walker" +EGIT_REPO_URI="https://github.com/abenz1267/${PN}" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + dev-libs/glib:2 + gui-libs/gtk:4 + >=gui-libs/gtk4-layer-shell-1.0.4 + dev-libs/gobject-introspection + media-libs/graphene + media-libs/vips:= + x11-libs/cairo + x11-libs/gdk-pixbuf:2 + x11-libs/pango +" +DEPEND="${RDEPEND}" +BDEPEND=" + >=dev-libs/glib-2.80.0[introspection] +" + +src_unpack() { + git-r3_src_unpack + go-module_live_vendor +} + +src_compile() { + cd "${S}"/cmd || die + ego build -o walker +} + +src_install() { + dobin cmd/"${PN}" +}