/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Jelmer Vernooij
  • Date: 2008-03-30 15:58:52 UTC
  • mto: (450.1.11 trunk)
  • mto: This revision was merged to the branch mainline in revision 458.
  • Revision ID: jelmer@samba.org-20080330155852-0btngt3srvde5pj9
Add utility function for finding icon paths.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
class InstallData(install_data):
37
37
    def run(self):
38
38
        self.data_files.extend(self._compile_po_files())
39
 
        self.data_files.extend(self._nautilus_plugin())
 
39
        # Disable for now - performance issues
 
40
        #self.data_files.extend(self._nautilus_plugin())
40
41
        install_data.run(self)
41
42
 
42
43
        try:
91
92
 
92
93
setup(
93
94
    name = "bzr-gtk",
94
 
    version = "0.95.0",
 
95
    version = "0.94.0",
95
96
    maintainer = "Jelmer Vernooij",
96
97
    maintainer_email = "jelmer@samba.org",
97
98
    description = "GTK+ Frontends for various Bazaar commands",
98
 
    license = "GNU GPL v2 or later",
99
 
    scripts=['olive-gtk', 'bzr-handle-patch'],
 
99
    license = "GNU GPL v2",
 
100
    scripts=['olive-gtk'],
100
101
    package_dir = {
101
102
        "bzrlib.plugins.gtk": ".",
102
103
        "bzrlib.plugins.gtk.viz": "viz", 
104
105
        "bzrlib.plugins.gtk.olive": "olive",
105
106
        "bzrlib.plugins.gtk.tests": "tests",
106
107
        "bzrlib.plugins.gtk.branchview": "branchview",
107
 
        "bzrlib.plugins.gtk.preferences": "preferences",
108
108
        },
109
109
    packages = [
110
110
        "bzrlib.plugins.gtk",
113
113
        "bzrlib.plugins.gtk.olive",
114
114
        "bzrlib.plugins.gtk.tests",
115
115
        "bzrlib.plugins.gtk.branchview",
116
 
        "bzrlib.plugins.gtk.preferences",
117
116
        ],
118
117
    data_files=[('share/olive', ['olive.glade',
119
118
                                 'cmenu.ui',
134
133
                                 'icons/sign-ok.png',
135
134
                                 'icons/sign.png',
136
135
                                 'icons/sign-unknown.png',
137
 
                                 'icons/bug.png',
138
136
                                 'icons/bzr-icon-64.png']),
139
137
                ('share/applications', ['olive-gtk.desktop',
140
138
                                        'bazaar-properties.desktop',
141
 
                                        'bzr-handle-patch.desktop',
142
139
                                        'bzr-notify.desktop']),
143
 
                ('share/application-registry', ['bzr-gtk.applications']),
144
140
                ('share/pixmaps', ['icons/olive-gtk.png', 'icons/bzr-icon-64.png']),
145
141
                ('share/icons/hicolor/scalable/emblems', 
146
142
                    ['icons/emblem-bzr-added.svg',