pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/databases/postgresql-pgbench



Module Name:    pkgsrc
Committed By:   fhajny
Date:           Wed Nov 23 13:39:29 UTC 2016

Modified Files:
        pkgsrc/databases/postgresql-pgbench: Makefile

Log Message:
Limit databases/postgresql-pgbench to PostgreSQL<9.5.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 pkgsrc/databases/postgresql-pgbench/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/databases/postgresql-pgbench/Makefile
diff -u pkgsrc/databases/postgresql-pgbench/Makefile:1.4 pkgsrc/databases/postgresql-pgbench/Makefile:1.5
--- pkgsrc/databases/postgresql-pgbench/Makefile:1.4    Sun Oct  9 21:41:57 2016
+++ pkgsrc/databases/postgresql-pgbench/Makefile        Wed Nov 23 13:39:28 2016
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.4 2016/10/09 21:41:57 wiz Exp $
+# $NetBSD: Makefile,v 1.5 2016/11/23 13:39:28 fhajny Exp $
 
 PKGNAME=       ${DISTNAME:C/-/${PGSQL_VERSION}-pgbench-/}
 PKGREVISION=   1
@@ -8,8 +8,8 @@ BUILD_DIRS+=            contrib/pgbench
 
 .include "../../mk/pgsql.buildlink3.mk" # this one defines PGSQL_VERSION among others
 
-# This package should be removed when PGSQL_VERSION_DEFAULT is bumped
-.if !empty(PGSQL_VERSION:M95)
+# This package is only to be used with PostgreSQL<9.5
+.if empty(PGSQL_VERSION:M9[1234])
 PKG_SKIP_REASON+=      \
        "pgbench is now shipped with postgresql${PGSQL_VERSION}-client"
 .endif



Home | Main Index | Thread Index | Old Index