summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 03:24:54 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 03:24:54 +0000
commit7f129f5a8f509124d9b7d289832862a3145a123c (patch)
tree83e966af75055ef2f7ec34ec160304d459a989ac /bin
parentReleasing progress-linux version 0.85.8-0.0~progress7.99u1. (diff)
downloadsbuild-7f129f5a8f509124d9b7d289832862a3145a123c.tar.xz
sbuild-7f129f5a8f509124d9b7d289832862a3145a123c.zip
Merging upstream version 0.85.9.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/sbuild2
-rwxr-xr-xbin/sbuild-qemu12
2 files changed, 5 insertions, 9 deletions
diff --git a/bin/sbuild b/bin/sbuild
index 4f0db29..106c17e 100755
--- a/bin/sbuild
+++ b/bin/sbuild
@@ -54,7 +54,7 @@ my $conf = Sbuild::Conf::new();
exit 1 if !defined($conf);
my $options = Sbuild::Options->new($conf, "sbuild", "1");
exit 1 if !defined($options);
-check_group_membership() if $conf->get('CHROOT_MODE') eq 'schroot';
+check_group_membership() if $conf->get('CHROOT_MODE') eq 'schroot' && $conf->get('SCHROOT') eq 'schroot';
if (!$conf->get('MAINTAINER_NAME') &&
($conf->get('BIN_NMU') || $conf->get('APPEND_TO_VERSION'))) {
diff --git a/bin/sbuild-qemu b/bin/sbuild-qemu
index 52ab6ff..c7373b8 100755
--- a/bin/sbuild-qemu
+++ b/bin/sbuild-qemu
@@ -40,6 +40,7 @@ IMAGEDIR = os.environ.get(
os.path.join(os.path.expanduser('~'), '.cache', 'sbuild'),
)
+DEFAULT_DIST = 'unstable'
DEFAULT_ARCH = subprocess.check_output(
['dpkg', '--print-architecture'],
text=True,
@@ -118,7 +119,6 @@ def main():
peeker.add_argument(
'--dist',
action='store',
- default='unstable',
)
peeker.add_argument(
'--arch',
@@ -146,14 +146,11 @@ def main():
else:
image = os.path.join(IMAGEDIR, parsed_args.image)
else:
- guessed_name = f'{peeked_args.dist}-autopkgtest-{build_arch}.img'
+ guessed_name = f'{peeked_args.dist or DEFAULT_DIST}-autopkgtest-{build_arch}.img'
if os.path.exists(os.path.abspath(guessed_name)):
- images = os.path.abspath(guessed_name)
+ image = os.path.abspath(guessed_name)
else:
- image = os.path.join(
- IMAGEDIR,
- f'{peeked_args.dist}-autopkgtest-{build_arch}.img',
- )
+ image = os.path.join(IMAGEDIR, guessed_name)
if not os.path.exists(image):
print(f"File {image} does not exist.", file=sys.stderr)
@@ -161,7 +158,6 @@ def main():
args = [
'sbuild',
- '--dist', peeked_args.dist,
'--purge-build=never',
'--purge-deps=never',
'--chroot-mode=autopkgtest',