~sbeattie/conflictchecker/conflictchecker-fixups

« back to all changes in this revision

Viewing changes to findconflicts/__init__.py

  • Committer: Robert Collins
  • Date: 2007-05-07 12:05:57 UTC
  • Revision ID: robertc@robertcollins.net-20070507120557-6qqh3wixflgl3jic
gusty is not gutsy

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
        self.set_mirror('http://archive.ubuntu.com/ubuntu/')
36
36
        # the default set of distributions to look at.
37
37
        # we should get this from launchpad
38
 
        gusty_stock_components = {
 
38
        gutsy_stock_components = {
39
39
            'main':['amd64', 'i386', 'powerpc', 'sparc'],
40
40
            'multiverse':['amd64', 'i386', 'powerpc', 'sparc'],
41
41
            'restricted':['amd64', 'i386', 'powerpc', 'sparc'],
42
42
            'universe':['amd64', 'i386', 'powerpc', 'sparc'],
43
43
            }
44
 
        # feisty == gusty
45
 
        feisty_stock_components = gusty_stock_components
 
44
        # feisty == gutsy
 
45
        feisty_stock_components = gutsy_stock_components
46
46
        # edgy is currently identical to feisty
47
47
        edgy_stock_components = feisty_stock_components
48
48
        # dapper is currently identical to edgy
66
66
            'feisty-backports': feisty_stock_components,
67
67
            'feisty-security': feisty_stock_components,
68
68
            'feisty-updates': feisty_stock_components,
69
 
            'gusty': gusty_stock_components,
70
 
            'gusty-backports': gusty_stock_components,
71
 
            'gusty-security': gusty_stock_components,
72
 
            'gusty-updates': gusty_stock_components,
 
69
            'gutsy': gutsy_stock_components,
 
70
            'gutsy-backports': gutsy_stock_components,
 
71
            'gutsy-security': gutsy_stock_components,
 
72
            'gutsy-updates': gutsy_stock_components,
73
73
            })
74
74
 
75
75
    def _extract_package_identity(self, sections):