Add missing grep and awk dependencies for pacman#333
Open
alyssais wants to merge 1 commit intopostmodern:masterfrom
Open
Add missing grep and awk dependencies for pacman#333alyssais wants to merge 1 commit intopostmodern:masterfrom
alyssais wants to merge 1 commit intopostmodern:masterfrom
Conversation
The default Arch Docker image doesn't have these installed.
Reproduction:
FROM archlinux/base
RUN pacman -Syu --noconfirm sudo make && \
curl -Lo ruby-install-master.tar.gz https://github.com/postmodern/ruby-install/archive/master.tar.gz && \
tar -xzvf ruby-install-master.tar.gz && \
cd ruby-install-master && \
make install && \
pacman -Syu --noconfirm grep awk && \
yes | ruby-install ruby
Owner
|
@alyssais should these dependencies be added to any other rubies that compile? |
Owner
|
@alyssais also, is this an issue that should be fixed in the Arch Docker image, or is it intentionally bare bones? |
Author
|
@alyssais should these dependencies be added to any other rubies that compile?
No other ruby that compiles seems to need these. Rubinius seems like it
would, but doesn't compile anyway, I think because Arch's clang is too
new (and it doesn't offer older versions).
@alyssais also, is this an issue that should be fixed in the Arch
Docker image, or is it intentionally bare bones?
I assume it must be intentional -- it would be very difficult for it to
be accidental because of how obvious it is, since almost nothing works. ;)
|
Owner
|
We could add Also, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The default Arch Docker image doesn't have these installed.
Reproduction: