159259d8e2
Patch provided by maintainer, Bartosz Kuzma in PR 36478. Changes since 0.7.4: Sun Sep 24 10:44:00 2006 Andrzej Kukula <akukula@gmail.com> * setup.py: + it can now dynamically determine the path to SQL 2000 Developer Tools, if win32api and win32con modules are available + simple Python version check to prevent most frequently asked question Wed Sep 13 01:20:00 2006 Andrzej Kukula <akukula@gmail.com> * mssqldbmodule.c: + corrected misspellings in docstrings + fixed segfault on connection close with Python 2.5; thanks Justin Francis <jfrancis@pivotalpayments.com> * pymssql.py: + fixed two minor DB-API incompatibilities (thanks Matthew Good <matt@matt-good.net>) + fixed datetime quoting (thanks Jan Finell <jfinell@regionline.fi>) * pymssql should be able to build on cygwin (thanks rob@robnet.com) * docstring fixes, webpage doc updates Tue May 15 03:18:00 2006 Jooncheol Park <exman@users.sourceforge.net> * setup.py, PKG-INFO, README: license change to LGPL Wed Mar 15 08:18:00 2006 Andrzej Kukula <akukula@users.sourceforge.net> * pymssql.py: fixed datetime issue (thanks Jan Finell <jfinell@regionline.fi>) Fri Feb 24 16:11:00 2006 Andrzej Kukula <akukula@users.sourceforge.net> * mssqldbmodule.c: fixed typos in docstrings (thanks Konstantin Veretennicov)
22 lines
614 B
Makefile
22 lines
614 B
Makefile
# $NetBSD: Makefile,v 1.6 2007/06/15 16:08:39 obache Exp $
|
|
#
|
|
|
|
DISTNAME= pymssql-0.8.0
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//}
|
|
CATEGORIES= databases python
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=pymssql/}
|
|
|
|
MAINTAINER= bartosz.kuzma@gmail.com
|
|
HOMEPAGE= http://pymssql.sourceforge.net/
|
|
COMMENT= Python interface to MS SQL
|
|
|
|
BUILDLINK_API_DEPENDS.freetds+= freetds>=0.63
|
|
|
|
PYTHON_VERSIONS_ACCEPTED= 24
|
|
PYBINMODULE= yes
|
|
PYDISTUTILSPKG= yes
|
|
|
|
.include "../../databases/freetds/buildlink3.mk"
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../lang/python/extension.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|