~ubuntu-branches/ubuntu/karmic/calibre/karmic

« back to all changes in this revision

Viewing changes to installer/linux/freeze.py

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2009-07-30 12:49:41 UTC
  • mfrom: (1.3.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090730124941-qjdsmri25zt8zocn
Tags: 0.6.3+dfsg-0ubuntu1
* New upstream release. Please see http://calibre.kovidgoyal.net/new_in_6/
  for the list of new features and changes.
* remove_postinstall.patch: Update for new version.
* build_debug.patch: Does not apply any more, disable for now. Might not be
  necessary any more.
* debian/copyright: Fix reference to versionless GPL.
* debian/rules: Drop obsolete dh_desktop call.
* debian/rules: Add workaround for weird Python 2.6 setuptools behaviour of
  putting compiled .so files into src/calibre/plugins/calibre/plugins
  instead of src/calibre/plugins.
* debian/rules: Drop hal fdi moving, new upstream version does not use hal
  any more. Drop hal dependency, too.
* debian/rules: Install udev rules into /lib/udev/rules.d.
* Add debian/calibre.preinst: Remove unmodified
  /etc/udev/rules.d/95-calibre.rules on upgrade.
* debian/control: Bump Python dependencies to 2.6, since upstream needs
  it now.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
 
23
23
    QTDIR          = '/usr/lib/qt4'
24
 
    QTDLLS         = ('QtCore', 'QtGui', 'QtNetwork', 'QtSvg', 'QtXml', 'QtWebKit')
 
24
    QTDLLS         = ('QtCore', 'QtGui', 'QtNetwork', 'QtSvg', 'QtXml',
 
25
            'QtWebKit', 'QtDBus')
25
26
 
26
27
    binary_excludes = ['libGLcore*', 'libGL*', 'libnvidia*']
27
28
 
34
35
                       '/usr/lib/libpodofo.so.0.6.99',
35
36
                       '/lib/libz.so.1',
36
37
                       '/lib/libbz2.so.1',
37
 
                       '/lib/libbz2.so.1',
38
38
                       '/usr/lib/libpoppler.so.4',
39
39
                       '/usr/lib/libxml2.so.2',
40
40
                       '/usr/lib/libdbus-1.so.3',
47
47
                       '/usr/lib/libexslt.so.0',
48
48
                       '/usr/lib/libMagickWand.so',
49
49
                       '/usr/lib/libMagickCore.so',
 
50
                       '/usr/lib/libgcrypt.so.11',
 
51
                       '/usr/lib/libgpg-error.so.0',
 
52
                       '/usr/lib/libphonon.so.4',
50
53
                       ]
51
54
 
52
55
    binary_includes += [os.path.join(QTDIR, 'lib%s.so.4'%x) for x in QTDLLS]
93
96
                'dateutil', 'dns', 'email']
94
97
 
95
98
    includes += ['calibre.web.feeds.recipes.'+r for r in recipe_modules]
 
99
    includes += ['calibre.gui2.convert.'+x.split('/')[-1].rpartition('.')[0] for x in \
 
100
            glob.glob('src/calibre/gui2/convert/*.py')]
96
101
 
97
102
    LOADER = '/tmp/loader.py'
98
103
    open(LOADER, 'wb').write('# This script is never actually used.\nimport sys')