~ubuntu-branches/debian/sid/gdebi/sid

« back to all changes in this revision

Viewing changes to gdebi

  • Committer: Package Import Robot
  • Author(s): Dimitri John Ledkov, Barry Warsaw, Dimitri John Ledkov
  • Date: 2014-04-02 00:18:33 UTC
  • Revision ID: package-import@ubuntu.com-20140402001833-7an382zozgszlp8j
Tags: 0.9.5
[ Barry Warsaw ]
* New upstream release.
* Switched all command line scripts to Python 3 and dropped Dependencies
  on Python 3.  (LP: #1283574)
* Some whitespace cleanup.
* Removed some unnecessary shebang lines.
* Set the dpkg child process write file descriptor to 'inheritable'.

[ Dimitri John Ledkov ]
* Process all packages with dh_python3, to get correct dependencies.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/python
 
1
#!/usr/bin/python3
2
2
#
3
3
# Copyright (c) 2005-2009 Canonical Ltd
4
4
#
24
24
 
25
25
# silly py3 compat, py3.3 should make this unneeded
26
26
try:
27
 
        unicode
 
27
    unicode
28
28
except NameError:
29
 
        unicode = lambda *args: args[0]
 
29
    unicode = lambda *args: args[0]
30
30
 
31
31
import sys
32
32
import os.path