1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-01 05:45:45 +00:00

Fix _gdbm module for Python 3

- Bump PORTREVISION for package change

PR:		223136
Submitted by:	Greg V <greg@unrelenting.technology>
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2017-12-29 18:47:42 +00:00
parent be98bb9886
commit 8c032835b7
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=457528
2 changed files with 2 additions and 2 deletions
databases/py-gdbm

View File

@ -3,7 +3,7 @@
PORTNAME= gdbm
PORTVERSION= ${PYTHON_PORTVERSION}
PORTREVISION= 4
PORTREVISION= 5
CATEGORIES= databases python
MASTER_SITES= PYTHON/ftp/python/${PORTVERSION}
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View File

@ -23,7 +23,7 @@ libs = ["gdbm"]
setup(name = "gdbm",
description = "GDBM Extension to Python",
ext_modules = [Extension('gdbm', ['_gdbmmodule.c'],
ext_modules = [Extension('_gdbm', ['_gdbmmodule.c'],
include_dirs = inc_dirs,
libraries = libs,
library_dirs = lib_dirs)]