diff options
author | John Marino <marino@FreeBSD.org> | 2014-11-28 10:02:20 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2014-11-28 10:02:20 +0000 |
commit | 77a8d68ef6988147f704133838d007effd7c015f (patch) | |
tree | 1fe695738df2982c4e08e5b22d100da57b8a7603 /databases/py-postgresql | |
parent | sysutils/vagrant: Fix error setting certificate verify locations (diff) |
databases/py-postgresql: Support python 3.4
When python 3 only is specified, building the port tries to install
python 3.3 even if python 3.4 is requested, so this change addresses that.
PR: 194656
Submitted by: Axel Rau (chaos1.de)
Approved by: maintainer timeout
Notes
Notes:
svn path=/head/; revision=373539
Diffstat (limited to 'databases/py-postgresql')
-rw-r--r-- | databases/py-postgresql/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/databases/py-postgresql/Makefile b/databases/py-postgresql/Makefile index 9fe54160abe5..7ea56fdf6316 100644 --- a/databases/py-postgresql/Makefile +++ b/databases/py-postgresql/Makefile @@ -2,7 +2,7 @@ PORTNAME= postgresql PORTVERSION= 1.1.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= databases python MASTER_SITES= CHEESESHOP \ http://python.projects.postgresql.org/files/ @@ -15,7 +15,7 @@ COMMENT= Python 3 compatible PostgreSQL database driver and tools LICENSE= BSD3CLAUSE -USES= zip pgsql python:3 +USES= zip pgsql python:3.3+ USE_PYTHON= distutils autoplist .include <bsd.port.mk> |