DEBRELEASE(1) | General Commands Manual | DEBRELEASE(1) |
debrelease - a wrapper around dupload or dput
debrelease [debrelease options] [dupload/dput options]
debrelease is a simple wrapper around dupload or dput. It is called from within the source code tree of a package, and figures out the current version of a package. It then looks for the corresponding .changes file (which lists the files needed to upload in order to release the package) in the parent directory of the source code tree and calls dupload or dput with the .changes file as parameter in order to perform the actual uploading.
Options may be given to debrelease; except for the ones listed below, they are passed on unchanged to dupload or dput. The devscripts configuration files are also read by debrelease as described below.
In common with several other scripts in the devscripts package, debrelease will climb the directory tree until it finds a debian/changelog file. As a safeguard against stray files causing potential problems, it will examine the name of the parent directory once it finds the debian/changelog file, and check that the directory name corresponds to the package name. Precisely how it does this is controlled by two configuration file variables DEVSCRIPTS_CHECK_DIRNAME_LEVEL and DEVSCRIPTS_CHECK_DIRNAME_REGEX, and their corresponding command-line options --check-dirname-level and --check-dirname-regex.
DEVSCRIPTS_CHECK_DIRNAME_LEVEL can take the following values:
The directory name is checked by testing whether the current directory name (as determined by pwd(1)) matches the regex given by the configuration file option DEVSCRIPTS_CHECK_DIRNAME_REGEX or by the command line option --check-dirname-regex regex. Here regex is a Perl regex (see perlre(3perl)), which will be anchored at the beginning and the end. If regex contains a '/', then it must match the full directory path. If not, then it must match the full directory name. If regex contains the string ´PACKAGE', this will be replaced by the source package name, as determined from the changelog. The default value for the regex is: ´PACKAGE(-.+)?', thus matching directory names such as PACKAGE and PACKAGE-version.
The two configuration files /etc/devscripts.conf and ~/.devscripts are sourced in that order to set configuration variables. Command line options can be used to override configuration file settings. Environment variable settings are ignored for this purpose. The currently recognised variables are:
dput(1), dupload(1), devscripts.conf(5)
Julian Gilbey <jdg@debian.org>, based on the original release script by Christoph Lameter <clameter@debian.org>.
Debian Utilities | DEBIAN |