From 91c70437272053436a60396b57f188da8531ad9c Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Thu, 9 Dec 2021 15:07:17 -0800 Subject: [PATCH] Install Limnoria from upstream We had two patches that we were carrying locally via iwienands' fork: https://github.com/ProgVal/Limnoria/pull/1464 https://github.com/ProgVal/Limnoria/pull/1473 Both appear to have made it into upstream. Lets go ahead and install directly from the source. We checkout the most recent tag of master which seems to be how they checkpoint things. Their most recent proper release tags are more than a decade old. They have decent CI though so I expect checking out the checkpoint tag will work fine. Change-Id: I9fcf17a148a27c2bbdd119961e9df5b38bd6b396 --- docker/ircbot/Dockerfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/docker/ircbot/Dockerfile b/docker/ircbot/Dockerfile index a4cb1438da..b85d7bc2f4 100644 --- a/docker/ircbot/Dockerfile +++ b/docker/ircbot/Dockerfile @@ -19,11 +19,7 @@ ARG ZUUL_SIBLINGS="" RUN apt-get update \ && apt-get -y install git -#NOTE(ianw) : 2021-05-31 - only until changes integrated upstream -# https://github.com/ProgVal/Limnoria/pull/1464 -# https://github.com/ProgVal/Limnoria/pull/1473 -#RUN git clone https://github.com/ProgVal/Limnoria /tmp/src -RUN git clone -b setuptools https://github.com/ianw/Limnoria /tmp/src +RUN git clone -b master-2022-07-03 https://github.com/ProgVal/Limnoria /tmp/src COPY . /tmp/src