~ubuntu-branches/ubuntu/vivid/gpodder/vivid

« back to all changes in this revision

Viewing changes to src/gpodder/__init__.py

  • Committer: Package Import Robot
  • Author(s): tony mancill
  • Date: 2014-07-26 20:43:14 UTC
  • mfrom: (5.2.33 sid)
  • Revision ID: package-import@ubuntu.com-20140726204314-kz4v2tyeeg7oj43y
Tags: 3.8.0-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
# This metadata block gets parsed by setup.py - use single quotes only
21
21
__tagline__   = 'Media aggregator and podcast client'
22
22
__author__    = 'Thomas Perl <thp@gpodder.org>'
23
 
__version__   = '3.7.0'
24
 
__date__      = '2014-05-17'
25
 
__relname__   = 'Off-Screen Bionic Chiseling'
 
23
__version__   = '3.8.0'
 
24
__date__      = '2014-07-26'
 
25
__relname__   = 'On-Screen Bionic Screw Fastening'
26
26
__copyright__ = '© 2005-2014 Thomas Perl and the gPodder Team'
27
27
__license__   = 'GNU General Public License, version 3 or later'
28
28
__url__       = 'http://gpodder.org/'
43
43
  Error: Module "feedparser" (python-feedparser) not found.
44
44
         The feedparser module can be downloaded from
45
45
         http://code.google.com/p/feedparser/
 
46
 
 
47
  From a source checkout, you can download local copies of all
 
48
  CLI dependencies for debugging (will be placed into "src/"):
 
49
 
 
50
      python tools/localdepends.py
46
51
"""
47
52
    sys.exit(1)
48
53
del feedparser
54
59
  Error: Module "mygpoclient" (python-mygpoclient) not found.
55
60
         The mygpoclient module can be downloaded from
56
61
         http://thp.io/2010/mygpoclient/
 
62
 
 
63
  From a source checkout, you can download local copies of all
 
64
  CLI dependencies for debugging (will be placed into "src/"):
 
65
 
 
66
      python tools/localdepends.py
57
67
"""
58
68
    sys.exit(1)
59
69
del mygpoclient
77
87
class UI(object):
78
88
    def __init__(self):
79
89
        self.harmattan = False
80
 
        self.sailfish = False
81
90
        self.gtk = False
82
91
        self.qml = False
83
92
        self.cli = False
226
235
        etc_issue = ''
227
236
 
228
237
    ui.harmattan = ('MeeGo 1.2 Harmattan' in etc_issue)
229
 
    ui.sailfish = ('Mer release' in etc_issue)
230
238
 
231
239
    if ui.harmattan and ENV_HOME not in os.environ:
232
240
        new_home = os.path.expanduser(os.path.join('~', 'MyDocs', 'gPodder'))