-
Notifications
You must be signed in to change notification settings - Fork 319
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add missing packages on arch #377
Conversation
/* test compression */ XZ compression finished (38280 -> 11756 bytes, 30.7%) sh: diff: command not found Assertion 'system(cmd) == 0' failed at src/journal/test-compress.c:198, function test_compress_stream(). Aborting. The journal compression test shells out to diff, so include diffutils as a BuildPackage on Arch. Remaining fixes in systemd/mkosi#377
dcb817d
to
9a1f37d
Compare
@marcosfrm Thanks! Look better now? |
9a1f37d
to
b0465f2
Compare
Just this morning I thought anout the Some comments:
packages = { "base" } What do you think @marcosfrm? |
I agree. |
I can confirm that this change to the proposed patch works. |
Lgtm. Could any of you update this PR? |
Arch has changed its base package group to a meta package that pulls in several other packages as dependencies. It is slimmer than the package group was before and necessary to request support, so we can (and should) install it in full. https://www.archlinux.org/news/base-group-replaced-by-mandatory-base-package-manual-intervention-required/ Original-Author: @keur Closes: systemd#377
I've reworked the patch, since @craftyguy said it works, and opened #381, since I obviously can't edit this PR. |
Closing in favor of #381 Sorry I didn't get back to you guys. Was in the wilderness with no Internet. |
/* test compression */ XZ compression finished (38280 -> 11756 bytes, 30.7%) sh: diff: command not found Assertion 'system(cmd) == 0' failed at src/journal/test-compress.c:198, function test_compress_stream(). Aborting. The journal compression test shells out to diff, so include diffutils as a BuildPackage on Arch. Remaining fixes in systemd/mkosi#377 (cherry picked from commit 9e05564)
With Bootable=no mkosi will fail on arch with the following errors.
Generating locales...
/usr/bin/locale-gen: line 33: sed: command not found
.UTF-8/usr/bin/locale-gen: line 35: sed: command not found
.../usr/bin/locale-gen: line 38: sed: command not found
/tmp/alpm_PENqPM/.INSTALL: line 3: chmod: command not found
/tmp/alpm_PENqPM/.INSTALL: line 4: chmod: command not found
error: command failed to execute correctly
The coreutils package installs chmod, and the sed package installs sed.