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 40D241581FD for ; Mon, 08 Sep 2025 17:31:15 +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) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 2DF42340E84 for ; Mon, 08 Sep 2025 17:31:15 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 3DF3A11057D; Mon, 08 Sep 2025 17:30:50 +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) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 3308B11057D for ; Mon, 08 Sep 2025 17:30:50 +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) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E314D335DAE for ; Mon, 08 Sep 2025 17:30:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 31913394D for ; Mon, 08 Sep 2025 17:30:47 +0000 (UTC) From: "Ben Kohler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ben Kohler" Message-ID: <1757352639.a55b32dac7f09ffa3882f1a846126607ef42e806.bkohler@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/obmenu-generator/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/obmenu-generator/obmenu-generator-0.93-r1.ebuild X-VCS-Directories: x11-misc/obmenu-generator/ X-VCS-Committer: bkohler X-VCS-Committer-Name: Ben Kohler X-VCS-Revision: a55b32dac7f09ffa3882f1a846126607ef42e806 X-VCS-Branch: master Date: Mon, 08 Sep 2025 17:30:47 +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: ab795b54-90f7-48db-b0da-4bd2f989a090 X-Archives-Hash: bcccaa3634e1aa0cf73ceb77f8a10e16 commit: a55b32dac7f09ffa3882f1a846126607ef42e806 Author: Ben Kohler gentoo org> AuthorDate: Mon Sep 8 17:29:39 2025 +0000 Commit: Ben Kohler gentoo org> CommitDate: Mon Sep 8 17:30:39 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a55b32da x11-misc/obmenu-generator: update EAPI 7 -> 8 Signed-off-by: Ben Kohler gentoo.org> .../obmenu-generator-0.93-r1.ebuild | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/x11-misc/obmenu-generator/obmenu-generator-0.93-r1.ebuild b/x11-misc/obmenu-generator/obmenu-generator-0.93-r1.ebuild new file mode 100644 index 000000000000..54cfc2b4f444 --- /dev/null +++ b/x11-misc/obmenu-generator/obmenu-generator-0.93-r1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit optfeature + +DESCRIPTION="A fast pipe/static menu generator for the Openbox Window Manager" +HOMEPAGE="https://github.com/trizen/obmenu-generator" +SRC_URI="https://github.com/trizen/obmenu-generator/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-lang/perl[gdbm] + dev-perl/Data-Dump + >=dev-perl/Linux-DesktopFiles-0.90.0 + x11-wm/openbox +" + +src_install() { + dobin ${PN} + + insinto /etc/xdg/obmenu-generator + doins schema.pl + + dodoc README.md +} + +pkg_postinst() { + optfeature_header "For icon (-i) functionality, install:" + optfeature "support via gtk+:2 (enabled via config)" dev-perl/Gtk2 + optfeature "support via gtk+:3 (default)" dev-perl/Gtk3 +}