/usr/bin/transition-check 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 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 | #!/usr/bin/perl -w
# transition-check: Check whether a given source package is involved
# in a current transition for which uploads have been blocked by the
# Debian release team
#
# Copyright 2008 Adam D. Barratt
#
# 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.
=head1 NAME
transition-check - check a package list for involvement in transitions
=head1 SYNOPSIS
B<transition-check> B<--help>|B<--version>
B<transition-check> [B<-f>|B<--filename=>I<FILENAME>] [I<source package list>]
=head1 DESCRIPTION
B<transition-check> checks whether any of the listed source packages
are involved in a transition for which uploads to unstable are currently
blocked.
If neither a filename nor a list of packages is supplied, B<transition-check>
will use the source package name from I<debian/control>.
=head1 OPTIONS
=over 4
=item B<-f>, B<--filename=>I<filename>
Read a source package name from I<filename>, which should be a Debian
package control file or I<.changes> file, and add that package to the list
of packages to check.
=back
=head1 EXIT STATUS
The exit status indicates whether any of the packages examined were found to
be involved in a transition.
=over 4
=item 0Z<>
Either B<--help> or B<--version> was used, or none of the packages examined
was involved in a transition.
=item 1Z<>
At least one package examined is involved in a current transition.
=back
=head1 LICENSE
This code is copyright by Adam D. Barratt <I<adam@adam-barratt.org.uk>>,
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.
=head1 AUTHOR
Adam D. Barratt <I<adam@adam-barratt.org.uk>>
=cut
use warnings;
use strict;
use Getopt::Long qw(:config gnu_getopt);
use File::Basename;
my $progname = basename($0);
my ($opt_help, $opt_version, @opt_filename);
GetOptions("help|h" => \$opt_help,
"version|v" => \$opt_version,
"filename|f=s" => sub {push (@opt_filename, $_[1]);},
)
or die "Usage: $progname [options] source_package_list\nRun $progname --help for more details\n";
if ($opt_help) { help(); exit 0; }
if ($opt_version) { version(); exit 0; }
my ($lwp_broken, $yaml_broken);
my $ua;
sub have_lwp() {
return ($lwp_broken ? 0 : 1) if defined $lwp_broken;
eval {
require LWP;
require LWP::UserAgent;
};
if ($@) {
if ($@ =~ m%^Can\'t locate LWP%) {
$lwp_broken="the libwww-perl package is not installed";
} else {
$lwp_broken="couldn't load LWP::UserAgent: $@";
}
}
else { $lwp_broken=''; }
return $lwp_broken ? 0 : 1;
}
sub have_yaml() {
return ($yaml_broken ? 0 : 1) if defined $yaml_broken;
eval {
require YAML::Syck;
};
if ($@) {
if ($@ =~ m%^Can\'t locate YAML%) {
$yaml_broken="the libyaml-syck-perl package is not installed";
} else {
$yaml_broken="couldn't load YAML::Syck: $@";
}
}
else { $yaml_broken=''; }
return $yaml_broken ? 0 : 1;
}
sub init_agent {
$ua = new LWP::UserAgent; # we create a global UserAgent object
$ua->agent("LWP::UserAgent/Devscripts");
$ua->env_proxy;
}
if (@opt_filename or ! @ARGV) {
@opt_filename = ("debian/control") unless @opt_filename;
foreach my $filename (@opt_filename) {
my $message;
if (! @ARGV) {
$message = "No package list supplied and unable";
} else {
$message = "Unable";
}
$message .= " to open $filename";
open FILE, $filename or die "$progname: $message: $!\n";
while (<FILE>) {
if (/^(?:Source): (.*)/) {
push (@ARGV, $1);
last;
}
}
close FILE;
}
}
die "$progname: Unable to retrieve transition information: $lwp_broken\n"
unless have_lwp;
init_agent() unless $ua;
my $request = HTTP::Request->new('GET', 'http://ftp-master.debian.org/testing/hints/transitions.yaml');
my $response = $ua->request($request);
if (!$response->is_success) {
die "$progname: Failed to retrieve transitions list: $!\n";
}
die "$progname: Unable to parse transition information: $yaml_broken\n"
unless have_yaml();
my $yaml = YAML::Syck::Load($response->content);
my $packagelist = join("|", map {qq/\Q$_\E/} @ARGV);
my $found = 0;
foreach my $transition(keys(%{$yaml})) {
my $data = $yaml->{$transition};
my @affected = grep /^($packagelist)$/, @{$data->{packages}};
if (@affected) {
print "\n\n" if $found;
$found = 1;
print "The following packages are involved in the $transition transition:\n";
print map {qq( - $_\n)} @affected;
print "\nDetails of this transition:\n"
. " - Reason: $data->{reason}\n"
. " - Release team contact: $data->{rm}\n";
}
}
if (!$found) {
print "$progname: No packages examined are currently blocked\n";
}
exit $found;
sub help {
print <<"EOF";
Usage: $progname [options] source_package_list
Valid options are:
--help, -h Display this message
--version, -v Display version and copyright info
--filename, -f Read source package information from the specified
filename (which should be a Debian package control
file or changes file)
EOF
}
sub version {
print <<"EOF";
This is $progname, from the Debian devscripts package, version 2.15.3+deb8u1
Copyright (C) 2008 by Adam D. Barratt <adam\@adam-barratt.org.uk>,
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 (at your option) any
later version.
EOF
}
|