summaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)AuthorFilesLines
2011-04-01dh_installgsettings: New command to handle gsettings schema files. Closes: ↵Joey Hess1-0/+3
#604727
2010-08-07updateJoey Hess1-4/+1
2010-05-28updateJoey Hess1-2/+1
2010-05-28In v8 mode, prefer the perl_build buildsystem over perl_makemaker. Closes: ↵Joey Hess1-3/+0
#578805
2010-05-27In v8 mode, dh expects the sequence to run is always its first parameter.Joey Hess1-6/+2
This avoids ambiguities when parsing options to be passed on to debhelper commands. (See #570039) In the end, the idea of putting the debhelper command options after -- seemed to need too much knowledge about whether an option like --buildsystem is a dh option or a command option. I did consider making no change.. The ambiguities this eliminates are small. But it seemed worth simplifying dh's option parser, and only about 1/6th of calls to dh in the archive don't put the sequence first already. (Docs have shown that as the right thing to do for some time.)
2010-05-23updateJoey Hess1-3/+5
2010-05-23clarifyJoey Hess1-1/+1
2010-05-23debian/compress files are now deprecated. Seems only one package (genesis) ↵Joey Hess1-3/+1
still uses them.
2010-05-23updateJoey Hess1-1/+4
2010-05-23dh_testversion: Removed this deprecated command.Joey Hess1-5/+0
2 packages in the archive still use it, but both like this: ifneq ($(shell dh_testversion '<<' 7.4.10 2>/dev/null && echo old),old) dh_parallel = --parallel endif Happily, the way that was written, if the command doesn't exist, it does the right thing and enables the behavior for the new debhelper. Not that it would greatly matter if it did not, since --parallel is not crucial.
2010-05-23In v8 mode, dh_makeshlibs will run dpkg-gensymbols on all shared libraries ↵Joey Hess1-1/+2
it generates shlibs files for. This means that -X can be used to exclude libraries from processing by dpkg-gensymbols. It also means that libraries in unusual locations, where dpkg-gensymbols does not itself normally look will be passed to it, a behavior change which may break some packages. Closes: #557603
2010-05-23In v8 mode, do not allow directly passing unknown options to debhelper ↵Joey Hess1-1/+0
commands. (Unknown options in DH_OPTIONS still only result in warnings.)
2010-05-23Add deprecation warning for dh_clean -k.Joey Hess1-5/+6
2010-05-12updateJoey Hess1-0/+3
2010-04-08updateJoey Hess1-8/+6
2010-04-06releasing version 7.4.167.4.16Joey Hess1-1/+1
2010-03-01If neither -a or -i are specified, debhelper commands used to default to ↵Joey Hess1-1/+3
acting on all packages in the control file, which was a guaranteed failure if the control file listed packages that did not build for the target architecture. After recent optimisations, this default behavior can efficiently be changed to the more sane default of acting on only packages that can be built for the current architecture. This change is mostly useful when using minimal rules files with dh. Closes: #572077
2010-02-16todo7.4.14Joey Hess1-0/+3
2009-12-29updateJoey Hess1-0/+3
2009-12-29stop trying to handle substvars idempotentlyJoey Hess1-3/+4
In the beginning, I tried to be careful to have commands that added a substvar remove it when ran again with different options that caused it to not be needed. However, now when I look over the code, I see 3 places that got it right, 1 that was right but I just broke, and a dozen that don't even try to handle this case. Also, handling the case is hard; code that adds substvars may be complex and calculate versioned dependencies. The removal code then has to somehow also come up with those same exact dependency strings. It's a recipe for nasty code and maintenance headache even if I went and fixed everything right now. Instead, I dropped the whole thing. Many debhelper commands make no pretense of being idempotent anyway; it's easy and normal to call dh_prep when starting a binary package build, with the exact purpose of not needing to worry about idempotency. I did leave in the delsubstvar function, as well as the option to addsubstvar that, confusingly, causes an item to be removed. Just for library compatability reasons.
2009-12-09releasing version 7.4.107.4.10Joey Hess1-0/+1
2009-11-04Drop deprecated programs from the list of commands in debhelper(7). Closes: ↵Joey Hess1-1/+2
#548382
2009-11-04updateJoey Hess1-2/+2
2009-11-04Add deprecation warnings for -u to the documentation, since putting options ↵Joey Hess1-0/+1
after -- is much more sane. (However, -u will not go away any time soon.) Closes: #554509
2009-09-01-a == -sJoey Hess2-2/+3
The -a flag now does the same thing as the -s flag, so debhelper users do not need to worry about using the -s flag when building a package that only builds for some architectures, and dh will also work in that situation. Closes: #540794
2009-08-26drop regex support from remove_command_optionsJoey Hess1-2/+1
I hope that it will not be needed; indeed I doubt that remove_command_options will be used much, because sequence addons would need to try to do conflicting things to need it. And the interface makes it hard for such conflicting sequence addons to work around the other, since addons can be loaded in either order. So let's not encourage them too much, and if there's a use case later, we can made changes. I haven't applied Modestas's enhanced patch that allows adding an option to all commands because I similarly think it might not be used. If a use case comes along we can add something like that.
2009-08-26Allow dh addons to pass options to debhelper commandsModestas Vainius1-0/+14
Add dh addons APIs add_command_options()/remove_command_options() that allow addons to add additional options which dh will pass to the specified debhelper commands. Signed-off-by: Modestas Vainius <modestas@vainius.eu>
2009-08-06releasing version 7.3.127.3.12Joey Hess1-1/+1
2009-08-06dh: Allow creation of new sequences (such as to handle a patch target for ↵Joey Hess1-1/+6
quilt), by adding an add_command function to the sequence addon interface. See #540124.
2009-07-01mention configureJoey Hess1-1/+1
2009-06-29misc minor changesJoey Hess1-1/+2
2009-06-28clean up --sourcedir/--sourcedirectory conflictJoey Hess1-2/+0
* Move two move command-specific options to only be accepted by the commands that use them. The options are: --sourcedir, --destdir * If any third-party debhelper commands use either of the above options, they will be broken, and need to be changed to pass options to init(). This was done because of a conflict with the --sourcedirectory options used by dh_auto_*. I originally wanted to make dh_auto_* and dh_install both use --sourcedir, but that didn't work out.
2009-06-11Merge branch 'master' into buildsystemsJoey Hess1-1/+1
Conflicts: debian/changelog
2009-05-27dh_scrollkeeper: Now a deprecated no-op. Closes: #530806Joey Hess1-1/+1
2009-04-20updateJoey Hess1-0/+3
2009-04-20basic docs about buildsystem classesJoey Hess1-4/+16
2009-04-20Move dh sequence documentation to PROGRAMMING.Joey Hess1-12/+21
2009-04-10updateJoey Hess1-0/+1
2009-03-23document load_load, write_logJoey Hess1-0/+7
2009-03-07remove item already doneJoey Hess1-2/+0
2009-03-07Compatability level 4 is now deprecated.Joey Hess1-1/+1
2009-02-15updateJoey Hess1-1/+1
2008-10-21Move many command-specific options to only be accepted by the command that ↵Joey Hess2-28/+9
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-10-21Allow individual debhelper programs to define their own special options by ↵Joey Hess2-27/+10
passing a hash to init(), which is later passed on the Getopt::Long. Closes: #370823
2008-06-19updateJoey Hess1-1/+2
2008-05-08dh_installinit: Add --restart-after-upgrade, which avoids stopping a daemon ↵Joey Hess1-1/+2
in the prerm, and instead restarts it in the postinst, keeping its downtime minimal. Since some daemons could break if files are upgraded while they're running, it's not the default. It might become the default in a future (v8) compatability level. Closes: #471060
2008-04-30docsJoey Hess1-0/+3
2008-04-23dh_prep: New program, does the same as dh_clean -k (which will be deprecated ↵Joey Hess1-0/+1
later).
2008-01-07finialize v6 modeJoey Hess1-1/+1
2007-10-10r2037: Vcs- fields are now officialjoeyh1-0/+1