/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Jelmer Vernooij
  • Date: 2010-03-21 21:39:33 UTC
  • mfrom: (5102 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5143.
  • Revision ID: jelmer@samba.org-20100321213933-fexeh9zcoz8oaju2
merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
    'version':      bzrlib.__version__,
38
38
    'author':       'Canonical Ltd',
39
39
    'author_email': 'bazaar@lists.canonical.com',
40
 
    'url':          'http://www.bazaar-vcs.org/',
 
40
    'url':          'http://bazaar.canonical.com/',
41
41
    'description':  'Friendly distributed version control system',
42
42
    'license':      'GNU GPL v2',
43
43
    'download_url': 'https://launchpad.net/bzr/+download',
186
186
    from distutils.command.build_ext import build_ext
187
187
else:
188
188
    have_pyrex = True
 
189
    pyrex_version_info = tuple(map(int, pyrex_version.split('.')))
189
190
 
190
191
 
191
192
class build_ext_if_possible(build_ext):
282
283
    add_pyrex_extension('bzrlib._walkdirs_win32')
283
284
    z_lib = 'zdll'
284
285
else:
285
 
    if have_pyrex and pyrex_version == '0.9.4.1':
 
286
    if have_pyrex and pyrex_version_info[:3] == (0,9,4):
286
287
        # Pyrex 0.9.4.1 fails to compile this extension correctly
287
288
        # The code it generates re-uses a "local" pointer and
288
289
        # calls "PY_DECREF" after having set it to NULL. (It mixes PY_XDECREF
289
290
        # which is NULL safe with PY_DECREF which is not.)
 
291
        # <https://bugs.edge.launchpad.net/bzr/+bug/449372>
 
292
        # <https://bugs.edge.launchpad.net/bzr/+bug/276868>
290
293
        print 'Cannot build extension "bzrlib._dirstate_helpers_pyx" using'
291
294
        print 'your version of pyrex "%s". Please upgrade your pyrex' % (
292
295
            pyrex_version,)
299
302
add_pyrex_extension('bzrlib._chk_map_pyx', libraries=[z_lib])
300
303
ext_modules.append(Extension('bzrlib._patiencediff_c',
301
304
                             ['bzrlib/_patiencediff_c.c']))
302
 
add_pyrex_extension('bzrlib._simple_set_pyx')
303
 
ext_modules.append(Extension('bzrlib._static_tuple_c',
304
 
                             ['bzrlib/_static_tuple_c.c']))
 
305
if have_pyrex and pyrex_version_info < (0, 9, 6, 3):
 
306
    print
 
307
    print 'Your Pyrex/Cython version %s is too old to build the simple_set' % (
 
308
        pyrex_version)
 
309
    print 'and static_tuple extensions.'
 
310
    print 'Please upgrade to at least Pyrex 0.9.6.3'
 
311
    print
 
312
    # TODO: Should this be a fatal error?
 
313
else:
 
314
    # We only need 0.9.6.3 to build _simple_set_pyx, but static_tuple depends
 
315
    # on simple_set
 
316
    add_pyrex_extension('bzrlib._simple_set_pyx')
 
317
    ext_modules.append(Extension('bzrlib._static_tuple_c',
 
318
                                 ['bzrlib/_static_tuple_c.c']))
305
319
add_pyrex_extension('bzrlib._btree_serializer_pyx')
306
320
 
307
321
 
401
415
    # PyQt4 itself still escapes the plugin detection code for some reason...
402
416
    packages.append('PyQt4')
403
417
    excludes.append('PyQt4.elementtree.ElementTree')
 
418
    excludes.append('PyQt4.uic.port_v3')
404
419
    includes.append('sip') # extension module required for Qt.
405
420
    packages.append('pygments') # colorizer for qbzr
406
421
    packages.append('docutils') # html formatting
538
553
                                     version = version_str,
539
554
                                     description = META_INFO['description'],
540
555
                                     author = META_INFO['author'],
541
 
                                     copyright = "(c) Canonical Ltd, 2005-2009",
 
556
                                     copyright = "(c) Canonical Ltd, 2005-2010",
542
557
                                     company_name = "Canonical Ltd.",
543
558
                                     comments = META_INFO['description'],
544
559
                                    )
609
624
            excludes.extend(["bzrlib.plugins." + d for d in dirs])
610
625
        x = []
611
626
        for i in files:
612
 
            if os.path.splitext(i)[1] not in [".py", ".pyd", ".dll", ".mo"]:
 
627
            # Throw away files we don't want packaged. Note that plugins may
 
628
            # have data files with all sorts of extensions so we need to
 
629
            # be conservative here about what we ditch.
 
630
            ext = os.path.splitext(i)[1]
 
631
            if ext.endswith('~') or ext in [".pyc", ".swp"]:
613
632
                continue
614
633
            if i == '__init__.py' and root == 'bzrlib/plugins':
615
634
                continue