diff options
author | joey <joey> | 2000-07-19 00:33:24 +0000 |
---|---|---|
committer | joey <joey> | 2000-07-19 00:33:24 +0000 |
commit | a7afc7fccd48b73037a32e511a219016ba9fee17 (patch) | |
tree | ae8ddff5a61ce11e724e0d79fa2d2ce8f7114a71 /doc/PROGRAMMING | |
parent | 23098f605ed8cb77509f34f2deb131c18b357c05 (diff) | |
download | debhelper-a7afc7fccd48b73037a32e511a219016ba9fee17.tar.gz |
r359: * I started work on debhelper v2 over a year ago, with a long list of
changes I hoped to get in that broke backwards compatability. That
development stalled after only the most important change was made,
although I did get out over 100 releases in the debhelper 2.0.x tree.
In the meantime, lots of packages have switched to using v2, despite my
warnings that doing so leaves packages open to being broken without
notice until v2 is complete.
* Therefore, I am calling v2 complete, as it is. Future non-compatabile
changes will happen in v3, which will be started soon. This means that
by using debhelper v2, one major thing changes: debhelper uses
debian/<package> as the temporary directory for *all* packages;
debian/tmp is no longer used to build binary packages out of. This is
very useful for multi-binary packages, and I reccommend everyone
switch to v2.
* Updated example rules files to use v2 by default.
* Updated all documentation to assume that v2 is being used.
* Added a few notes for people still using v1.
* Moved all of the README into debhelper(1).
Diffstat (limited to 'doc/PROGRAMMING')
-rw-r--r-- | doc/PROGRAMMING | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/doc/PROGRAMMING b/doc/PROGRAMMING index df9a7287..ca10ca38 100644 --- a/doc/PROGRAMMING +++ b/doc/PROGRAMMING @@ -11,10 +11,10 @@ pollute the name space too much. Debhelper programs should never output anything to standard output except error messages, important warnings, and the actual commands they run that -modify files under debian/ and debian/tmp, etc (this last only if they are -passed -v, and if you output the commands, you should indent them with 1 tab). -This is so we don't have a lot of noise output when all the debhelper commands -in a debian/rules are run, so the important stuff is clearly visible. +modify files under debian/ (this last only if they are passed -v, and if you +output the commands, you should indent them with 1 tab). This is so we don't +have a lot of noise output when all the debhelper commands in a debian/rules +are run, so the important stuff is clearly visible. Debhelper programs should accept all options listed in the "SHARED DEBHELPER OPTIONS" section of debhelper(1), including and any long forms of @@ -171,8 +171,7 @@ warning() tmpdir() Pass this command the name of a binary package, it will return the name of the tmp directory that will be used as this package's - package build directory. Typically, this will be "debian/tmp" or - "debian/package". + package build directory. Typically, this will be "debian/package". compat() Pass this command a number, and if the current compatability level equals that number, it will return true. Looks at DH_COMPAT to get |