Common functionality for Debian and RPM patchqueue management
Function | is_pq_branch | is branch a patch-queue branch? |
Function | pq_branch_name | get the patch queue branch corresponding to branch |
Function | pq_branch_base | get the branch corresponding to the given patch queue branch |
Function | parse_gbp_commands | Parses gbp commands from commit message. Args with and wthout arguments are supported as is filtering out of commands from the commit body. |
Function | patch_path_filter | Create patch include paths, i.e. a "negation" of the exclude paths. |
Function | write_patch_file | Write patch file |
Function | format_patch | Create patch of a single commit |
Function | format_diff | Create a patch of diff between two repository objects |
Function | get_maintainer_from_control | Get the maintainer from the control file |
Function | switch_to_pq_branch | Switch to patch-queue branch if not already on it. doesn't exist yet |
Function | apply_single_patch | Undocumented |
Function | apply_and_commit_patch | apply a single patch 'patch', add topic 'topic' and commit it |
Function | drop_pq | Undocumented |
is branch a patch-queue branch? >>> is_pq_branch("foo") False >>> is_pq_branch("patch-queue/foo") True
get the patch queue branch corresponding to branch >>> pq_branch_name("patch-queue/master") 'patch-queue/master' >>> pq_branch_name("foo") 'patch-queue/foo'
get the branch corresponding to the given patch queue branch >>> pq_branch_base("patch-queue/master") 'master' >>> pq_branch_base("foo") 'foo'
Parses gbp commands from commit message. Args with and wthout arguments are supported as is filtering out of commands from the commit body. @param info: the commit into to parse for commands @param cmd_tag: the command tag @param noarg_cmds: commands without an argument @type noarg_cmds: C{list} of C{str} @param arg_cmds: command with an argumnt @type arg_cmds: C{list} of C{str} @param filter_cmds: commands to filter out of the passed in info @type filter_cmds: C{list} of C{str} @returns: the parsed commands and the filtered commit body.
Create patch include paths, i.e. a "negation" of the exclude paths.
Create patch of a single commit
Create a patch of diff between two repository objects
Switch to patch-queue branch if not already on it. doesn't exist yet