12 Commits

Author SHA1 Message Date
ezkrg
de3d1ebc7c update changelog 2020-04-07 15:33:31 +02:00
ezkrg
f7d5ec7109 upgrade matrix version 2020-04-06 10:19:31 +02:00
ezkrg
58d60ca91e upgrade mastodon version 2020-04-06 10:16:46 +02:00
ezkrg
9ac2d40fbb upgrade discord version 2020-04-06 07:54:04 +02:00
ezkrg
76ccab317c update changelog 2020-04-06 07:38:52 +02:00
ezkrg
4adc3ae460 add flex 2020-04-05 14:01:58 +02:00
ezkrg
5e208e231e fix clone dir name 2020-04-05 13:21:43 +02:00
ezkrg
931afdc586 upgrade sipe version and change clone url 2020-04-05 13:03:34 +02:00
ezkrg
2a98d409b1 upgrade slack version 2020-04-05 11:53:22 +02:00
ezkrg
9ca7f4958d upgrade telegram version 2020-04-05 10:58:00 +02:00
ezkrg
04c678870f sign drone config 2020-01-13 12:53:28 +01:00
ezkrg
4befd197a9 add dron config 2020-01-13 12:48:08 +01:00
3 changed files with 58 additions and 9 deletions

37
.drone.yml Normal file
View File

@@ -0,0 +1,37 @@
---
kind: pipeline
type: docker
name: default
steps:
- name: test
image: plugins/docker
settings:
username:
from_secret: DHU
password:
from_secret: DHP
repo: ezkrg/bitlbee-libpurple
tags: test
when:
branch:
- master
- name: release
image: plugins/docker
settings:
username:
from_secret: DHU
password:
from_secret: DHP
repo: ezkrg/bitlbee-libpurple
tags:
- ${DRONE_TAG}
- latest
when:
event:
- tag
---
kind: signature
hmac: fe1d9f29429b7c966b53377ced1af268d08ddd754b535fe41a930b2a5ee44744
...

View File

@@ -1,5 +1,16 @@
# Changelog
## 2020-04-06 10:19:50
- upgrade discord version from aa0bbf2 to 0.4.3
- upgrade mastodon version from 83dee0b to v1.4.4
- upgrade matrix version from 4494ba2 to 1d23385
## 2020-04-05 14:01:52
- upgrade telegram version from b101bbb to 1.4.3
- upgrade slack version from 8acc4eb to e6e5427
- upgrade sipe version from upstream/1.23.3 to 1.25.0
- change sipe clone url
## 2019-11-25 18:13:41 ([revmischa](https://github.com/revmischa))
- add matrix

View File

@@ -103,7 +103,7 @@ RUN if [ ${SKYPEWEB} -eq 1 ]; then cd /tmp \
&& apk del .build-dependencies; fi
ARG TELEGRAM=1
ARG TELEGRAM_VERSION=b101bbb
ARG TELEGRAM_VERSION=v1.4.3
RUN if [ ${TELEGRAM} -eq 1 ]; then cd /tmp \
&& apk add --no-cache --update \
@@ -152,7 +152,7 @@ RUN if [ ${HANGOUTS} -eq 1 ]; then cd /tmp \
&& apk del .build-dependencies; fi
ARG SLACK=1
ARG SLACK_VERSION=8acc4eb
ARG SLACK_VERSION=e6e5427
RUN if [ ${SLACK} -eq 1 ]; then cd /tmp \
&& apk add --no-cache --update --virtual .build-dependencies \
@@ -170,7 +170,7 @@ RUN if [ ${SLACK} -eq 1 ]; then cd /tmp \
&& apk del .build-dependencies; fi
ARG SIPE=1
ARG SIPE_VERSION=upstream/1.23.3
ARG SIPE_VERSION=1.25.0
RUN if [ ${SIPE} -eq 1 ]; then cd /tmp \
&& apk add --no-cache --update --virtual .build-dependencies \
@@ -184,8 +184,9 @@ RUN if [ ${SIPE} -eq 1 ]; then cd /tmp \
openssl-dev \
libxml2-dev \
pidgin-dev \
&& git clone -n https://github.com/tieto/sipe.git \
&& cd sipe \
flex \
&& git clone -n https://repo.or.cz/siplcs.git \
&& cd siplcs \
&& git checkout ${SIPE_VERSION} \
&& ./autogen.sh \
&& ./configure --build=x86_64-alpine-linux-musl --host=x86_64-alpine-linux-musl --prefix=/usr \
@@ -196,7 +197,7 @@ RUN if [ ${SIPE} -eq 1 ]; then cd /tmp \
&& apk del .build-dependencies; fi
ARG DISCORD=1
ARG DISCORD_VERSION=aa0bbf2
ARG DISCORD_VERSION=0.4.3
RUN if [ ${DISCORD} -eq 1 ]; then cd /tmp \
&& apk add --no-cache --update --virtual .build-dependencies \
@@ -239,7 +240,7 @@ RUN if [ ${ROCKETCHAT} -eq 1 ]; then cd /tmp \
&& apk del .build-dependencies; fi
ARG MASTODON=1
ARG MASTODON_VERSION=83dee0b
ARG MASTODON_VERSION=v1.4.4
RUN if [ ${MASTODON} -eq 1 ]; then cd /tmp \
&& apk add --no-cache --update --virtual .build-dependencies \
@@ -252,7 +253,7 @@ RUN if [ ${MASTODON} -eq 1 ]; then cd /tmp \
&& git clone -n https://github.com/kensanata/bitlbee-mastodon \
&& cd bitlbee-mastodon \
&& git checkout ${MASTODON_VERSION} \
&& ./autogen.sh \
&& sh ./autogen.sh \
&& ./configure --build=x86_64-alpine-linux-musl --host=x86_64-alpine-linux-musl \
&& make \
&& make install \
@@ -262,7 +263,7 @@ RUN if [ ${MASTODON} -eq 1 ]; then cd /tmp \
ARG MATRIX=1
ARG OLM_VERSION=3.1.4
ARG MATRIX_VERSION=4494ba2
ARG MATRIX_VERSION=1d23385
RUN if [ ${MATRIX} -eq 1 ]; then cd /tmp \
&& apk add --no-cache --update \