1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
|
#
# Options.pm: options parser for wanna-build
# Copyright © 2005 Ryan Murray <rmurray@debian.org>
# Copyright © 2005-2009 Roger Leigh <rleigh@debian.org>
# Copyright © 2008 Simon McVittie <smcv@debian.org>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see
# <http://www.gnu.org/licenses/>.
#
#######################################################################
package WannaBuild::Options;
use strict;
use warnings;
use Getopt::Long qw(:config no_ignore_case auto_abbrev gnu_getopt);
use Sbuild qw(isin help_text version_text usage_error);
use Sbuild::Base;
use Sbuild::OptionsBase;
use Sbuild::DB::Info;
BEGIN {
use Exporter ();
our (@ISA, @EXPORT);
@ISA = qw(Exporter Sbuild::OptionsBase);
@EXPORT = qw();
}
sub set_options {
my $self = shift;
$self->add_options (
"d|dist=s" => sub {
$self->set_conf('DISTRIBUTION', $_[1]);
$self->set_conf('DISTRIBUTION', "oldstable")
if $self->get_conf('DISTRIBUTION') eq "o";
$self->set_conf('DISTRIBUTION', "stable")
if $self->get_conf('DISTRIBUTION') eq "s";
$self->set_conf('DISTRIBUTION', "testing")
if $self->get_conf('DISTRIBUTION') eq "t";
$self->set_conf('DISTRIBUTION', "unstable")
if $self->get_conf('DISTRIBUTION') eq "u";
$self->set_conf('DISTRIBUTION', "experimental")
if $self->get_conf('DISTRIBUTION') eq "e";
$self->set_conf('OVERRIDE_DISTRIBUTION', 1);
# TODO: Get entire list from database, and
# remove DB_INFO_ALL_DISTS.
if ($self->get_conf('DISTRIBUTION') eq "a" ||
$self->get_conf('DISTRIBUTION') eq "all") {
$self->set_conf('DB_INFO_ALL_DISTS', 1);
$self->set_conf('DISTRIBUTION', "")
}
},
"o|override" => sub {
$self->set_conf('DB_OVERRIDE', 1);
},
"create-db" => sub {
$self->set_conf('DB_CREATE', 1);
},
# TODO: Remove opt_ prefix...
"correct-compare" => \$Sbuild::opt_correct_version_cmp,
# normal actions
"take" => sub {
$self->set_conf('DB_OPERATION', 'set-building');
},
"f|failed" => sub {
$self->set_conf('DB_OPERATION', 'set-failed');
},
"u|uploaded" => sub {
$self->set_conf('DB_OPERATION', 'set-uploaded');
},
"n|no-build" => sub {
$self->set_conf('DB_OPERATION', 'set-not-for-us');
},
"built" => sub {
$self->set_conf('DB_OPERATION', 'set-built');
},
"attempted" => sub {
$self->set_conf('DB_OPERATION', 'set-attempted');
},
"give-back" => sub {
$self->set_conf('DB_OPERATION', 'set-needs-build');
},
"dep-wait" => sub {
$self->set_conf('DB_OPERATION', 'set-dep-wait');
},
"forget" => sub {
$self->set_conf('DB_OPERATION', 'forget');
},
"forget-user" => sub {
$self->set_conf('DB_OPERATION', 'forget-user');
},
"merge-all" => sub {
$self->set_conf('DB_OPERATION', 'merge-all');
},
"merge-quinn" => sub {
$self->set_conf('DB_OPERATION', 'merge-quinn');
},
"merge-partial-quinn" => sub {
$self->set_conf('DB_OPERATION',
'merge-partial-quinn');
},
"merge-packages" => sub {
$self->set_conf('DB_OPERATION', 'merge-packages');
},
"merge-sources" => sub {
$self->set_conf('DB_OPERATION', 'merge-sources');
},
"p|pretend-avail" => sub {
$self->set_conf('DB_OPERATION', 'pretend-avail');
},
"i|info" => sub {
$self->set_conf('DB_OPERATION', 'info');
},
# TODO: Move checks to Conf.pm.
"binNMU=s" => sub {
die "Invalid binNMU version: $_[1]\n"
if $_[1] !~ /^([\d]*)$/ and $1 >= 0;
$self->set_conf('DB_OPERATION', 'set-binary-nmu');
$self->set_conf('DB_BIN_NMU_VERSION', $_[1]);
},
"perm-build-priority=s" => sub {
die "Invalid build priority: $_[1]\n"
if $_[1] !~ /^-?[\d]+$/;
$self->set_conf('DB_OPERATION', 'set-permanent-build-priority');
$self->set_conf('DB_BUILD_PRIORITY', $_[1]);
},
"build-priority=s" => sub {
die "Invalid build priority: $_[1]\n"
if $_[1] !~ /^-?[\d]+$/;
$self->set_conf('DB_OPERATION', 'set-build-priority');
$self->set_conf('DB_BUILD_PRIORITY', $_[1]);
},
"l|list=s" => sub {
die "Unknown state to list: $_[1]\n"
if !isin( $_[1], qw(needs-build building uploaded
built build-attempted failed
installed dep-wait not-for-us all
failed-removed install-wait
reupload-wait));
$self->set_conf('DB_OPERATION', 'list');
$self->set_conf('DB_LIST_STATE', $_[1]);
},
"O|order=s" => sub {
die "Bad ordering character\n"
if $_[1] !~ /^[PSpsncb]+$/;
$self->set_conf('DB_LIST_ORDER', $_[1]);
},
"m|message=s" => sub {
$self->set_conf('DB_FAIL_REASON', $_[1]);
},
"b|database=s" => sub {
$self->set_conf('DB_BASE_NAME', $_[1]);
},
"A|arch=s" => sub {
$self->set_conf('ARCH', $_[1]);
},
"U|user=s" => sub {
$self->set_conf('DB_USER', $_[1]);
},
"c|category=s" => sub {
my $category = category($_[1]);
die "Unknown category: $_[1]\n"
if !defined($category);
$self->set_conf('DB_CATEGORY', $category);
},
"a|min-age=i" => sub {
die "Minimum age must be a non-zero number\n"
if $_[1] == 0;
$self->set_conf('DB_LIST_MIN_AGE', $_[1] * 24*60*60);
},
"max-age=i" => sub {
die "Maximum age must be a non-zero number\n"
if $_[1] == 0;
# NOTE: Negative value
$self->set_conf('DB_LIST_MIN_AGE', - $_[1] * 24*60*60);
},
# special actions
"import=s" => sub {
$self->set_conf('DB_OPERATION', 'import');
$self->set_conf('DB_IMPORT_FILE', $_[1]);
},
"export=s" => sub {
$self->set_conf('DB_OPERATION', 'export');
$self->set_conf('DB_EXPORT_FILE', $_[1]);
},
"manual-edit" => sub {
$self->set_conf('DB_OPERATION', 'manual-edit');
},
"create-maintenance-lock" => sub {
$self->set_conf('DB_OPERATION', 'maintlock-create');
},
"remove-maintenance-lock" => sub {
$self->set_conf('DB_OPERATION', 'maintlock-remove');
},
"clean-db" => sub {
$self->set_conf('DB_OPERATION', 'clean-db');
},
);
}
1;
|