From owner-svn-ports-all@freebsd.org Mon Apr 27 20:51:19 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 580D42C5A2C; Mon, 27 Apr 2020 20:51:19 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 499xlC1l8Nz4bkK; Mon, 27 Apr 2020 20:51:19 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 36F5018ABF; Mon, 27 Apr 2020 20:51:19 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 03RKpI9W062471; Mon, 27 Apr 2020 20:51:18 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 03RKpI9c062470; Mon, 27 Apr 2020 20:51:18 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <202004272051.03RKpI9c062470@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Mon, 27 Apr 2020 20:51:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r533169 - head/databases/pg_citus X-SVN-Group: ports-head X-SVN-Commit-Author: matthew X-SVN-Commit-Paths: head/databases/pg_citus X-SVN-Commit-Revision: 533169 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Apr 2020 20:51:19 -0000 Author: matthew Date: Mon Apr 27 20:51:18 2020 New Revision: 533169 URL: https://svnweb.freebsd.org/changeset/ports/533169 Log: Mark the port as requiring postgresql-11 or higher. Attempting to build the port with postgres-10 results in: ``` configure: error: Citus is not compatible with the detected PostgreSQL version 10. ``` No PORTREVISION bump, as this will have no effect on the default packages (which link against postgresql-11) or on anyone who has successfully built pg_citus. All that happens is that we detect the incompatible postgresql version earlier in the build process and error out sooner. PR: 245958 Reported by: rainer@ultra-secure.de Modified: head/databases/pg_citus/Makefile Modified: head/databases/pg_citus/Makefile ============================================================================== --- head/databases/pg_citus/Makefile Mon Apr 27 20:31:12 2020 (r533168) +++ head/databases/pg_citus/Makefile Mon Apr 27 20:51:18 2020 (r533169) @@ -12,7 +12,7 @@ COMMENT= Horizontally scale Postgresql using sharding LICENSE= AGPLv3 -USES= compiler:c11 gmake pgsql:10+ autoreconf readline +USES= compiler:c11 gmake pgsql:11+ autoreconf readline WANT_PGSQL= lib server GNU_CONFIGURE= yes