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 CE696158083 for ; Sun, 15 Sep 2024 11:24:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C6244E29A5; Sun, 15 Sep 2024 11:24:36 +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 A5430E29A5 for ; Sun, 15 Sep 2024 11:24:36 +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 AC6E5340C37 for ; Sun, 15 Sep 2024 11:24:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E2CF114D0 for ; Sun, 15 Sep 2024 11:24:33 +0000 (UTC) From: "Haelwenn Monnier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Haelwenn Monnier" Message-ID: <1726399463.7992fd86eff8b5a260df6c1837b4271a75bff548.lanodan@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-db/rum/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-db/rum/rum-1.3.13-r1.ebuild dev-db/rum/rum-1.3.13.ebuild X-VCS-Directories: dev-db/rum/ X-VCS-Committer: lanodan X-VCS-Committer-Name: Haelwenn Monnier X-VCS-Revision: 7992fd86eff8b5a260df6c1837b4271a75bff548 X-VCS-Branch: dev Date: Sun, 15 Sep 2024 11:24:33 +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: 3948598d-31f3-4bce-ac42-27395cc5c0fd X-Archives-Hash: a9867e7eac15ee693c13af77885f57cc commit: 7992fd86eff8b5a260df6c1837b4271a75bff548 Author: Haelwenn (lanodan) Monnier hacktivis me> AuthorDate: Sun Sep 15 11:23:58 2024 +0000 Commit: Haelwenn Monnier hacktivis me> CommitDate: Sun Sep 15 11:24:23 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7992fd86 dev-db/rum: bump compat to pg16, fix multi-target build Signed-off-by: Haelwenn (lanodan) Monnier hacktivis.me> dev-db/rum/{rum-1.3.13.ebuild => rum-1.3.13-r1.ebuild} | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dev-db/rum/rum-1.3.13.ebuild b/dev-db/rum/rum-1.3.13-r1.ebuild similarity index 83% rename from dev-db/rum/rum-1.3.13.ebuild rename to dev-db/rum/rum-1.3.13-r1.ebuild index 132bb2f47..734c3b407 100644 --- a/dev-db/rum/rum-1.3.13.ebuild +++ b/dev-db/rum/rum-1.3.13-r1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -POSTGRES_COMPAT=( 9.6 10 11 12 13 14 15 ) +POSTGRES_COMPAT=( 9.6 10 11 12 13 14 15 16 ) POSTGRES_USEDEP="server" inherit postgres-multi @@ -22,6 +22,11 @@ RDEPEND="${DEPEND}" # Needs a running PostgreSQL server RESTRICT="test" +src_prepare() { + sed -i 's;^PG_CONFIG =;PG_CONFIG ?=;' Makefile || die + postgres-multi_src_prepare +} + src_compile() { postgres-multi_foreach emake USE_PGXS=1 }