mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-12 15:41:09 +00:00
44 lines
1.6 KiB
Python
Executable File
44 lines
1.6 KiB
Python
Executable File
#! /usr/bin/python
|
|
#
|
|
# update-maintainer - this script is used to update the Maintainer field of an
|
|
# Ubuntu package, as approved by the Ubuntu Technical
|
|
# Board at:
|
|
#
|
|
# https://lists.ubuntu.com/archives/ubuntu-devel/2009-May/028213.html
|
|
#
|
|
# Copyright (C) 2009 Jonathan Davies <jpds@ubuntu.com>
|
|
#
|
|
# Original shell script was:
|
|
#
|
|
# Copyright 2007 (C) Albin Tonnerre (Lutin) <lut1n.tne@gmail.com>
|
|
#
|
|
# 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 3 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/>.
|
|
#
|
|
|
|
import optparse
|
|
import os
|
|
import sys
|
|
|
|
import ubuntutools.update_maintainer
|
|
|
|
script_name = os.path.basename(sys.argv[0])
|
|
usage = "%s [options]" % (script_name)
|
|
epilog = "See %s(1) for more info." % (script_name)
|
|
parser = optparse.OptionParser(usage=usage, epilog=epilog)
|
|
parser.add_option("-q", "--quiet", help="print no informational messages",
|
|
dest="quiet", action="store_true", default=False)
|
|
(options, args) = parser.parse_args()
|
|
|
|
sys.exit(ubuntutools.update_maintainer.update_maintainer(not options.quiet))
|