~ubuntu-branches/ubuntu/precise/indicator-weather/precise

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Package Import Robot
  • Author(s): Andrew Starr-Bochicchio
  • Date: 2012-01-20 15:25:46 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20120120152546-teqc89yc42ddtb3x
Tags: 11.11.28-0ubuntu1
* New upstream release.
 - Preferences buttons OK and Cancel and Forecast's Close
   are not focusable (LP: #853774)
 - Don't crash if Google doesn't return icons (LP: #809187)
 - Display degrees in wind info item if Yahoo is selected (LP: #838369)
 - Fixed Assistant behavior for Forward/Back movements (LP: #804659)
 - Fixed a crash when Unknown wind condition was returned, thanks
   Tomasz Maciejewski! (LP: #886028)
 - Don't write too much debug info in the log (LP: #917253)
* Drop debian/patches/autostart.patch, applied upstream.
* Drop debian/README.source, no longer needed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
### BEGIN LICENSE
4
4
# Copyright (C) 2010 Sebastian MacDonald Sebas310@gmail.com
5
5
# Copyright (C) 2010 Mehdi Rejraji mehd36@gmail.com
 
6
# Copyright (C) 2011 Vadim Rutkovsky roignac@gmail.com
6
7
# This program is free software: you can redistribute it and/or modify it 
7
8
# under the terms of the GNU General Public License version 3, as published 
8
9
# by the Free Software Foundation.
18
19
 
19
20
###################### DO NOT TOUCH THIS (HEAD TO THE SECOND PART) ######################
20
21
 
21
 
import os
22
 
import sys
 
22
import os, sys
23
23
try:
24
24
    import DistUtilsExtra.auto
25
25
except ImportError:
55
55
 
56
56
 
57
57
def update_desktop_file(datadir):
58
 
 
59
58
    try:
60
59
        fin = file('indicator-weather.desktop.in', 'r')
61
60
        fout = file(fin.name + '.new', 'w')
86
85
 
87
86
DistUtilsExtra.auto.setup(
88
87
    name='indicator-weather',
89
 
    version='11.04.24',
 
88
    version='11.05.31',
90
89
    license='GPL-3',
91
90
    author='Vadim Rutkovsky | Sebastian MacDonald | Mehdi Rejraji',
92
91
    author_email='roignac@gmail.com',