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:
parent
be98bb9886
commit
8c032835b7
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=457528
@ -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}
|
||||
|
@ -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)]
|
||||
|
Loading…
Reference in New Issue
Block a user