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
|
# A debhelper build system class for building Python libraries
#
# Copyright: © 2012-2013 Piotr Ożarowski
# TODO:
# * support for dh --parallel
package Debian::Debhelper::Buildsystem::pybuild;
use strict;
use Dpkg::Control;
use Dpkg::Changelog::Debian;
use Debian::Debhelper::Dh_Lib qw(%dh error doit);
use base 'Debian::Debhelper::Buildsystem';
sub DESCRIPTION {
"Python pybuild"
}
sub check_auto_buildable {
my $this=shift;
return doit('pybuild', '--detect', '--really-quiet', '--dir', $this->get_sourcedir());
}
sub new {
my $class=shift;
my $this=$class->SUPER::new(@_);
$this->enforce_in_source_building();
if (!$ENV{'PYBUILD_INTERPRETERS'}) {
if ($ENV{'DEBPYTHON_DEFAULT'}) {
$this->{pydef} = $ENV{'DEBPYTHON_DEFAULT'};}
else {
$this->{pydef} = `pyversions -vd 2>/dev/null`;}
$this->{pydef} =~ s/\s+$//;
if ($ENV{'DEBPYTHON_SUPPORTED'}) {
$this->{pyvers} = $ENV{'DEBPYTHON_SUPPORTED'} =~ s/,/ /r;}
else {
$this->{pyvers} = `pyversions -vr 2>/dev/null`;}
$this->{pyvers} =~ s/\s+$//;
if ($ENV{'DEBPYTHON3_DEFAULT'}) {
$this->{py3def} = $ENV{'DEBPYTHON3_DEFAULT'};}
else {
$this->{py3def} = `py3versions -vd 2>/dev/null`;}
$this->{py3def} =~ s/\s+$//;
if ($ENV{'DEBPYTHON3_SUPPORTED'}) {
$this->{py3vers} = $ENV{'DEBPYTHON3_SUPPORTED'} =~ s/,/ /r;}
else {
$this->{py3vers} = `py3versions -vr 2>/dev/null`;
if ($this->{py3vers} eq "") {
# We swallowed stderr, above
system("py3versions -vr");
die('E: py3versions failed');
}
}
$this->{py3vers} =~ s/\s+$//;
}
return $this;
}
sub configure {
my $this=shift;
foreach my $command ($this->pybuild_commands('configure', @_)) {
doit(@$command);
}
}
sub build {
my $this=shift;
foreach my $command ($this->pybuild_commands('build', @_)) {
doit(@$command);
}
}
sub install {
my $this=shift;
my $destdir=shift;
foreach my $command ($this->pybuild_commands('install', @_)) {
doit(@$command, '--dest-dir', $destdir);
}
}
sub test {
my $this=shift;
foreach my $command ($this->pybuild_commands('test', @_)) {
doit(@$command);
}
}
sub clean {
my $this=shift;
foreach my $command ($this->pybuild_commands('clean', @_)) {
doit(@$command);
}
doit('rm', '-rf', '.pybuild/');
doit('find', '.', '-name', '*.pyc', '-exec', 'rm', '{}', ';');
}
sub pybuild_commands {
my $this=shift;
my $step=shift;
my @options = @_;
my @result;
my $dir = $this->get_sourcedir();
if (not grep {$_ eq '--dir'} @options and $dir ne '.') {
# if --dir is not passed, PYBUILD_DIR can be used
push @options, '--dir', $dir;
}
if (not grep {$_ eq '--verbose'} @options and $dh{QUIET}) {
push @options, '--quiet';
}
my @deps;
if ($ENV{'PYBUILD_INTERPRETERS'}) {
push @result, ['pybuild', "--$step", @options];
}
else {
# get interpreter packages from Build-Depends{,-Indep}:
# NOTE: possible problems with alternative/versioned dependencies
@deps = $this->python_build_dependencies();
# When depends on python{3,}-setuptools-scm, set
# SETUPTOOLS_SCM_PRETEND_VERSION to upstream version
# Without this, setuptools-scm tries to detect current
# version from git tag, which fails for debian tags
# (debian/<version>) sometimes.
if ((grep /python3-(setuptools-scm|hatch-vcs)/, @deps) && !$ENV{'SETUPTOOLS_SCM_PRETEND_VERSION'}) {
my $changelog = Dpkg::Changelog::Debian->new(range => {"count" => 1});
$changelog->load("debian/changelog");
my $version = @{$changelog}[0]->get_version();
$version =~ s/-[^-]+$//; # revision
$version =~ s/^\d+://; # epoch
$version =~ s/~/-/; # ignore tilde versions
$ENV{'SETUPTOOLS_SCM_PRETEND_VERSION'} = $version;
}
# When depends on python{3,}-pbr, set PBR_VERSION to upstream version
# Without this, python-pbr tries to detect current
# version from pkg metadata or git tag, which fails for debian tags
# (debian/<version>) sometimes.
if ((grep /python3-pbr/, @deps) && !$ENV{'PBR_VERSION'}) {
my $changelog = Dpkg::Changelog::Debian->new(range => {"count" => 1});
$changelog->load("debian/changelog");
my $version = @{$changelog}[0]->get_version();
$version =~ s/-[^-]+$//; # revision
$version =~ s/^\d+://; # epoch
$ENV{'PBR_VERSION'} = $version;
}
my @py3opts = ('pybuild', "--$step");
if (($step eq 'test' or $step eq 'autopkgtest') and
$ENV{'PYBUILD_TEST_PYTEST'} ne '1' and
$ENV{'PYBUILD_TEST_NOSE2'} ne '1' and
$ENV{'PYBUILD_TEST_NOSE'} ne '1' and
$ENV{'PYBUILD_TEST_CUSTOM'} ne '1' and
$ENV{'PYBUILD_TEST_TOX'} ne '1') {
if (grep {$_ eq 'tox'} @deps and $ENV{'PYBUILD_TEST_TOX'} ne '0') {
push @py3opts, '--test-tox'}
elsif (grep {$_ eq 'python3-pytest'} @deps and $ENV{'PYBUILD_TEST_PYTEST'} ne '0') {
push @py3opts, '--test-pytest'}
elsif (grep {$_ eq 'python3-nose2'} @deps and $ENV{'PYBUILD_TEST_NOSE2'} ne '0') {
push @py3opts, '--test-nose2'}
elsif (grep {$_ eq 'python3-nose'} @deps and $ENV{'PYBUILD_TEST_NOSE'} ne '0') {
push @py3opts, '--test-nose'}
}
my $py3all = 0;
my $py3alldbg = 0;
my $i = 'python{version}';
# Python 3
if ($this->{py3vers}) {
if (grep {$_ eq 'python3-all' or $_ eq 'python3-all-dev'} @deps) {
$py3all = 1;
push @result, [@py3opts, '-i', $i, '-p', $this->{py3vers}, @options];
}
if (grep {$_ eq 'python3-all-dbg'} @deps) {
$py3alldbg = 1;
push @result, [@py3opts, '-i', "$i-dbg", '-p', $this->{py3vers}, @options];
}
}
if ($this->{py3def}) {
if (not $py3all and grep {$_ eq 'python3' or $_ eq 'python3-dev'} @deps) {
push @result, [@py3opts, '-i', $i, '-p', $this->{py3def}, @options];
}
if (not $py3alldbg and grep {$_ eq 'python3-dbg'} @deps) {
push @result, [@py3opts, '-i', "$i-dbg", '-p', $this->{py3def}, @options];
}
}
# TODO: pythonX.Y → `pybuild -i python{version} -p X.Y`
}
if (!@result) {
use Data::Dumper;
die('E: Please add appropriate interpreter package to Build-Depends, see pybuild(1) for details.' .
'this: ' . Dumper($this) .
'deps: ' . Dumper(\@deps));
}
return @result;
}
sub python_build_dependencies {
my $this=shift;
my @result;
my $c = Dpkg::Control->new(type => CTRL_INFO_SRC);
if ($c->load('debian/control')) {
for my $field (grep /^Build-Depends/, keys %{$c}) {
my $builddeps = $c->{$field};
while ($builddeps =~ /(?:^|[\s,])((pypy|python|tox)[0-9\.]*(-[^\s,\(]+)?)(?:[\s,\(]|$)/g) {
my $dep = $1;
$dep =~ s/:(any|native)$//;
if ($dep) {push @result, $dep};
}
}
}
return @result;
}
1
|