From a49641cdd4848d6599f2e4219459e7d8062e4f1f Mon Sep 17 00:00:00 2001 From: ezkrg Date: Mon, 25 Nov 2019 18:11:04 +0100 Subject: add matrix --- Dockerfile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/Dockerfile b/Dockerfile index ad204a0..3cf06a6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,6 +10,7 @@ ARG SIPE=1 ARG DISCORD=1 ARG ROCKETCHAT=1 ARG MASTODON=1 +ARG MATRIX=1 ENV BITLBEE_VERSION 3.6 ENV FACEBOOK_VERSION v1.2.0 @@ -22,6 +23,8 @@ ENV SIPE_VERSION upstream/1.23.3 ENV DISCORD_VERSION aa0bbf2 ENV ROCKETCHAT_VERSION 826990b ENV MASTODON_VERSION 83dee0b +ENV OLM_VERSION 3.1.4 +ENV MATRIX_VERSION 4494ba2 RUN addgroup -g 101 -S bitlbee \ && adduser -u 101 -D -S -G bitlbee bitlbee \ @@ -40,6 +43,8 @@ RUN addgroup -g 101 -S bitlbee \ protobuf-c \ discount-libs \ libpng \ + sqlite \ + http-parser \ bash \ && apk add --no-cache --update --virtual .build-dependencies \ git \ @@ -60,6 +65,8 @@ RUN addgroup -g 101 -S bitlbee \ libxml2-dev \ discount-dev \ libpng-dev \ + sqlite-dev \ + http-parser-dev \ && cd /tmp \ && git clone https://github.com/bitlbee/bitlbee.git \ && cd bitlbee \ @@ -145,6 +152,19 @@ RUN addgroup -g 101 -S bitlbee \ && make \ && make install \ && strip /usr/lib/bitlbee/mastodon.so; fi \ + && if [ ${MATRIX} -eq 1 ]; then cd /tmp \ + && git clone -n https://gitlab.matrix.org/matrix-org/olm.git \ + && cd olm \ + && git checkout ${OLM_VERSION} \ + && make \ + && make install \ + && cd /tmp \ + && git clone -n https://github.com/matrix-org/purple-matrix \ + && cd purple-matrix \ + && git checkout ${MATRIX_VERSION} \ + && make \ + && make install \ + && strip /usr/lib/purple-2/libmatrix.so; fi \ && rm -rf /tmp/* \ && rm -rf /usr/include/bitlbee \ && rm -f /usr/lib/pkgconfig/bitlbee.pc \ -- cgit v1.2.3 From 646575547fd1befa72adb9052b0a4e2c517da050 Mon Sep 17 00:00:00 2001 From: ezkrg Date: Mon, 25 Nov 2019 18:14:25 +0100 Subject: add matrix --- CHANGELOG.md | 3 +++ README.md | 1 + 2 files changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 788984c..d3cb928 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 2019-11-25 18:13:41 ([revmischa](https://github.com/revmischa)) +- add matrix + ## 2019-11-25 13:39:21 ([revmischa](https://github.com/revmischa)) - add mastodon diff --git a/README.md b/README.md index ddee322..6c6078b 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,7 @@ This docker image includes bitlbee with a bunch of useful plugins: - [discord](https://github.com/sm00th/bitlbee-discord) - [rocket.chat](https://bitbucket.org/EionRobb/purple-rocketchat) - [mastodon](https://github.com/kensanata/bitlbee-mastodon) + - [matrix](https://github.com/matrix-org/purple-matrix) The most significant being the [libpurple Slack plugin](https://github.com/dylex/slack-libpurple). As Slack is turning off its IRC gateway on May 15 2018, now is the time to spin up your own docker image and start using bitlbee instead. -- cgit v1.2.3