/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: Daniel Schierbeck
  • Date: 2008-04-07 20:34:51 UTC
  • mfrom: (450.6.13 bugs)
  • mto: (463.2.1 bug.78765)
  • mto: This revision was merged to the branch mainline in revision 462.
  • Revision ID: daniel.schierbeck@gmail.com-20080407203451-2i6el7jf9t0k9y64
Merged bug page improvements.

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
        # Disable for now - performance issues
40
40
        #self.data_files.extend(self._nautilus_plugin())
41
41
        install_data.run(self)
42
 
    
 
42
 
 
43
        try:
 
44
            subprocess.check_call('gtk-update-icon-cache -f -t /usr/share/icons/hicolor')
 
45
        except:
 
46
            pass
 
47
 
43
48
    def _compile_po_files(self):
44
49
        data_files = []
45
50
        
87
92
 
88
93
setup(
89
94
    name = "bzr-gtk",
90
 
    version = "0.92.0",
 
95
    version = "0.94.0",
91
96
    maintainer = "Jelmer Vernooij",
92
97
    maintainer_email = "jelmer@samba.org",
93
98
    description = "GTK+ Frontends for various Bazaar commands",
98
103
        "bzrlib.plugins.gtk.viz": "viz", 
99
104
        "bzrlib.plugins.gtk.annotate": "annotate",
100
105
        "bzrlib.plugins.gtk.olive": "olive",
101
 
        "bzrlib.plugins.gtk.tests": "tests"
 
106
        "bzrlib.plugins.gtk.tests": "tests",
 
107
        "bzrlib.plugins.gtk.branchview": "branchview",
102
108
        },
103
109
    packages = [
104
 
        "olive",
105
110
        "bzrlib.plugins.gtk",
106
111
        "bzrlib.plugins.gtk.viz",
107
112
        "bzrlib.plugins.gtk.annotate",
108
113
        "bzrlib.plugins.gtk.olive",
109
 
        "bzrlib.plugins.gtk.tests"
 
114
        "bzrlib.plugins.gtk.tests",
 
115
        "bzrlib.plugins.gtk.branchview",
110
116
        ],
111
117
    data_files=[('share/olive', ['olive.glade',
112
118
                                 'cmenu.ui',
123
129
                                 'icons/push16.png',
124
130
                                 'icons/refresh.png',
125
131
                                 'icons/oliveicon2.png']),
 
132
                ('share/bzr-gtk/icons', ['icons/sign-bad.png',
 
133
                                 'icons/sign-ok.png',
 
134
                                 'icons/sign.png',
 
135
                                 'icons/sign-unknown.png',
 
136
                                 'icons/bug.png',
 
137
                                 'icons/bzr-icon-64.png']),
126
138
                ('share/applications', ['olive-gtk.desktop',
127
139
                                        'bazaar-properties.desktop',
128
140
                                        'bzr-notify.desktop']),
129
 
                ('share/pixmaps', ['icons/olive-gtk.png'])
 
141
                ('share/pixmaps', ['icons/olive-gtk.png', 'icons/bzr-icon-64.png']),
 
142
                ('share/icons/hicolor/scalable/emblems', 
 
143
                    ['icons/emblem-bzr-added.svg', 
 
144
                        'icons/emblem-bzr-conflict.svg', 
 
145
                        'icons/emblem-bzr-controlled.svg', 
 
146
                        'icons/emblem-bzr-modified.svg',
 
147
                        'icons/emblem-bzr-removed.svg'])
130
148
               ],
131
149
    cmdclass={'install_data': InstallData,
132
150
              'check': Check}