1.6. Maintenance automation
The following tools help automate different maintenance tasks, from adding changelog entries or signature lines and looking up bugs in Emacs to making use of the newest and official config.sub
.
1.6.1. devscripts
devscripts
is a package containing wrappers and tools that are very helpful for maintaining your Debian packages. Example scripts include debchange
(or its alias, dch
), which manipulates your debian/changelog
file from the command-line, and debuild
, which is a wrapper around dpkg-buildpackage
. The bts
utility is also very helpful to update the state of bug reports on the command line. uscan
can be used to watch for new upstream versions of your packages. suspicious-source
outputs a list of files which are not common source files.
See the devscripts 1 manual page for a complete list of available scripts.
1.6.2. reportbug
reportbug
is a tool designed to make the reporting of bugs in Debian and derived distributions relatively painless. Its features include:
Integration with mutt and mh/nmh mail readers.
Access to outstanding bug reports to make it easier to identify whether problems have already been reported.
Automatic checking for newer versions of packages.
reportbug
is designed to be used on systems with an installed mail transport agent; however, you can edit the configuration file and send reports using any available mail server.
This package also includes the querybts
script for browsing the Debian bug tracking system.
1.6.3. autotools-dev
autotools-dev
contains best practices for people who maintain packages that use autoconf
and/or automake
. Also contains canonical config.sub
and config.guess
files, which are known to work on all Debian ports.
1.6.4. dpkg-repack
dpkg-repack
creates a Debian package file out of a package that has already been installed. If any changes have been made to the package while it was unpacked (e.g., files in /etc
were modified), the new package will inherit the changes.
This utility can make it easy to copy packages from one computer to another, or to recreate packages that are installed on your system but no longer available elsewhere, or to save the current state of a package before you upgrade it.
1.6.5. alien
alien
converts binary packages between various packaging formats, including Debian, RPM (RedHat), LSB (Linux Standard Base), Solaris, and Slackware packages.
1.6.6. dpkg-dev-el
dpkg-dev-el
is an Emacs lisp package that provides assistance when editing some of the files in the debian
directory of your package. For instance, there are handy functions for listing a package’s current bugs, and for finalizing the latest entry in a debian/changelog
file.
1.6.7. dpkg-depcheck
dpkg-depcheck
(from the devscripts
package, devscripts) runs a command under strace
to determine all the packages that were used by the said command.
For Debian packages, this is useful when you have to compose a Build-Depends
line for your new package: running the build process through dpkg-depcheck
will provide you with a good first approximation of the build-dependencies. For example:
dpkg-depcheck -b debian/rules build
dpkg-depcheck
can also be used to check for run-time dependencies, especially if your package uses exec 2 to run other programs.
For more information please see dpkg-depcheck 1.