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 B25DF1581EE for ; Wed, 09 Apr 2025 15:25:48 +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 9C598343171 for ; Wed, 09 Apr 2025 15:25:48 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 97C191104B6; Wed, 09 Apr 2025 15:25:47 +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 8D7071104B6 for ; Wed, 09 Apr 2025 15:25:47 +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 1EC2334316C for ; Wed, 09 Apr 2025 15:25:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 962E81379 for ; Wed, 09 Apr 2025 15:25:45 +0000 (UTC) From: "Patrick Lauer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick Lauer" Message-ID: <1744212343.d7ae5366335b7f9d687896a33ff77d28960dcda4.patrick@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/postgresql/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/postgresql/metadata.xml dev-db/postgresql/postgresql-9999.ebuild X-VCS-Directories: dev-db/postgresql/ X-VCS-Committer: patrick X-VCS-Committer-Name: Patrick Lauer X-VCS-Revision: d7ae5366335b7f9d687896a33ff77d28960dcda4 X-VCS-Branch: master Date: Wed, 09 Apr 2025 15:25:45 +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: b4ff6aba-f764-4c13-9a40-879739208d8b X-Archives-Hash: 266356c9ba2aa029a6b97c05b6c970b5 commit: d7ae5366335b7f9d687896a33ff77d28960dcda4 Author: Patrick Lauer gentoo org> AuthorDate: Wed Apr 9 15:24:18 2025 +0000 Commit: Patrick Lauer gentoo org> CommitDate: Wed Apr 9 15:25:43 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7ae5366 dev-db/postgresql: Add numa support in -9999 Signed-off-by: Patrick Lauer gentoo.org> dev-db/postgresql/metadata.xml | 3 +++ dev-db/postgresql/postgresql-9999.ebuild | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/dev-db/postgresql/metadata.xml b/dev-db/postgresql/metadata.xml index 9948dcbc6e2a..dcd5555ebe2f 100644 --- a/dev-db/postgresql/metadata.xml +++ b/dev-db/postgresql/metadata.xml @@ -9,6 +9,9 @@ Add support for llvm JIT engine + + Add support for NUMA + Enable OAuth2 authentication support diff --git a/dev-db/postgresql/postgresql-9999.ebuild b/dev-db/postgresql/postgresql-9999.ebuild index fdfe4c333e47..2447d33b3159 100644 --- a/dev-db/postgresql/postgresql-9999.ebuild +++ b/dev-db/postgresql/postgresql-9999.ebuild @@ -27,7 +27,7 @@ else S="${WORKDIR}/${PN}-${MY_PV}" fi -IUSE="debug doc +icu kerberos ldap llvm +lz4 nls oauth pam perl python +readline +IUSE="debug doc +icu kerberos ldap llvm +lz4 nls numa oauth pam perl python +readline selinux systemd ssl static-libs tcl test uring uuid xml zlib zstd" REQUIRED_USE=" @@ -50,6 +50,7 @@ llvm? ( $(llvm_gen_dep ' llvm-core/llvm:${LLVM_SLOT} ') ) lz4? ( app-arch/lz4 ) +numa? ( sys-process/numactl ) oauth? ( net-misc/curl[adns] ) pam? ( sys-libs/pam ) perl? ( >=dev-lang/perl-5.14:= ) @@ -170,6 +171,7 @@ src_configure() { $(meson_feature llvm) $(meson_feature lz4) $(meson_feature nls) + $(meson_feature numa libnuma) $(meson_feature oauth libcurl) $(meson_feature pam) $(meson_feature perl plperl)