Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

tagpending(1) [linux man page]

TAGPENDING(1)                                                                                                                        TAGPENDING(1)

NAME
tagpending - tags bugs that are to be closed in the latest changelog as pending SYNOPSIS
tagpending [options] DESCRIPTION
tagpending parses debian/changelog to determine which bugs would be closed if the package were uploaded. Each bug is then marked as pending, using bts(1) if it is not already so. OPTIONS
-n, --noact Check whether any bugs require tagging, but do not actually do so. -s, --silent Do not output any messages. -v, --verbose List each bug checked and tagged in turn. -f, --force Do not query the BTS, but (re)tag all bugs closed in the changelog. --comments Include the changelog header line and the entries relating to the tagged bugs as comments in the generated mail. This is the default. Note that when used in combination with --to, the header line output will always be that of the most recent version. --no-comments Do not include changelog entries in the generated mail. -c, --confirm Tag bugs as both confirmed and pending. -t, --to version Parse changelogs for all versions strictly greater than version. Equivalent to dpkg-parsechangelog's -v option. -i, --interactive Display the message which would be sent to the BTS and, except when --noact was used, prompt for confirmation before sending it. -w, --wnpp For each bug that does not appear to belong to the current package, check whether it is filed against wnpp. If so, tag it. This allows e.g. ITAs and ITPs closed in an upload to be tagged. SEE ALSO
bts(1) and dpkg-parsechangelog(1) COPYRIGHT
This program is Copyright 2008 by Adam D. Barratt <adam@adam-barratt.org.uk>. The shell script tagpending, on which this program is based, is Copyright 2004 by Joshua Kwan <joshk@triplehelix.org> with changes copyright 2004-7 by their respective authors. This program is licensed under the terms of the GPL, either version 2 of the License, or (at your option) any later version. Debian Utilities 2013-12-23 TAGPENDING(1)

Check Out this Related Man Page

dpkg-mergechangelogs(1) 					    dpkg suite						   dpkg-mergechangelogs(1)

NAME
dpkg-mergechangelogs - 3-way merge of debian/changelog files SYNOPSIS
dpkg-mergechangelogs [option...] old new-a new-b [out] DESCRIPTION
This program will use the 3 provided versions of the Debian changelog to generate a merged changelog file. The resulting changelog is stored in the file out or output to the standard output if that parameter is not given. Each entry is identified by its version number and they are assumed to be not conflicting, they are simply merged in the right order (by decreasing version number). When --merge-prereleases is used, the part of the version number after the last tilde is dropped so that 1.0-1~exp1 and 1.0-1~exp5 are considered to be the same entry. When the same version is available in both new-a and new-b, a standard line- based 3-way merge is attempted (provided that the module Algorithm::Merge is available -- it's part of the package libalgorithm-merge-perl -- otherwise you get a global conflict on the content of the entry). OPTIONS
--merge-prereleases, -m Drop the part after the last tilde in the version number when doing version comparison to identify if two entries are supposed to be the same or not. This is useful when you keep using the same changelog entry but you increase its version number regularly. For instance, you might have 2.3-1~exp1, 2.3-1~exp2, ... until the official release 2.3-1 and they are all the same changelog entry that has evolved over time. --help Show the usage message and exit. --version Show the version and exit. LIMITATIONS
Anything that is not parsed by Dpkg::Changelog is lost during the merge. This might include stuff like vim modelines, comments which were not supposed to be there, etc. INTEGRATION WITH GIT
If you want to use this program to merge Debian changelog files in a git repository, you have first to register a new merge driver in .git/config or ~/.gitconfig: [merge "dpkg-mergechangelogs"] name = debian/changelog merge driver driver = dpkg-mergechangelogs -m %O %A %B %A Then you have to setup the merge attribute for the debian/changelog file either in .gitattributes in the repository itself, or in .git/info/attributes: debian/changelog merge=dpkg-mergechangelogs Debian Project 2011-08-14 dpkg-mergechangelogs(1)
Man Page