summaryrefslogtreecommitdiff
path: root/dh_clean
AgeCommit message (Collapse)AuthorFilesLines
2008-10-21Move many command-specific options to only be accepted by the command that ↵Joey Hess1-1/+3
uses them. Affected options are: -x, -r, -R, -l, -L, -m, --include-conffiles, --no-restart-on-upgrade, --no-start, --restart-after-upgrade, --init-script, --filename, --flavor, --autodest, --libpackage, --add-udeb, --dpkg-shlibdeps-params, --dpkg-gencontrol-params, --update-rcd-params, --major, --remove-d, --dirs-only, --keep-debug, --version-info, --list-missing, --fail-missing, --language, --until, --after, --before, --remaining, --with * If any third-party debhelper commands use any of the above options, they will be broken, and need to be changed to pass options to init(). * To avoid breaking rules files that pass options to commands that do not use them, debhelper will now only warn if it encounters an unknown option. This will be converted back to an error later.
2008-07-08dh_clean: Do not delete *-stamp files in -k mode in v7. Closes: #489918Joey Hess1-3/+2
2008-04-29add note about dh_clean being lastJoey Hess1-1/+4
2008-04-23dh_clean: In v7 mode, automatically delete *-stamp files.Joey Hess1-1/+5
2008-04-23dh_prep: New program, does the same as dh_clean -k (which will be deprecated ↵Joey Hess1-7/+8
later).
2008-04-23remove exitJoey Hess1-1/+1
2008-04-23updatesJoey Hess1-1/+5
2008-04-23do not clean debian/clean on -kJoey Hess1-13/+13
2008-04-23dh_clean: In v7 mode, read debian/clean and delete all files listed therein.Joey Hess1-0/+8
2008-04-23dh_auto_install: New program, automates running make install, or using ↵Joey Hess1-0/+3
setup.py to install. Supports the PREFIX=/usr special case needed by MakeMaker Makefiles. (Support for cmake and other build systems planned but not yet implemented.)
2008-04-22dh_clean: Don't delete core dumps. (Too DWIM, and "core" is not necessarily ↵Joey Hess1-2/+2
a core dump.) Closes: #477391
2007-10-07r2036: * dh_clean: append "/" to the temp dir name to avoid removing joeyh1-1/+1
a file with the same name. Closes: #445638
2005-11-08r1815: * dh_clean: Patch from Matej Vela to clean up autom4te.cache directoriesjoey1-7/+4
in subdiretories of the source tree and do it all in one enormous, evil, and fast find expression. Closes: #338193
2005-07-19r1772: releasing version 4.9.44.9.4joey1-10/+7
2003-08-19r1592: * dh_link: rm -f every time, ln -f is not good enough if the link ↵version_4.1.66joey1-1/+2
target is an existing directory (aka, ln sucks). Closes: #206245 * dh_clean: honor -X for debian/tmp removal. Closes: #199952 more or less.
2003-07-07r595: * dh_clean: Clean the *.debhelper temp files on a per-package basis, injoey1-12/+7
case dh_clean is run on one package at a time. * Removed the debian/substvars removal code entirely. It was only there to deal with half-built trees built with debhelper << 3.0.30
2003-07-04r593: * dh_clean: make -X work for debian/substvars file.joey1-1/+2
2003-03-03r576: * Rename debhelper.1 to debhelper.7.joey1-1/+1
* Typo, Closes: #183267
2002-05-22r524: * Make dh_clean remove autom4te.cache.joey1-0/+4
2002-03-17r514: * Fix to #99169 was accidentually reverted in 3.0.42; reinstated.joey1-0/+4
2002-02-17r510: * Thanks to Benjamin Drieu <benj@debian.org>, dh_installdocs -X now ↵joey1-3/+6
works. I had to modify his patch to use cp --parents, since -P spews warnings now. Also, I made it continue to use cp -a if nothing is excluded, which is both faster, and means this patch is less likely to break anything if it turns out to be buggy. Also, stylistic changes. Closes: #40649 * Implemented -X for dh_installexamples as well. * dh_clean -X substvars will also work now. Closes: #66890
2002-01-27r503: * dh_installman: more documentation about the .TH line. Closes: #129205joey1-1/+1
* dh_installxfonts: - Packages that use this should depend on xutils. See man page. - However, if you really want to, you can skip the dep, and the postinst will avoid running program that arn't available. Closes: #131053 - Use update-fonts-dir instead of handling encodings ourselves. Yay! - Pass only the last component of the directory name to update-fonts-*, since that's what they perfer now. - Other changes, chould fully comply with Debian X font policy now.
2001-11-18r496: * Man page cleanups, Closes: #119335joey1-1/+1
2001-08-23r487: * dh_movefiles: Typo, Closes: #106532joey1-16/+6
* Use -x to test for existance of init scripts, rather then -e since we'll be running them, Closes: #109692 * dh_clean: remove debian/*.debhelper. No need to name files specifically; any file matching that is a debhelper temp file. Closes: #106514, #85520
2001-07-28r486: * Clean up old substvars.debhelper files, although debhelper doesn'tjoey1-0/+1
generate them now, it used to and they may still be lurking in build trees. Closes: #106514 * Fixed a typo. Closes: #106532
2001-06-18r480: * Revert change of 3.0.30. This broke too much stuff. Maybe I'lljoey1-1/+1
change it in debhelper v4..
2001-06-03r475: * dh_gencontrol: Added a documented interface for specifying substvarsjoey1-1/+1
data in a file. Substvars data may be put in debian/package.substvars. (Those files used to be used by debhelper for automatically generated data, but it uses a different internal filename now). It will be merged with any automatically determined substvars data. See bug #98819 * I want to stress that no one should ever rely in internal, undocumented debhelper workings. Just because debhelper uses a certian name for some internally used file does not mean that you should feel free to modify that file to your own ends in a debian package. If you do use it, don't be at all suprised when it breaks. If you find that debhelper is lacking a documented interface for something that you need, ask for it! (debhelper's undocumented, internal use only files should now all be prefixed with ".debhelper")
2001-05-30r473: * dh_clean: clean up temp files used by earlier versons of debhelper.joey1-0/+9
Closes: #99169
2001-02-09r426: updatejoey1-3/+2
2001-02-09r425: mode pod man pagesjoey1-3/+65
2001-02-09r421: use strictjoey1-1/+1
2001-02-09r420: big monsta changesjoey1-15/+13
2000-07-06r353: * Modified all postinst script fragments to only run when called withjoey1-1/+9
"configure". I looked at the other possibilities, and I don't think any of the supported stuff should be called if the postist is called for error unwinds. Closes: #66673 * Implemented dh_clean -X, to allow specification of files to not delete, Closes: #66670
2000-05-01r348: * Fixes for perl 5.6.joey1-5/+5
* Spelling fixes.
2000-03-02r338: * Patch from Jorgen `forcer' Schaefer <forcer at mindless.com> (muchjoey1-11/+42
modified)to make dh_installwm use new window manager registration method, update-alternatives. Closes: #52156, #34684 (latter bug is obsolete) * Fixed $dh{flavor} to be upper-case. * Deprecated dh_installemavcsen --number; use --priority instead. Also, the option parser requires the parameter be a number now. And, dh_installwm now accepts --priority, and window manager packages should start using it. * dh_installwm now behaves like a proper debhelper command, and reads debian/<package>.wm too. This is a small behavior change; filenames specified on the command line no longer apply to all packages it acts on. I can't belive this program existed for 2 years with such a glaring problem; I guess most people don't need ot register 5 wm's in 3 sub-packages. Anyway, it can handle such things now. :-) * Moved Dh_*.pm to /usr/lib/perl5/Debian/Debhelper. *big* change.
1999-08-17r1: Initial revisionjoey1-0/+16