/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: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2018-04-01 18:03:28 UTC
  • mfrom: (6929.4.2 selftest)
  • Revision ID: breezy.the.bot@gmail.com-20180401180328-44tutdbca2o2zxf4
Allow breezy's selftest to run without tests installed.

Merged from https://code.launchpad.net/~jelmer/brz/no-tests/+merge/342440

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
}
64
64
 
65
65
# The list of packages is automatically generated later. Add other things
66
 
# that are part of BZRLIB here.
67
 
BZRLIB = {}
 
66
# that are part of BREEZY here.
 
67
BREEZY = {}
68
68
 
69
69
PKG_DATA = {# install files from selftest suite
70
70
            'package_data': {'breezy': ['doc/api/*.txt',
103
103
    return sorted(packages)
104
104
 
105
105
 
106
 
BZRLIB['packages'] = get_breezy_packages()
 
106
BREEZY['packages'] = get_breezy_packages()
107
107
 
108
108
 
109
109
from distutils import log
497
497
           }
498
498
 
499
499
    ARGS.update(META_INFO)
500
 
    ARGS.update(BZRLIB)
 
500
    ARGS.update(BREEZY)
501
501
    PKG_DATA['package_data']['breezy'].append('locale/*/LC_MESSAGES/*.mo')
502
502
    ARGS.update(PKG_DATA)
503
503
 
563
563
    gui_target = copy.copy(target)
564
564
    gui_target.dest_base = "bzrw"
565
565
 
566
 
    packages = BZRLIB['packages']
 
566
    packages = BREEZY['packages']
567
567
    packages.remove('breezy')
568
568
    packages = [i for i in packages if not i.startswith('breezy.plugins')]
569
569
    includes = []
745
745
           }
746
746
 
747
747
    ARGS.update(META_INFO)
748
 
    ARGS.update(BZRLIB)
 
748
    ARGS.update(BREEZY)
749
749
    ARGS.update(PKG_DATA)
750
750
 
751
751
    if __name__ == '__main__':