mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-13 16:11:15 +00:00
* common.py: Use sqlite3 instead of pysqlite2 as it forms part of Python 2.5.
* debian/control: Changed XS-Python-Version to >= 2.5.
This commit is contained in:
parent
0adea5faa0
commit
fb7bb815e0
@ -58,7 +58,7 @@ def prepareLaunchpadCookie():
|
|||||||
|
|
||||||
# Found SQLite file. Parse information from it.
|
# Found SQLite file. Parse information from it.
|
||||||
if launchpad_cookiefile.find('cookies.sqlite') != -1:
|
if launchpad_cookiefile.find('cookies.sqlite') != -1:
|
||||||
from pysqlite2 import dbapi2 as sqlite
|
import sqlite3 as sqlite
|
||||||
|
|
||||||
con = sqlite.connect(launchpad_cookiefile)
|
con = sqlite.connect(launchpad_cookiefile)
|
||||||
|
|
||||||
|
3
debian/changelog
vendored
3
debian/changelog
vendored
@ -14,7 +14,8 @@ ubuntu-dev-tools (0.37ubuntu1) intrepid; urgency=low
|
|||||||
* debian/ubuntu-dev-tools.install: Added line to install common.py above to
|
* debian/ubuntu-dev-tools.install: Added line to install common.py above to
|
||||||
the correct location.
|
the correct location.
|
||||||
* requestsync: Use the functions in the common.py file above to authenticate
|
* requestsync: Use the functions in the common.py file above to authenticate
|
||||||
with Launchpad
|
with Launchpad.
|
||||||
|
* debian/control: Changed XS-Python-Version to >= 2.5.
|
||||||
|
|
||||||
[ Siegfried-Angel Gevatter Pujals ]
|
[ Siegfried-Angel Gevatter Pujals ]
|
||||||
* Add the GNU General Public License header to all scripts.
|
* Add the GNU General Public License header to all scripts.
|
||||||
|
2
debian/control
vendored
2
debian/control
vendored
@ -6,7 +6,7 @@ Vcs-Bzr: http://bazaar.launchpad.net/~ubuntu-dev/ubuntu-dev-tools/trunk
|
|||||||
Vcs-Browser: http://codebrowse.launchpad.net/~ubuntu-dev/ubuntu-dev-tools/trunk/changes
|
Vcs-Browser: http://codebrowse.launchpad.net/~ubuntu-dev/ubuntu-dev-tools/trunk/changes
|
||||||
Build-Depends: cdbs (>= 0.4.49), debhelper (>= 5), python-all-dev (>= 2.4)
|
Build-Depends: cdbs (>= 0.4.49), debhelper (>= 5), python-all-dev (>= 2.4)
|
||||||
Build-Depends-Indep: python-central (>= 0.5)
|
Build-Depends-Indep: python-central (>= 0.5)
|
||||||
XS-Python-Version: all
|
XS-Python-Version: >= 2.5
|
||||||
Homepage: https://launchpad.net/ubuntu-dev-tools/
|
Homepage: https://launchpad.net/ubuntu-dev-tools/
|
||||||
Standards-Version: 3.8.0
|
Standards-Version: 3.8.0
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user