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 241F1158094 for ; Thu, 6 Oct 2022 02:03:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 290BAE08F0; Thu, 6 Oct 2022 02:03:55 +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 0CA63E08F0 for ; Thu, 6 Oct 2022 02:03:54 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D9196340B9C for ; Thu, 6 Oct 2022 02:03:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 444C4601 for ; Thu, 6 Oct 2022 02:03:52 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1665021825.a75a8e959542c6378785bfa2896e0454c9c51b45.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/ghex/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/ghex/ghex-9999.ebuild X-VCS-Directories: app-editors/ghex/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: a75a8e959542c6378785bfa2896e0454c9c51b45 X-VCS-Branch: master Date: Thu, 6 Oct 2022 02:03:52 +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: 64af272d-46b5-4fd4-bd20-978aa538343b X-Archives-Hash: bc6d5606e9c73a7aa71acd98585d7df3 commit: a75a8e959542c6378785bfa2896e0454c9c51b45 Author: Matt Turner gentoo org> AuthorDate: Thu Oct 6 01:51:22 2022 +0000 Commit: Matt Turner gentoo org> CommitDate: Thu Oct 6 02:03:45 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a75a8e95 app-editors/ghex: Update live ebuild Signed-off-by: Matt Turner gentoo.org> app-editors/ghex/ghex-9999.ebuild | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/app-editors/ghex/ghex-9999.ebuild b/app-editors/ghex/ghex-9999.ebuild index b9a8b8490096..e0eb24528bc6 100644 --- a/app-editors/ghex/ghex-9999.ebuild +++ b/app-editors/ghex/ghex-9999.ebuild @@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then EGIT_REPO_URI="https://gitlab.gnome.org/GNOME/ghex.git" SRC_URI="" else - KEYWORDS="~amd64 ~arm ~riscv ~x86 ~amd64-linux ~x86-linux" + KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux" fi LICENSE="GPL-2+ FDL-1.1+" @@ -22,8 +22,9 @@ RESTRICT="!test? ( test )" SLOT="4" RDEPEND=" - >=dev-libs/glib-2.66.0:2 - >=gui-libs/gtk-4.0.0:4 + >=dev-libs/glib-2.68.0:2 + >=gui-libs/gtk-4.4.0:4 + gui-libs/libadwaita:1 dev-libs/gobject-introspection !app-editors/ghex:2 " @@ -43,8 +44,13 @@ BDEPEND=" src_configure() { local emesonargs=( -Ddocdir="${EPREFIX}"/usr/share/gtk-doc/ + -Ddevelopment=false + -Dmmap-buffer-backend=true + -Ddirect-buffer-backend=true -Dintrospection=enabled $(meson_use gtk-doc gtk_doc) + -Dstatic-html-help=false + -Dvapi=false ) meson_src_configure }