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 53844158083 for ; Sun, 15 Sep 2024 21:45:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 44285E29AB; Sun, 15 Sep 2024 21:45:24 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 39BA4E29AC for ; Sun, 15 Sep 2024 21:45:23 +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 2269333BE19 for ; Sun, 15 Sep 2024 21:45:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B870027EA for ; Sun, 15 Sep 2024 21:45:20 +0000 (UTC) From: "Julien Roy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Julien Roy" Message-ID: <1726399463.7992fd86eff8b5a260df6c1837b4271a75bff548.julien@gentoo> Subject: [gentoo-commits] repo/proj/guru:master 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: julien X-VCS-Committer-Name: Julien Roy X-VCS-Revision: 7992fd86eff8b5a260df6c1837b4271a75bff548 X-VCS-Branch: master Date: Sun, 15 Sep 2024 21:45:20 +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: 93e94596-534f-4b6e-a8c4-122cb5fecf4a X-Archives-Hash: 8548e789ff1ca7c56cb19336648e04ec commit: 7992fd86eff8b5a260df6c1837b4271a75bff548 Author: Haelwenn (lanodan) Monnier hacktivis me> AuthorDate: Sun Sep 15 11:23:58 2024 +0000 Commit: Julien Roy jroy ca> 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 }