~ubuntu-branches/ubuntu/raring/wxwidgets2.8/raring

« back to all changes in this revision

Viewing changes to wxPython/setup.py

  • Committer: Package Import Robot
  • Author(s): Stéphane Graber
  • Date: 2012-01-07 13:59:25 UTC
  • mfrom: (1.1.9) (5.1.10 sid)
  • Revision ID: package-import@ubuntu.com-20120107135925-2601miy9ullcon9j
Tags: 2.8.12.1-6ubuntu1
* Resync from Debian, changes that were kept:
  - debian/rules: re-enable mediactrl. This allows libwx_gtk2u_media-2.8 to be
    built, as this is required by some applications (LP: #632984)
  - debian/control: Build-dep on libxt-dev for mediactrl.
  - Patches
    + fix-bashism-in-example
* Add conflict on python-wxgtk2.8 (<< 2.8.12.1-6ubuntu1~) to python-wxversion
  to guarantee upgrade ordering when moving from pycentral to dh_python2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
# Author:      Robin Dunn
7
7
#
8
8
# Created:     12-Oct-2000
9
 
# RCS-ID:      $Id: setup.py 63492 2010-02-16 06:18:35Z RD $
 
9
# RCS-ID:      $Id: setup.py 67484 2011-04-13 21:05:17Z RD $
10
10
# Copyright:   (c) 2000 by Total Control Software
11
11
# Licence:     wxWindows license
12
12
#----------------------------------------------------------------------
865
865
                    'wx.lib',
866
866
                    'wx.lib.agw',
867
867
                    'wx.lib.agw.aui',
 
868
                    'wx.lib.agw.persist',
868
869
                    'wx.lib.agw.ribbon',
869
870
                    'wx.lib.analogclock',
870
871
                    'wx.lib.analogclock.lib_setup',
893
894
                    'wx.tools.Editra.src.eclib',
894
895
                    'wx.tools.Editra.src.ebmlib',
895
896
                    'wx.tools.Editra.src.extern',
 
897
                    'wx.tools.Editra.src.extern.aui',
 
898
                    'wx.tools.Editra.src.extern.dexml',
 
899
                    'wx.tools.Editra.src.extern.pygments',
 
900
                    'wx.tools.Editra.src.extern.pygments.filters',
 
901
                    'wx.tools.Editra.src.extern.pygments.formatters',
 
902
                    'wx.tools.Editra.src.extern.pygments.lexers',
 
903
                    'wx.tools.Editra.src.extern.pygments.styles',
896
904
                    'wx.tools.Editra.src.syntax',
897
905
                    ]
898
906
 
1044
1052
 
1045
1053
              **other_kw
1046
1054
              )
1047
 
        BUILD_OPTIONS['build_base'] = BUILD_BASE + "-common"
 
1055
 
1048
1056
        if not EGGing:
1049
1057
            if INSTALL_MULTIVERSION:
1050
1058
                setup(name             = 'wxPython-common',
1059
1067
                      platforms        = PLATFORMS,
1060
1068
                      classifiers      = filter(None, CLASSIFIERS.split("\n")),
1061
1069
                      keywords         = KEYWORDS,
1062
 
                      packages = [''],
 
1070
 
1063
1071
                      package_dir = { '': 'wxversion' },
1064
1072
                      py_modules = ['wxversion'],
1065
1073
 
1066
 
                      extra_path       = EXTRA_PATH,
1067
 
                      ext_package      = PKGDIR,
1068
1074
                      data_files = [('', ['src/wx.pth'])],
1069
1075
 
1070
1076
                      options = { 'build' : BUILD_OPTIONS,