~ubuntu-branches/ubuntu/lucid/sbuild/lucid

« back to all changes in this revision

Viewing changes to lib/WannaBuild/Conf.pm

  • Committer: Bazaar Package Importer
  • Author(s): Bhavani Shankar
  • Date: 2009-08-03 19:35:15 UTC
  • mfrom: (8.1.11 upstream) (3.3.2 sid)
  • Revision ID: james.westby@ubuntu.com-20090803193515-mi2b8xkpf0w3qr62
Tags: 0.59.0-1ubuntu1
* Merge from debian unstable, remaining changes: LP: #408390
  - Do not install debfoster into the chroots because it is in universe
    and not needed for package building itself.
* Modify Maintainer value to match the DebianMaintainerField
  specification.

Show diffs side-by-side

added added

removed removed

Lines of Context:
182
182
        'DB_LIST_STATE'                         => {
183
183
            DEFAULT => undef
184
184
        },
185
 
        # TODO: Remove obsolete option.
186
 
        'DB_NO_DOWN_PROPAGATION'                => {
187
 
            DEFAULT => 0
188
 
        },
189
 
        # TODO: Remove obsolete option.
190
 
        'DB_NO_PROPAGATION'                     => {
191
 
            DEFAULT => 0
192
 
        },
193
185
        # TODO: Don't allow setting if already set.
194
186
        'DB_OPERATION'                          => {
195
187
            DEFAULT => undef,
229
221
 
230
222
    # Variables are undefined, so config will default to DEFAULT if unset.
231
223
 
232
 
    # NOTE: For legacy wanna-build.conf format parsing
233
 
    our $basedir = undef;
234
 
    our $dbbase = undef;
235
 
    our $transactlog = undef;
236
 
    our %distributions;
237
 
    undef %distributions;
238
 
    our @distributions;
239
 
    undef @distributions;
240
 
    our %dist_order;
241
 
    undef %dist_order;
242
 
    our @sections;
243
 
    undef @sections;
244
 
    our $pkgs_source = undef;
245
 
    our $quinn_source = undef;
246
 
    our @admin_users;
247
 
    undef @admin_users;
248
 
    our $maint = undef;
249
 
    our $notforus_maint = undef;
250
 
    our $log_mail = undef;
251
 
    our $stat_mail = undef;
252
 
    our $buildd_domain = undef;
253
 
    our $web_stats = undef;
254
 
 
255
224
    # New sbuild.conf format
256
225
    our $db_type = undef;
257
226
    our $db_base_dir = undef;