Skip to content

Commit

Permalink
update fish versions 2.0.0 through 2.2.0 (#14)
Browse files Browse the repository at this point in the history
Co-authored-by: Kevin F. Konrad <kevin.konrad@skillbyte.de>
  • Loading branch information
kfkonrad and Kevin F. Konrad authored Feb 22, 2025
1 parent 9af6cf9 commit 06957dd
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions fish/2.0.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.8
FROM alpine:3.10

RUN mkdir /fish
COPY *.patch /fish/
Expand All @@ -9,7 +9,7 @@ RUN apk add --no-cache bc curl g++ git groff libgcc libstdc++ make mdocml-apropo
&& patch -p1 < 0001-Use-strerror-in-uClibc-which-doesn-t-have-sys_errlis.patch \
&& patch -p1 < 0001-Solaris-build-fixes-use-_sys_errs-if-available.patch \
&& autoconf \
&& ./configure \
&& ./configure --build=$(machine=$(uname -m); if [[ $machine == 'aarch64' ]]; then echo arm; else echo $machine; fi) \
&& make \
&& make install \
&& cd / \
Expand Down
2 changes: 1 addition & 1 deletion fish/2.1.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.8
FROM alpine:3.10

RUN mkdir /fish-2.1.0
COPY *.patch /fish-2.1.0/
Expand Down
2 changes: 1 addition & 1 deletion fish/2.1.1/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.8
FROM alpine:3.10

RUN mkdir /fish-2.1.1
COPY *.patch /fish-2.1.1/
Expand Down
2 changes: 1 addition & 1 deletion fish/2.1.2/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.8
FROM alpine:3.10

RUN mkdir /fish-2.1.2
COPY *.patch /fish-2.1.2/
Expand Down
4 changes: 2 additions & 2 deletions fish/2.2.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM alpine:3.8
FROM alpine:3.15

RUN apk add --no-cache bc curl g++ git groff libgcc libstdc++ make mdocml-apropos ncurses ncurses-dev sudo util-linux \
RUN apk add --no-cache bc curl g++ git groff libgcc libstdc++ make mandoc-apropos ncurses ncurses-dev sudo util-linux \
&& curl -Ls https://github.com/fish-shell/fish-shell/releases/download/2.2.0/fish-2.2.0.tar.gz | tar -xzf - \
&& cd fish-2.2.0 \
&& sed -i -e '1i #include <sys/select.h>' iothread.cpp \
Expand Down

0 comments on commit 06957dd

Please sign in to comment.