/etc/cvsdeb.conf is in cvs-buildpackage 5.23.
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 | #
# This file is a bourne shell snippet, and is sourced by the
# cvs-buildpackage script for configuration.
#
#
# The following variables are available, derived from the changelog
# file at run time
#
# $package: Name of the package
# $version: The raw version of the package
# $sversion: The version number stripped of epochs
# $uversion: The upstream version
# $tversion: Debian revision number, if any
#
# There is nothing preventing you from overriding any of those, or,
# in fact, from modifying internal variables used in the script,
# though you should know what you are doing before doing so, know
# that all your warranties become void if you do so.
#
# Debugging information: The default value is 0 (no debugging
# information is printed). To change the default behavior, uncomment
# the following line and set the value to 1.
#
# DEBUG=0
#
# The directories.
#
# The root directory is used to set the default value of the work
# directory, using the package name. The default value is
# "/usr/local/src/Packages" (note that this directory is not created
# automatically). To change the default behavior, uncomment the
# following line and set the value to match the local setup.
#
# conf_rootdir='/usr/src/Packages'
# The work directory. This directory is where the original sources are
# expected, and this is where the module shall be exported from CVS.
# If you set this value, the value of the root directory, either set
# up above or on the command line, would be ignored. To change the
# default behavior, uncomment the following line and set the value to
# match the local setup.
#
# conf_workdir="$rootdir/$package"
# You may set the dpkg-buildpackage options as a bash array. These
# shall augment (not replace) dpkg-buildpackage options provided on
# the command line.
# Bash provides one-dimensional array variables. Any variable may be
# used as an array; the `declare' builtin will explicitly declare an
# array. There is no maximum limit on the size of an array, nor any
# requirement that members be indexed or assigned contiguously.
# Arrays are zero-based.
# Arrays are assigned to using compound assignments of the form
# conf_dpkg_options=(value1 ... valueN)
# or
# dpkg_options=(value1 "${dpkg_options[@]}")
|