This is an automated email from the git hooks/post-receive script. jamessan pushed a commit to branch master in repository devscripts.
commit 5521a245a31071d3a999a639eac4183ec081caf1 Author: Jakub Wilk <[email protected]> Date: Wed Feb 12 19:24:15 2014 +0100 sadt: Add “make” when expanding @builddeps@ Signed-off-by: James McCoy <[email protected]> --- scripts/sadt | 3 ++- scripts/sadt.pod | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/sadt b/scripts/sadt index c6cca1f..c92f683 100755 --- a/scripts/sadt +++ b/scripts/sadt @@ -1,7 +1,7 @@ #!/usr/bin/python3 # encoding=UTF-8 -# Copyright © 2012, 2013 Jakub Wilk <[email protected]> +# Copyright © 2012, 2013, 2014 Jakub Wilk <[email protected]> # Permission to use, copy, modify, and/or distribute this software for any # purpose with or without fee is hereby granted, provided that the above @@ -185,6 +185,7 @@ class TestGroup(object): for or_clause in parsed_depends: if len(or_clause) == 1 and or_clause[0]['name'] == '@builddeps@': or_clauses += build_depends + or_clauses += deb822.PkgRelation.parse_relations('make') continue stripped_or_clause = [r for r in or_clause if r['name'] != '@'] if len(stripped_or_clause) < len(or_clause): diff --git a/scripts/sadt.pod b/scripts/sadt.pod index 0884e71..bbf1fe0 100644 --- a/scripts/sadt.pod +++ b/scripts/sadt.pod @@ -64,7 +64,7 @@ Show a help message and exit. =head1 CONFORMING TO -README.package-tests shipped by autopkgtest 2.6 +README.package-tests shipped by autopkgtest 2.7.2 =head1 SEE ALSO -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/collab-maint/devscripts.git _______________________________________________ devscripts-devel mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/devscripts-devel
