/usr/lib/python3/dist-packages/gbp/config.py is in git-buildpackage 0.9.8.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 | # vim: set fileencoding=utf-8:
#
# (C) 2006,2007,2010-2012,2015,2016,2017 Guido Günther <agx@sigxcpu.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, please see
# <http://www.gnu.org/licenses/>
"""handles command line and config file option parsing for the gbp commands"""
from optparse import OptionParser, OptionGroup, Option, OptionValueError
import configparser
from copy import copy
import errno
import os.path
import sys
from gbp.errors import GbpError
try:
from gbp.version import gbp_version
except ImportError:
gbp_version = "[Unknown version]"
import gbp.tristate
import gbp.log
from gbp.git import GitRepositoryError, GitRepository
no_upstream_branch_msg = """
Repository does not have branch '%s' for upstream sources. If there is none see
file:///usr/share/doc/git-buildpackage/manual-html/gbp.import.html#GBP.IMPORT.CONVERT
on howto create it otherwise use --upstream-branch to specify it.
"""
def expand_path(option, opt, value):
value = os.path.expandvars(value)
return os.path.expanduser(value)
def check_tristate(option, opt, value):
try:
val = gbp.tristate.Tristate(value)
except TypeError:
raise OptionValueError(
"option %s: invalid value: %r" % (opt, value))
else:
return val
def save_option(f):
"""save options on the underlying parser"""
def _decorator(self, *args, **kwargs):
obj = self
option_name = kwargs.get('option_name')
if not option_name and len(args):
option_name = args[0]
# We're decorating GbpOption but store valid_options on
# GbpOptionParser
if not hasattr(obj, 'valid_options'):
if not hasattr(obj, 'parser'):
raise ValueError("Can only decorete GbpOptionParser and GbpOptionGroup not %s" % obj)
else:
obj = obj.parser
if option_name and not option_name.startswith('no-'):
obj.valid_options.append(option_name)
return f(self, *args, **kwargs)
return _decorator
class GbpOption(Option):
TYPES = Option.TYPES + ('path', 'tristate')
TYPE_CHECKER = copy(Option.TYPE_CHECKER)
TYPE_CHECKER['path'] = expand_path
TYPE_CHECKER['tristate'] = check_tristate
class GbpOptionParser(OptionParser):
"""
Handles commandline options and parsing of config files
@ivar command: the gbp command we store the options for
@type command: string
@ivar prefix: prefix to prepend to all commandline options
@type prefix: string
@ivar config: current configuration parameters
@type config: dict
@cvar defaults: defaults value of an option if not in the config file or
given on the command line
@type defaults: dict
@cvar help: help messages
@type help: dict
@cvar def_config_files: config files we parse
@type def_config_files: dict (type, path)
"""
defaults = {'abbrev': 7,
'allow-unauthenticated': 'False',
'arch': '',
'author-date-is-committer-date': 'False',
'author-is-committer': 'False',
'bare': 'True',
'cleaner': '/bin/true',
'color': 'auto',
'color-scheme': '',
'commit': 'False',
'commit-msg': 'Update changelog for %(version)s release',
'component': [],
'compression': 'auto',
'compression-level': '',
'create-missing-branches': 'False',
'customizations': '',
'dch-opt': [],
'debian-branch': 'master',
'debian-tag': 'debian/%(version)s',
'debian-tag-msg': '%(pkg)s Debian release %(version)s',
'dist': 'sid',
'drop': 'False',
'export': 'HEAD',
'export-dir': '',
'filter': [],
'filter-pristine-tar': 'False',
'force-create': 'False',
'full': 'False',
'git-author': 'False',
'git-log': '--no-merges',
'hooks': 'True',
'id-length': '0',
'ignore-branch': 'False',
'ignore-new': 'False',
'ignore-regex': '',
'import-msg': 'New upstream version %(version)s',
'interactive': 'True',
'keyid': '',
'merge': 'True',
'merge-mode': 'auto',
'meta': 'True',
'meta-closes': 'Closes|LP',
'meta-closes-bugnum': r'(?:bug|issue)?\#?\s?\d+',
'multimaint': 'True',
'multimaint-merge': 'False',
'no-create-orig': 'False',
'notify': 'auto',
'overlay': 'False',
'patch-num-format': '%04d-',
'patch-numbers': 'True',
'pbuilder': 'False',
'pbuilder-autoconf': 'True',
'pbuilder-options': '',
'postbuild': '',
'postclone': '',
'postedit': '',
'postexport': '',
'postimport': '',
'posttag': '',
'pq-from': 'DEBIAN',
'prebuild': '',
'pristine-tar': 'False',
'pristine-tar-commit': 'False',
'purge': 'True',
'qemubuilder': 'False',
'remote-config': '',
'remote-url-pattern': 'ssh://git.debian.org/git/collab-maint/%(pkg)s.git',
'renumber': 'False',
'repo-email': 'DEBIAN',
'repo-user': 'DEBIAN',
'rollback': 'True',
'sign-tags': 'False',
'snapshot-number': 'snapshot + 1',
'spawn-editor': 'release',
'submodules': 'False',
'symlink-orig': 'True',
'tarball-dir': '',
'template-dir': '',
'time-machine': 1,
'track': 'True',
'upstream-branch': 'upstream',
'upstream-tag': 'upstream/%(version)s',
'upstream-tree': 'TAG',
'upstream-vcs-tag': '',
'urgency': 'medium',
}
help = {
'debian-branch':
"Branch the Debian package is being developed on, "
"default is '%(debian-branch)s'",
'upstream-branch':
"Upstream branch, default is '%(upstream-branch)s'",
'upstream-tree':
"Where to generate the upstream tarball from "
"(tag or branch), default is '%(upstream-tree)s'",
'pq-from':
"How to find the patch queue base. DEBIAN or TAG, "
"the default is '%(pq-from)s'",
'debian-tag':
"Format string for debian tags, "
"default is '%(debian-tag)s'",
'debian-tag-msg':
"Format string for signed debian-tag messages, "
"default is '%(debian-tag-msg)s'",
'upstream-tag':
"Format string for upstream tags, "
"default is '%(upstream-tag)s'",
'sign-tags':
"Whether to sign tags, default is '%(sign-tags)s'",
'keyid':
"GPG keyid to sign tags with, default is '%(keyid)s'",
'import-msg':
"Format string for commit message used to commit "
"the upstream tarball, default is '%(import-msg)s'",
'commit-msg':
"Format string for commit message used to commit, "
"the changelog, default is '%(commit-msg)s'",
'pristine-tar':
"Use pristine-tar to create orig tarball, "
"default is '%(pristine-tar)s'",
'pristine-tar-commit':
"When generating a tarball commit it to the pristine-tar branch '%(pristine-tar-commit)s' "
"default is '%(pristine-tar-commit)s'",
'filter-pristine-tar':
"Filter pristine-tar when filter option is used, default is '%(filter-pristine-tar)s'",
'filter':
"Files to filter out during import (can be given multiple times), default is %(filter)s",
'git-author':
"Use name and email from git-config for changelog trailer, default is '%(git-author)s'",
'full':
"Include the full commit message instead of only the first line, default is '%(full)s'",
'meta':
"Parse meta tags in commit messages, default is '%(meta)s'",
'meta-closes':
"Meta tags for the bts close commands, default is '%(meta-closes)s'",
'meta-closes-bugnum':
"Meta bug number format, default is '%(meta-closes-bugnum)s'",
'ignore-new':
"Build with uncommitted changes in the source tree, default is '%(ignore-new)s'",
'ignore-branch':
"Build although debian-branch != current branch, "
"default is '%(ignore-branch)s'",
'overlay':
"extract orig tarball when using export-dir option, "
"default is '%(overlay)s'",
'remote-url-pattern':
"Remote url pattern to create the repo at, "
"default is '%(remote-url-pattern)s'",
'multimaint':
"Note multiple maintainers, default is '%(multimaint)s'",
'multimaint-merge':
"Merge commits by maintainer, "
"default is '%(multimaint-merge)s'",
'pbuilder':
"Invoke git-pbuilder for building, "
"default is '%(pbuilder)s'",
'dist':
"Build for this distribution when using git-pbuilder, "
"default is '%(dist)s'",
'arch':
"Build for this architecture when using git-pbuilder, "
"default is '%(arch)s'",
'qemubuilder':
"Invoke git-pbuilder with qemubuilder for building, "
"default is '%(qemubuilder)s'",
'interactive':
"Run command interactively, default is '%(interactive)s'",
'color':
"Whether to use colored output, default is '%(color)s'",
'color-scheme':
"Colors to use in output (when color is enabled), format "
"is '<debug>:<info>:<warning>:<error>', e.g. "
"'cyan:34::'. Numerical values and color names are "
"accepted, empty fields indicate using the default.",
'spawn-editor':
"Whether to spawn an editor after adding the "
"changelog entry, default is '%(spawn-editor)s'",
'patch-numbers':
"Whether to number patch files, "
"default is %(patch-numbers)s",
'patch-num-format':
"The format specifier for patch number prefixes, "
"default is %(patch-num-format)s",
'renumber':
"Whether to renumber patches exported from patch queues, "
"instead of preserving the number specified in "
"'Gbp-Pq: Name' tags, default is %(renumber)s",
'notify':
"Whether to send a desktop notification after the build, "
"default is '%(notify)s'",
'merge':
"After the import merge the result to the debian branch, "
"default is '%(merge)s'",
'merge-mode':
"Howto merge the new upstream sources onto the debian branch, "
"default is '%(merge-mode)s'",
'track':
"Set up tracking for remote branches, "
"default is '%(track)s'",
'author-is-committer':
"Use the authors's name also as the committer's name, "
"default is '%(author-is-committer)s'",
'author-date-is-committer-date':
"Use the authors's date as the committer's date, "
"default is '%(author-date-is-committer-date)s'",
'create-missing-branches':
"Create missing branches automatically, "
"default is '%(create-missing-branches)s'",
'submodules':
"Transparently handle submodules in the upstream tree, "
"default is '%(submodules)s'",
'postimport':
"hook run after a successful import, "
"default is '%(postimport)s'",
'hooks':
"Enable running all hooks, default is %(hooks)s",
'time-machine':
"don't try to apply patch queue to head commit only. "
"Try at most TIME_MACHINE commits back, "
"default is '%(time-machine)d'",
'pbuilder-autoconf':
"Whether to configure pbuilder automatically, "
"default is '%(pbuilder-autoconf)s'",
'pbuilder-options':
"Options to pass to pbuilder, "
"default is '%(pbuilder-options)s'",
'template-dir':
"Template directory used by git init, "
"default is '%(template-dir)s'",
'remote-config':
"Remote definition in gbp.conf used to create the remote "
"repository, default is '%(remote-config)s'",
'allow-unauthenticated':
"Don't verify integrity of downloaded source, "
"default is '%(allow-unauthenticated)s'",
'symlink-orig':
"Whether to create a symlink from the upstream tarball "
"to the orig.tar.gz if needed, default is "
"'%(symlink-orig)s'",
'purge':
"Purge exported package build directory. Default is '%(purge)s'",
'drop':
"In case of 'export' drop the patch-queue branch "
"after export. Default is '%(drop)s'",
'abbrev':
"abbreviate commits to this length. default is '%(abbrev)s'",
'commit':
"commit changes after export, Default is '%(commit)s'",
'rollback':
"Rollback repository changes when encountering an error",
'component':
'component name for additional tarballs',
'bare':
"wether to create a bare repository on the remote side. "
"'Default is '%(bare)s'.",
'urgency':
"Set urgency level, default is '%(urgency)s'",
'repo-user':
"Set repo username from the DEBFULLNAME and DEBEMAIL "
"environment variables ('DEBIAN') or fallback to the "
"git configuration ('GIT'), default is '%(repo-user)s'",
'repo-email':
"Set repo email from the DEBFULLNAME and DEBEMAIL "
"environment variables ('DEBIAN') or fallback to the "
"git configuration ('GIT'), default is '%(repo-email)s'"
}
short_opts = {
'urgency': '-U',
}
def_config_files = [('/etc/git-buildpackage/gbp.conf', 'system'),
('~/.gbp.conf', 'global'),
('%(top_dir)s/.gbp.conf', None),
('%(top_dir)s/debian/gbp.conf', 'debian'),
('%(git_dir)s/gbp.conf', None)]
list_opts = ['filter', 'component', 'dch-opt']
@classmethod
def get_config_files(cls, no_local=False):
"""
Get list of config files from the I{GBP_CONF_FILES} environment
variable.
@param no_local: don't return the per-repo configuration files
@type no_local: C{bool}
@return: list of config files we need to parse
@rtype: C{list}
>>> import re
>>> conf_backup = os.getenv('GBP_CONF_FILES')
>>> if conf_backup is not None: del os.environ['GBP_CONF_FILES']
>>> homedir = os.path.expanduser("~")
>>> files = GbpOptionParser.get_config_files()
>>> files_mangled = [re.sub("^%s" % homedir, 'HOME', file) for file in files]
>>> sorted(files_mangled)
['%(git_dir)s/gbp.conf', '%(top_dir)s/.gbp.conf', '%(top_dir)s/debian/gbp.conf', '/etc/git-buildpackage/gbp.conf', 'HOME/.gbp.conf']
>>> files = GbpOptionParser.get_config_files(no_local=True)
>>> files_mangled = [re.sub("^%s" % homedir, 'HOME', file) for file in files]
>>> sorted(files_mangled)
['/etc/git-buildpackage/gbp.conf', 'HOME/.gbp.conf']
>>> os.environ['GBP_CONF_FILES'] = 'test1:test2'
>>> GbpOptionParser.get_config_files()
['test1', 'test2']
>>> del os.environ['GBP_CONF_FILES']
>>> if conf_backup is not None: os.environ['GBP_CONF_FILES'] = conf_backup
"""
envvar = os.environ.get('GBP_CONF_FILES')
files = envvar.split(':') if envvar else [f for (f, _) in cls.def_config_files]
files = [os.path.expanduser(fname) for fname in files]
if no_local:
files = [fname for fname in files if fname.startswith('/')]
return files
def _read_config_file(self, repo, filename):
"""Read config file"""
str_fields = {}
if repo:
str_fields['git_dir'] = repo.git_dir
if not repo.bare:
str_fields['top_dir'] = repo.path
try:
filename = filename % str_fields
except KeyError:
# Skip if filename wasn't expanded, i.e. we're not in git repo
return
if (repo and
filename == os.path.join(repo.path, '.gbp.conf') and
os.path.exists(filename)):
self._warn_old_gbp_conf(filename)
self.config_parser.read(filename)
def _warn_old_config_section(self, oldcmd, cmd):
if not os.getenv("GBP_DISABLE_SECTION_DEPRECATION"):
gbp.log.warn("Old style config section [%s] found "
"please rename to [%s]" % (oldcmd, cmd))
def _warn_old_gbp_conf(self, gbp_conf):
if (not os.getenv("GBP_DISABLE_GBP_CONF_DEPRECATION") and
not self._warned_old_gbp_conf):
gbp.log.warn("Deprecated configuration file found at %s, "
"check gbp.conf(5) for alternatives" % gbp_conf)
self._warned_old_gbp_conf = True
@property
def config_file_sections(self):
"""List of all found config file sections"""
return self.config_parser.sections()
@staticmethod
def _listify(value):
"""
>>> GbpOptionParser._listify(None)
[]
>>> GbpOptionParser._listify('string')
['string']
>>> GbpOptionParser._listify('["q", "e", "d"] ')
['q', 'e', 'd']
>>> GbpOptionParser._listify('[')
Traceback (most recent call last):
...
configparser.Error: [ is not a proper list
"""
# filter can be either a list or a string, always build a list:
if value:
if value.startswith('['):
try:
return eval(value)
except SyntaxError:
raise configparser.Error("%s is not a proper list" % value)
else:
return [value]
else:
return []
def parse_lists(self):
"""
Parse options that can be given as lists
Since they take multiple arguments they can also be given in plural form
e.g. components instead of component.
"""
for opt in self.list_opts:
try:
plural_opt = opt + 's'
valp = self._listify(self.config.get(plural_opt, None))
vals = self._listify(self.config[opt])
if valp and vals:
raise configparser.Error("Found %s and %s - use only one" % (valp, vals))
self.config[opt] = valp or vals
except ValueError:
raise configparser.Error("Failed to parse %s: %s" % (opt, self.config[opt]))
def parse_config_files(self):
"""
Parse the possible config files and set appropriate values
default values
"""
parser = self.config_parser
# Fill in the built in values
self.config = dict(self.__class__.defaults)
config_files = self.get_config_files()
try:
repo = GitRepository(".", toplevel=False)
except GitRepositoryError:
repo = None
# Read all config files
for filename in config_files:
self._read_config_file(repo, filename)
# Update with the values from the defaults section. This is needed
# in case the config file doesn't have a [<command>] section at all
self.config.update(dict(parser.defaults()))
# Make sure we read any legacy sections prior to the real subcommands
# section i.e. read [gbp-pull] prior to [pull]
if (self.command.startswith('gbp-') or
self.command.startswith('git-')):
cmd = self.command[4:]
oldcmd = self.command
if parser.has_section(oldcmd):
self.config.update(dict(parser.items(oldcmd, raw=True)))
self._warn_old_config_section(oldcmd, cmd)
else:
cmd = self.command
for prefix in ['gbp', 'git']:
oldcmd = '%s-%s' % (prefix, self.command)
if parser.has_section(oldcmd):
self.config.update(dict(parser.items(oldcmd, raw=True)))
self._warn_old_config_section(oldcmd, cmd)
# Update with command specific settings
if parser.has_section(cmd):
# Don't use items() until we got rid of the compat sections
# since this pulls in the defaults again
self.config.update(dict(parser._sections[cmd].items()))
for section in self.sections:
if parser.has_section(section):
self.config.update(dict(parser._sections[section].items()))
else:
raise configparser.NoSectionError(
"Mandatory section [%s] does not exist." % section)
self.parse_lists()
def __init__(self, command, prefix='', usage=None, sections=[]):
"""
@param command: the command to build the config parser for
@type command: C{str}
@param prefix: A prefix to add to all command line options
@type prefix: C{str}
@param usage: a usage description
@type usage: C{str}
@param sections: additional (non optional) config file sections
to parse
@type sections: C{list} of C{str}
"""
self.command = command[:-3] if command.endswith('.py') else command
self.sections = sections
self.prefix = prefix
self.config = {}
self.valid_options = []
self.config_parser = configparser.SafeConfigParser()
self._warned_old_gbp_conf = False
try:
self.parse_config_files()
except configparser.ParsingError as err:
raise GbpError(str(err) + "\nSee 'man gbp.conf' for the format.")
OptionParser.__init__(self, option_class=GbpOption,
prog="gbp %s" % self.command,
usage=usage, version='%s %s' % (self.command,
gbp_version))
def _is_boolean(self, dummy, *unused, **kwargs):
"""is option_name a boolean option"""
ret = False
try:
if kwargs['action'] in ['store_true', 'store_false']:
ret = True
except KeyError:
ret = False
return ret
def _get_bool_default(self, option_name):
"""
get default for boolean options
this way we can handle no-foo=True and foo=False
"""
if option_name.startswith('no-'):
pos = option_name[3:]
neg = option_name
else:
pos = option_name
neg = "no-%s" % option_name
try:
default = self.config[pos]
except KeyError:
default = self.config[neg]
if default.lower() in ["true", "1"]:
val = 'True'
elif default.lower() in ["false", "0"]:
val = 'False'
else:
raise ValueError("Boolean options must be True or False")
return eval(val)
def get_default(self, option_name, **kwargs):
"""get the default value"""
if self._is_boolean(self, option_name, **kwargs):
default = self._get_bool_default(option_name)
else:
default = self.config[option_name]
return default
def get_opt_names(self, option_name):
names = ["--%s%s" % (self.prefix, option_name)]
if option_name in self.short_opts:
if self.prefix:
raise ValueError("Options with prefix cannot have a short option")
names.insert(0, self.short_opts[option_name])
return names
@save_option
def add_config_file_option(self, option_name, dest, help=None, **kwargs):
"""
set a option for the command line parser, the default is read from the config file
param option_name: name of the option
type option_name: string
param dest: where to store this option
type dest: string
param help: help text
type help: string
"""
if not help:
help = self.help[option_name]
opt_names = self.get_opt_names(option_name)
OptionParser.add_option(self, *opt_names, dest=dest,
default=self.get_default(option_name, **kwargs),
help=help % self.config, **kwargs)
def add_boolean_config_file_option(self, option_name, dest):
self.add_config_file_option(option_name=option_name, dest=dest, action="store_true")
neg_help = "negates '--%s%s'" % (self.prefix, option_name)
self.add_config_file_option(option_name="no-%s" % option_name, dest=dest, help=neg_help, action="store_false")
def get_config_file_value(self, option_name):
"""
Query a single interpolated config file value.
@param option_name: the config file option to look up
@type option_name: string
@returns: The config file option value or C{None} if it doesn't exist
@rtype: C{str} or C{None}
"""
return self.config.get(option_name)
def print_help(self, file=None):
"""
Print an extended help message, listing all options and any
help text provided with them, to 'file' (default stdout).
"""
if file is None:
file = sys.stdout
encoding = file.encoding if hasattr(file, 'encoding') else 'utf-8'
try:
msg = self.format_help()
if hasattr(file, 'mode') and 'b' in file.mode:
msg = msg.encode(encoding, "replace")
file.write(msg)
except OSError as e:
if e.errno != errno.EPIPE:
raise
@classmethod
def _name_to_filename(cls, name):
"""
Translate a name like 'system' to a config file name
>>> GbpOptionParser._name_to_filename('foo')
>>> GbpOptionParser._name_to_filename('system')
'/etc/git-buildpackage/gbp.conf'
>>> GbpOptionParser._name_to_filename('global')
'~/.gbp.conf'
>>> GbpOptionParser._name_to_filename('debian')
'%(top_dir)s/debian/gbp.conf'
"""
for k, v in cls.def_config_files:
if name == v:
return k
else:
return None
@classmethod
def _set_config_file_value(cls, section, option, value, name=None, filename=None):
"""
Write a config value to a file creating it if needed
On errors a ConfigParserError is raised
"""
if not name and not filename:
raise configparser.Error("Either 'name' or 'filename' must be given")
if not filename:
filename = os.path.expanduser(cls._name_to_filename(name))
# Create e new config parser since we only operate on a single file
cfg = configparser.RawConfigParser()
cfg.read(filename)
if not cfg.has_section(section):
cfg.add_section(section)
cfg.set(section, option, value)
with open(filename, 'w') as fp:
cfg.write(fp)
class GbpOptionGroup(OptionGroup):
@save_option
def add_config_file_option(self, option_name, dest, help=None, **kwargs):
"""
set a option for the command line parser, the default is read from the config file
param option_name: name of the option
type option_name: string
param dest: where to store this option
type dest: string
param help: help text
type help: string
"""
if not help:
help = self.parser.help[option_name]
opt_names = self.parser.get_opt_names(option_name)
OptionGroup.add_option(self, *opt_names, dest=dest,
default=self.parser.get_default(option_name, **kwargs),
help=help % self.parser.config, **kwargs)
def add_boolean_config_file_option(self, option_name, dest):
self.add_config_file_option(option_name=option_name, dest=dest, action="store_true")
neg_help = "negates '--%s%s'" % (self.parser.prefix, option_name)
self.add_config_file_option(option_name="no-%s" % option_name, dest=dest, help=neg_help, action="store_false")
class GbpOptionParserDebian(GbpOptionParser):
"""
Handles commandline options and parsing of config files for Debian tools
"""
defaults = dict(GbpOptionParser.defaults)
defaults.update({
'builder': 'debuild -i -I',
})
def _warn_old_gbp_conf(self, gbp_conf):
if os.path.exists("debian/control"):
GbpOptionParser._warn_old_gbp_conf(self, gbp_conf)
class GbpOptionParserRpm(GbpOptionParser):
"""
Handles commandline options and parsing of config files for rpm tools
"""
defaults = dict(GbpOptionParser.defaults)
defaults.update({
'tmp-dir': '/var/tmp/gbp/',
'vendor': 'Downstream',
'packaging-branch': 'master',
'packaging-dir': '',
'packaging-tag-msg': '%(pkg)s (vendor)s release %(version)s',
'packaging-tag': 'packaging/%(version)s',
'export-sourcedir': 'SOURCES',
'export-specdir': 'SPECS',
'export-dir': '../rpmbuild',
'builder': 'rpmbuild',
'spec-file': '',
'mock': 'False',
'dist': '',
'arch': '',
'mock-root': '',
'mock-options': '',
'native': 'auto',
'changelog-file': 'auto',
'changelog-revision': '',
'spawn-editor': 'always',
'editor-cmd': 'vim',
'spec-vcs-tag': '',
})
help = dict(GbpOptionParser.help)
help.update(
{
'tmp-dir':
"Base directory under which temporary directories are "
"created, default is '%(tmp-dir)s'",
'vendor':
"Distribution vendor name, default is '%(vendor)s'",
'packaging-branch':
"Branch the packaging is being maintained on, rpm counterpart "
"of the 'debian-branch' option, default is "
"'%(packaging-branch)s'",
'packaging-dir':
"Subdir for RPM packaging files, default is "
"'%(packaging-dir)s'",
'packaging-tag':
"Format string for packaging tags, RPM counterpart of the "
"'debian-tag' option, default is '%(packaging-tag)s'",
'packaging-tag-msg':
"Format string for packaging tag messages, "
"default is '%(packaging-tag-msg)s'",
'spec-file':
"Spec file to use, causes the packaging-dir option to be "
"ignored, default is '%(spec-file)s'",
'export-sourcedir':
"Subdir (under EXPORT_DIR) where packaging sources (other than "
"the spec file) are exported, default is "
"'%(export-sourcedir)s'",
'export-specdir':
"Subdir (under EXPORT_DIR) where package spec file is "
"exported default is '%(export-specdir)s'",
'mock':
"Invoke mock for building using gbp-builder-mock, "
"default is '%(mock)s'",
'dist':
"Build for this distribution when using mock. E.g.: epel-6, "
"default is '%(dist)s'",
'arch':
"Build for this architecture when using mock, "
"default is '%(arch)s'",
'mock-root':
"The mock root (-r) name for building with mock: <dist>-<arch>, "
"default is '%(mock-root)s'",
'mock-options':
"Options to pass to mock, "
"default is '%(mock-options)s'",
'native':
"Treat this package as native, default is '%(native)s'",
'changelog-file':
"Changelog file to be used, default is '%(changelog-file)s'",
'changelog-revision':
"Format string for the revision field in the changelog header. "
"If empty or not defined the default from packaging policy is "
"used.",
'editor-cmd':
"Editor command to use",
'git-author':
"Use name and email from git-config for the changelog header, "
"default is '%(git-author)s'",
'spec-vcs-tag':
"Set/update the 'VCS:' tag in the spec file, empty value "
"removes the tag entirely, default is '%(spec-vcs-tag)s'",
})
def _warn_old_gbp_conf(self, gbp_conf):
# The rpm based tools use $repo/.gbp.conf a lot, don't
# warn there yet
pass
# vim:et:ts=4:sw=4:et:sts=4:ai:set list listchars=tab\:»·,trail\:·:
|