~ubuntu-branches/ubuntu/precise/namebench/precise

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Bazaar Package Importer
  • Author(s): Miguel Landaeta
  • Date: 2010-06-24 09:23:04 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20100624092304-xrkglqsrod0cuhk9
Tags: 1.3.1+dfsg-1
* New upstream release.
* Updated watch file.
* Switched source package format to 3.0 (quilt).
* Dropped unneeded version for dependence on python (>= 2.5).
* Added necessary version for dependence on python-dnspython (>= 1.8.0).
* Updated manpage.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
else:
33
33
  packages = [
34
34
      'libnamebench',
35
 
      'third_party',
36
 
      'third_party/dns',
37
 
      'third_party/dns/rdtypes',
38
 
      'third_party/dns/rdtypes/ANY',
39
 
      'third_party/dns/rdtypes/IN',
40
 
      'third_party/graphy',
41
 
      'third_party/jinja2',
42
 
      'third_party/httplib2',
43
 
      'third_party/graphy/backends',
44
 
      'third_party/graphy/backends/google_chart_api'
 
35
      'nb_third_party',
 
36
      'nb_third_party/dns',
 
37
      'nb_third_party/dns/rdtypes',
 
38
      'nb_third_party/dns/rdtypes/ANY',
 
39
      'nb_third_party/dns/rdtypes/IN',
 
40
      'nb_third_party/graphy',
 
41
      'nb_third_party/jinja2',
 
42
      'nb_third_party/httplib2',
 
43
      'nb_third_party/simplejson',
 
44
      'nb_third_party/graphy/backends',
 
45
      'nb_third_party/graphy/backends/google_chart_api'
45
46
  ]
46
47
 
47
48
 
120
121
          ),
121
122
          ('namebench/templates',
122
123
           ['templates/ascii.tmpl',
123
 
                'templates/html.tmpl',
124
 
                'templates/style.css'
 
124
            'templates/html.tmpl',
 
125
            'templates/resolv.conf.tmpl',
 
126
            'templates/style.css'
125
127
           ]
126
128
          ),
127
 
          ('namebench/data', ['data/alexa-top-10000-global.txt'])
 
129
          ('namebench/data',
 
130
           ['data/alexa-top-2000-domains.txt',
 
131
            'data/cache-hit.txt',
 
132
            'data/cache-miss.txt',
 
133
            'data/cache-mix.txt'
 
134
           ]
 
135
          )
128
136
      ],
129
137
 
130
138
      # py2exe specific garbarge below.
132
140
            'py2exe': {
133
141
                'bundle_files': 3, # 1 nor 2 does not work
134
142
                'ascii': False,
135
 
                'packages': ['third_party'],
136
 
                'excludes': ['dns', 'jinja2', 'graphy', 'httplib2', 'tcl'],
 
143
                'packages': ['nb_third_party'],
 
144
                'excludes': ['dns', 'jinja2', 'graphy', 'httplib2', 'tcl', 'simplejson'],
137
145
                'dll_excludes': ["w9xpopen.exe","MSVCP90.dll", "MSVCR90.DLL"],
138
146
            }
139
147
        },