~ubuntu-branches/ubuntu/natty/usb-creator/natty-security

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Bazaar Package Importer
  • Author(s): Evan Dandrea, Evan Dandrea, Roderick B. Greening
  • Date: 2009-09-24 10:02:28 UTC
  • Revision ID: james.westby@ubuntu.com-20090924100228-744y2ltfi4vq89rd
Tags: 0.2.7
[ Evan Dandrea ]
* Add PolicyKit support (LP: #273483).
* Move logging back to the home directory, now that usb-creator is run as a
  regular user (LP: #431266).
* Use GIO instead of gnomevfs.  Only lookup GNOME device names and
  icons as needed.
* Remove the device in the DeviceKit-disks backend when it's removed
  from the system.
* Only set the non-size columns to expand to fill available space in the GTK+
  frontend.  Set a minimum width of 75px for all columns.
* Add the missing retry dialog to the GTK+ frontend.
* Fix a deadlock when the failed dialog runs.
* Explicitly depend on mtools, just in case someone removes it and
  expects usb-creator to still work (LP: #295212).
* Re-enable the format button now that Devicekit-disks 007 has been
  released.
* Depend on DeviceKit-disks >= 007.
* Freeze exception (LP: #432542).
* Update translations from Launchpad.

[ Roderick B. Greening ]
* Bump version in setup.py, kde_about.py, usb-creator-gtk, and man to 0.2.7
* Remove completed TODO items
* Update some message strings for translations
* Add the missing retry dialog to the KDE frontend.
* Update man pages to reflect new log file location
* In devicekit backend, ensure mount is empty string '' rather than empty
  dbus.Array to prevent crashes in os.statvfs from misc.py

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
         os.system("./Messages.sh")
10
10
 
11
11
setup(name='usb-creator',
12
 
    version='0.2.6',
 
12
    version='0.2.7',
13
13
    description='Ubuntu USB desktop image creator',
14
14
    author='Evan Dandrea',
15
15
    author_email='evand@ubuntu.com',
24
24
             ],
25
25
    scripts=['bin/usb-creator-gtk','bin/usb-creator-kde'],
26
26
    data_files=[('share/usb-creator', ['gui/usbcreator-gtk.ui']),
 
27
                ('share/usb-creator', ['bin/usb-creator-helper']),
27
28
                ('share/pixmaps', ['desktop/usb-creator-gtk.png', 'desktop/usb-creator-kde.png']),
28
 
                ('share/kde4/apps/usb-creator-kde', ['gui/usbcreator-kde.ui'])],
 
29
                ('share/kde4/apps/usb-creator-kde', ['gui/usbcreator-kde.ui']),
 
30
                ('/etc/dbus-1/system.d', ['dbus/com.ubuntu.USBCreator.conf']),
 
31
                ('share/dbus-1/system-services', ['dbus/com.ubuntu.USBCreator.service'])],
29
32
    cmdclass = { "build" : build_extra.build_extra,
30
33
        "build_i18n" :  usb_creator_build_i18n,
31
34
        "build_help" :  build_help.build_help,