debian/0000755000000000000000000000000012154610446007171 5ustar debian/docs0000644000000000000000000000001312036230661010032 0ustar README.rst debian/changelog0000644000000000000000000000231712154610300011033 0ustar pyodbc (3.0.6-2) unstable; urgency=low * Team upload [ Jakub Wilk ] * Use canonical URIs for Vcs-* fields. [ Laurent Bigonville ] * Upload to unstable * Bump Standards-Version to 3.9.4 (no further changes) -- Laurent Bigonville Sat, 08 Jun 2013 13:08:47 +0200 pyodbc (3.0.6-1) experimental; urgency=low * Team upload. [ Deepak Tripathi ] * debian/watch + updated source location. * debian/control + indented -dbg's descriptions. [ Laurent Bigonville ] * New upstream release (Closes: #690322) * Switch from pysupport to dh_python2 * Bump debhelper compatibility to 9 * Bump Standards-Version to 3.9.3 (no further changes) * debian/watch: Update URL, the googlecode redirector doesn't exists anymore. * Switch to DebSrc 3.0 (quilt) -- Laurent Bigonville Fri, 25 Jan 2013 21:07:03 +0100 pyodbc (2.1.7-1) unstable; urgency=low * New upstream release -- Deepak Tripathi Mon, 05 Apr 2010 08:59:22 +0000 pyodbc (2.1.6-1) unstable; urgency=low * Initial release (Closes: #455266) * Repacked source to orig.tar.gz from zip -- Deepak Tripathi Mon, 08 Feb 2010 04:54:56 +0000 debian/compat0000644000000000000000000000000212036231612010360 0ustar 9 debian/watch0000644000000000000000000000013212036235062010212 0ustar version=3 http://code.google.com/p/pyodbc/downloads/list?can=1 .*/pyodbc-(\d[\d.]*)\.zip debian/python-pyodbc.install0000644000000000000000000000006212036230661013352 0ustar debian/tmp/usr/lib/python2.*/*-packages/pyodbc.so debian/copyright0000644000000000000000000000255212036234335011126 0ustar This work was packaged for Debian by: Deepak Tripathi on Mon, 08 Feb 2010 04:54:56 +0000 It was downloaded from http://code.google.com/p/pyodbc/ Upstream Author: Author: Michael Kleehammer Author-email: michael@kleehammer.com Copyright: Copyright (c) 2004-2008 Michael Kleehammer License: MIT License: Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software" to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. The Debian packaging is: Copyright (C) 2010 Deepak Tripathi and is licensed under the GPL, see `/usr/share/common-licenses/GPL-2'. debian/source/0000755000000000000000000000000012154610446010471 5ustar debian/source/format0000644000000000000000000000001412100562237011672 0ustar 3.0 (quilt) debian/control0000644000000000000000000000372312154607130010575 0ustar Source: pyodbc Section: python Priority: optional Maintainer: Deepak Tripathi Uploaders: Debian Python Modules Team Build-Depends: cdbs (>= 0.4.90~), debhelper (>= 9), python-all-dev (>= 2.6.6-3~), unixodbc-dev, python-all-dbg Standards-Version: 3.9.4 X-Python-Version: >= 2.4 Homepage: http://code.google.com/p/pyodbc/ Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/pyodbc/trunk/ Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/pyodbc/trunk/ Package: python-pyodbc Architecture: any Depends: ${python:Depends}, ${shlibs:Depends}, ${misc:Depends} Provides: ${python:Provides} Description: Python module for ODBC database access A Python DB API 2 module for ODBC. No 3rd party libraries are required. Only native Python datatypes are used, such as decimal and datetime. It implements the Python Database API Specification v2.0. For example: import pyodbc Next, create a connection by passing an ODBC connection string to the connect method. This step causes ODBC to load the database driver (the SQL Server driver in this example) and connect to the database. cnxn = pyodbc.connect('DSN=northwind') Package: python-pyodbc-dbg Section: debug Architecture: any Priority: extra Depends: python-pyodbc (= ${binary:Version}), ${python:Depends}, ${shlibs:Depends}, ${misc:Depends} Description: Python module for ODBC database access - Debugging symbols A Python DB API 2 module for ODBC. No 3rd party libraries are required. Only native Python datatypes are used, such as decimal and datetime. It implements the Python Database API Specification v2.0. For example: import pyodbc Next, create a connection by passing an ODBC connection string to the connect method. This step causes ODBC to load the database driver (the SQL Server driver in this example) and connect to the database. cnxn = pyodbc.connect('DSN=northwind') . This package contains debugging symbols. debian/rules0000755000000000000000000000136212036260777010262 0ustar #!/usr/bin/make -f include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/python-distutils.mk build/python-pyodbc-dbg:: set -e; \ for i in $(cdbs_python_build_versions); do \ python$$i-dbg ./setup.py build; \ done install/python-pyodbc-dbg:: for i in $(cdbs_python_build_versions); do \ python$$i-dbg ./setup.py install --root $(CURDIR)/debian/python-pyodbc-dbg; \ done find debian/python-pyodbc-dbg \ ! -type d ! -name '*_d.so' | xargs rm -f find debian/python-pyodbc-dbg -depth -empty -exec rmdir {} \; binary-predeb/python-pyodbc-dbg:: rm -rf debian/python-pyodbc-dbg/usr/share/doc/python-pyodbc-dbg ln -s python-pyodbc debian/python-pyodbc-dbg/usr/share/doc/python-pyodbc-dbg clean:: rm -rf build