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 A639E139694 for ; Thu, 13 Jul 2017 19:13:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2C974234019; Thu, 13 Jul 2017 19:13:36 +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 0A12F234019 for ; Thu, 13 Jul 2017 19:13:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 E9DDD341A47 for ; Thu, 13 Jul 2017 19:13:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7CD03748A for ; Thu, 13 Jul 2017 19:13:30 +0000 (UTC) From: "Aaron Swenson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Swenson" Message-ID: <1499973200.a32a4854505b9d10b2f70279a73ce510baf01533.titanofold@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: titanofold X-VCS-Committer-Name: Aaron Swenson X-VCS-Revision: a32a4854505b9d10b2f70279a73ce510baf01533 X-VCS-Branch: master Date: Thu, 13 Jul 2017 19:13:30 +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-Archives-Salt: afa31568-90a7-4c9f-b5e6-4c7c11f222f0 X-Archives-Hash: 57e0aad339e5cb7c359418da2ff43e9c commit: a32a4854505b9d10b2f70279a73ce510baf01533 Author: Aaron W. Swenson gentoo org> AuthorDate: Thu Jul 13 19:13:20 2017 +0000 Commit: Aaron Swenson gentoo org> CommitDate: Thu Jul 13 19:13:20 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a32a4854 dev-db/postgresql: Disable Spinlocks on Alpha For the live ebuild (9999), disabling spinlocks on Alpha as it is no longer supported upstream. Package-Manager: Portage-2.3.6, Repoman-2.3.1 dev-db/postgresql/postgresql-9999.ebuild | 1 + 1 file changed, 1 insertion(+) diff --git a/dev-db/postgresql/postgresql-9999.ebuild b/dev-db/postgresql/postgresql-9999.ebuild index 6c6a2cb3946..300a8efb793 100644 --- a/dev-db/postgresql/postgresql-9999.ebuild +++ b/dev-db/postgresql/postgresql-9999.ebuild @@ -147,6 +147,7 @@ src_configure() { --mandir="${PO}/usr/share/postgresql-${SLOT}/man" \ --sysconfdir="${PO}/etc/postgresql-${SLOT}" \ --with-system-tzdata="${PO}/usr/share/zoneinfo" \ + $(use_enable !alpha spinlocks) \ $(use_enable !pg_legacytimestamp integer-datetimes) \ $(use_enable threads thread-safety) \ $(use_with kerberos gssapi) \