Age | Commit message (Collapse) | Author |
|
Instead of writing a complex shell script in a limited sub-language of
shell, call out to ourselves and implement the build functionality in
Python.
|
|
|
|
Fixes: a5d4cfd4b996 ("mmdebstrap: don't keep downloaded .deb files")
|
|
Since we delete the chroot anyway, there is no need to keep the .debs
for the build.
|
|
By doing the unpack before the satisfying build dependencies, we can
point apt at the extracted source package and stop talking about the
.dsc file. It also means that we can clean those artifacts earlier.
|
|
|
|
When the package does not say "Rules-Requires-Root: no", we need a root
command and dpkg-buildpackage defaults to fakeroot. Unfortunately, we
cannot tell whether the packages requires fakeroot, because the stanza
is not copied to the .dsc. Unconditionally install fakeroot then.
|
|
Using a pipe enables streaming of logs, which would not be possible with
a regular file output.
|
|
|
|
|
|
|
|
|
|
Proof-of-concept status. Some things work.
|