summaryrefslogtreecommitdiff
path: root/databases/py-mssql
AgeCommit message (Collapse)AuthorFilesLines
2011-10-14Fix build with current freetds.dholland2-1/+18
2011-06-14drop PYTHON_VERSION_ACCEPTED restriction, it was just not accept 23.obache1-2/+1
2011-04-22recursive bump from gettext-lib shlib bump.obache1-2/+2
2010-01-17Recursive PKGREVISION bump for jpeg update to 8.wiz1-1/+2
2009-03-05Remove PYBINMODULE. All it did was mark some packages as not availablejoerg1-2/+1
on some platforms that lacked shared library support in the past. The list hasn't been maintained at all and the gain is very limited, so just get rid of it.
2008-06-12Add DESTDIR support.joerg1-1/+3
2008-04-25Update PYTHON_VERSIONS_COMPATIBLEjoerg1-2/+2
- assume that Python 2.4 and 2.5 are compatible and allow checking for fallout. - remove PYTHON_VERSIONS_COMPATIBLE that are obsoleted by the 2.3+ default. Modify the others to deal with the removals.
2007-06-15Update py-mssql to 0.8.0.obache3-7/+10
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)
2006-05-28Use PYTHON_VERSIONS_ACCEPTED instead of _REQD, so that the latterjoerg1-2/+2
can be used to enforce versions after having determined which are suppported.
2006-04-06Over 1200 files touched but no revisions bumped :)reed1-2/+2
RECOMMENDED is removed. It becomes ABI_DEPENDS. BUILDLINK_RECOMMENDED.foo becomes BUILDLINK_ABI_DEPENDS.foo. BUILDLINK_DEPENDS.foo becomes BUILDLINK_API_DEPENDS.foo. BUILDLINK_DEPENDS does not change. IGNORE_RECOMMENDED (which defaulted to "no") becomes USE_ABI_DEPENDS which defaults to "yes". Added to obsolete.mk checking for IGNORE_RECOMMENDED. I did not manually go through and fix any aesthetic tab/spacing issues. I have tested the above patch on DragonFly building and packaging subversion and pkglint and their many dependencies. I have also tested USE_ABI_DEPENDS=no on my NetBSD workstation (where I have used IGNORE_RECOMMENDED for a long time). I have been an active user of IGNORE_RECOMMENDED since it was available. As suggested, I removed the documentation sentences suggesting bumping for "security" issues. As discussed on tech-pkg. I will commit to revbump, pkglint, pkg_install, createbuildlink separately. Note that if you use wip, it will fail! I will commit to pkgsrc-wip later (within day).
2006-03-13Updated py-mssql to 0.7.4.rillig2-7/+6
Changes: New features: - implemented set_query_timeout() and set_login_timeout() - implemented min_error_severity property: all errors that has severity less than min_error_severity doesn't raise exception, but are still available in errmsg() - stdmsg() is now deprecated; all errors can be retrieved using errmsg(); stdmsg() will disappear some time in the future - readded ntwdblib.dll; I misunderstood its licence-it's redistributable; this library is at the newest available version so connections to SQL 2005 are possible - new unit test provided by Jakub Labath - the web page has now more useful info Bugfixes: - sometimes exceptions were raised but error message was lost - the coltype wasn't set to NUMBER for float types (thanks Jakub Labath) Patch provided by bartosz\@atom.eu.org in PR 33070.
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-1/+2
2005-11-14Import py-mssql from pkgsrc-wip. Packaged by Bartosz Kuzma.minskim4-0/+38
This module provides access to MS SQL Servers from Python scripts. Features: - Multiple Query/Multiple Result - Not using Win32 ODBC (using MSSQL DB-LIB) - Supports "almost all" of the DB-API 2.0