/usr/bin/dep3changelog is in devscripts 2.15.3+deb8u1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 | #!/usr/bin/perl
# dep3changelog: extract a DEP3 patch header from the named file and
# automatically update debian/changelog with a suitable entry
#
# Copyright 2010 Steve Langasek <vorlon@debian.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
# USA
use 5.008; # We're using PerlIO layers
use strict;
use warnings;
use open ':utf8'; # patch headers are required to be UTF-8
# for checking whether user names are valid and making format() behave
use Encode qw/decode_utf8 encode_utf8/;
use Getopt::Long;
use File::Basename;
# And global variables
my $progname = basename($0);
my %env;
sub usage () {
print <<"EOF";
Usage: $progname patch [patch...] [options] [-- [dch options]]
Options:
--help, -h
Display this help message and exit
--version
Display version information
Additional options specified after -- are passed to dch.
EOF
}
sub version () {
print <<"EOF";
This is $progname, from the Debian devscripts package, version 2.15.3+deb8u1
This code is copyright 2010 by Steve Langasek, all rights reserved.
This program comes with ABSOLUTELY NO WARRANTY.
You are free to redistribute this code under the terms of the
GNU General Public License, version 2 or later.
EOF
}
my ($opt_help, $opt_version);
GetOptions("help|h" => \$opt_help,
"version" => \$opt_version,
)
or die "Usage: $progname patch [... patch] [-- [dch options]]\nRun $progname --help for more details\n";
if ($opt_help) { usage; exit 0; }
if ($opt_version) { version; exit 0; }
my @patches;
while (@ARGV && $ARGV[0] !~ /^-/) {
push(@patches,shift(@ARGV));
}
# Check, sanitise and decode these environment variables
check_env_utf8('DEBFULLNAME');
check_env_utf8('NAME');
check_env_utf8('DEBEMAIL');
check_env_utf8('EMAIL');
if (exists $env{'DEBEMAIL'} and $env{'DEBEMAIL'} =~ /^(.*)\s+<(.*)>$/) {
$env{'DEBFULLNAME'} = $1 unless exists $env{'DEBFULLNAME'};
$env{'DEBEMAIL'} = $2;
}
if (! exists $env{'DEBEMAIL'} or ! exists $env{'DEBFULLNAME'}) {
if (exists $env{'EMAIL'} and $env{'EMAIL'} =~ /^(.*)\s+<(.*)>$/) {
$env{'DEBFULLNAME'} = $1 unless exists $env{'DEBFULLNAME'};
$env{'EMAIL'} = $2;
}
}
my $fullname = '';
my $email = '';
if (exists $env{'DEBFULLNAME'}) {
$fullname = $env{'DEBFULLNAME'};
} elsif (exists $env{'NAME'}) {
$fullname = $env{'NAME'};
} else {
my @pw = getpwuid $<;
if ($pw[6]) {
if (my $pw = decode_utf8($pw[6])) {
$pw =~ s/,.*//;
$fullname = $pw;
} else {
warn "$progname warning: passwd full name field for uid $<\nis not UTF-8 encoded; ignoring\n";
}
}
}
if (exists $env{'DEBEMAIL'}) {
$email = $env{'DEBEMAIL'};
} elsif (exists $env{'EMAIL'}) {
$email = $env{'EMAIL'};
}
for my $patch (@patches) {
my $shebang = 0;
my $dpatch = 0;
# TODO: more than one debian or launchpad bug in a patch?
my ($description,$author,$debbug,$lpbug,$origin);
next unless (open PATCH, $patch);
while (<PATCH>) {
# first line only
if (!$shebang) {
$shebang = 1;
if (/^#!/) {
$dpatch = $shebang = 1;
next;
}
}
last if (/^---/ || /^\s*$/);
chomp;
# only if there was a shebang do we strip comment chars
s/^# // if ($dpatch);
# fixme: this should only apply to the description field.
next if (/^ /);
if (/^(Description|Subject):\s+(.*)\s*/) {
$description = $2;
} elsif (/^(Author|From):\s+(.*)\s*/) {
$author = $2;
} elsif (/^Origin:\s+(.*)\s*/) {
$origin = $1;
} elsif (/^bug-debian:\s+http:\/\/bugs\.debian\.org\/([0-9]+)\s*/i) {
$debbug = $1;
} elsif (/^bug-ubuntu:\s+https:\/\/.*launchpad\.net\/.*\/([0-9]+)\s*/i) {
$lpbug = $1;
}
}
close PATCH;
if (!$description || (!$origin && !$author)) {
warn "$patch: Invalid DEP3 header\n";
next;
}
my $changelog = "$patch: $description";
$changelog .= '.' unless ($changelog =~ /\.$/);
if ($author && $author ne $fullname && $author ne "$fullname <$email>")
{
$changelog .= " Thanks to $author.";
}
if ($debbug || $lpbug) {
$changelog .= ' Closes';
$changelog .= ": #$debbug" if ($debbug);
$changelog .= "," if ($debbug && $lpbug);
$changelog .= " LP: #$lpbug" if ($lpbug);
$changelog .= '.';
}
system('dch',$changelog,@ARGV);
}
# Is the environment variable valid or not?
sub check_env_utf8 {
my $envvar = $_[0];
if (exists $ENV{$envvar} and $ENV{$envvar} ne '') {
if (! decode_utf8($ENV{$envvar})) {
warn "$progname warning: environment variable $envvar not UTF-8 encoded; ignoring\n";
} else {
$env{$envvar} = decode_utf8($ENV{$envvar});
}
}
}
|