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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0F80A1382C5 for ; Tue, 23 Mar 2021 15:30:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4CE17E083E; Tue, 23 Mar 2021 15:30:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 332ADE083E for ; Tue, 23 Mar 2021 15:30:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F35C033BEA6 for ; Tue, 23 Mar 2021 15:30:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 707D54F1 for ; Tue, 23 Mar 2021 15:30:14 +0000 (UTC) From: "罗百科" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "罗百科" Message-ID: <1616513390.2e38a81f54deab5bf95111f011f41946e378c847.patrick@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/postgresql/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/postgresql/postgresql-9999.ebuild X-VCS-Directories: dev-db/postgresql/ X-VCS-Committer: patrick X-VCS-Committer-Name: 罗百科 X-VCS-Revision: 2e38a81f54deab5bf95111f011f41946e378c847 X-VCS-Branch: master Date: Tue, 23 Mar 2021 15:30:14 +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: 03986a1e-6b40-4b85-8ff0-a0f5989ff776 X-Archives-Hash: 81195cedb40220e6190956baa50f6551 commit: 2e38a81f54deab5bf95111f011f41946e378c847 Author: Patrick Lauer gentoo org> AuthorDate: Tue Mar 23 15:29:23 2021 +0000 Commit: 罗百科 gentoo org> CommitDate: Tue Mar 23 15:29:50 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e38a81f dev-db/postgresql: Add lz4 useflag to -9999 Also update docbook dependencies Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Patrick Lauer gentoo.org> dev-db/postgresql/postgresql-9999.ebuild | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/dev-db/postgresql/postgresql-9999.ebuild b/dev-db/postgresql/postgresql-9999.ebuild index c9a4ce82776..c1b8aefe265 100644 --- a/dev-db/postgresql/postgresql-9999.ebuild +++ b/dev-db/postgresql/postgresql-9999.ebuild @@ -18,9 +18,9 @@ LICENSE="POSTGRESQL GPL-2" DESCRIPTION="PostgreSQL RDBMS" HOMEPAGE="https://www.postgresql.org/" -IUSE="debug icu kerberos kernel_linux ldap libressl llvm nls pam perl - python +readline selinux server systemd ssl static-libs tcl - threads uuid xml zlib" +IUSE="debug icu kerberos kernel_linux ldap libressl llvm lz4 + nls pam perl python +readline selinux server systemd + ssl static-libs tcl threads uuid xml zlib" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" @@ -37,6 +37,7 @@ llvm? ( sys-devel/llvm:= sys-devel/clang:= ) +lz4? ( app-arch/lz4 ) pam? ( sys-libs/pam ) perl? ( >=dev-lang/perl-5.8:= ) python? ( ${PYTHON_DEPS} ) @@ -78,8 +79,8 @@ uuid? ( DEPEND="${CDEPEND} >=dev-lang/perl-5.8 app-text/docbook-dsssl-stylesheets -app-text/docbook-sgml-dtd:4.2 -app-text/docbook-xml-dtd:4.2 +app-text/docbook-sgml-dtd:4.5 +app-text/docbook-xml-dtd:4.5 app-text/docbook-xsl-stylesheets app-text/openjade dev-libs/libxml2 @@ -168,6 +169,7 @@ src_configure() { $(use_with kerberos gssapi) \ $(use_with ldap) \ $(use_with llvm) \ + $(use_with lz4) \ $(use_with pam) \ $(use_with perl) \ $(use_with python) \