Skip to content

Commit 203d731

Browse files
authored
Merge pull request #2 from linuxserver/3.15
3.15
2 parents 523a543 + 132ad85 commit 203d731

File tree

9 files changed

+11
-13
lines changed

9 files changed

+11
-13
lines changed

.github/workflows/external_trigger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fi
1919
echo "**** External trigger running off of master branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_PIDGIN_MASTER\". ****"
2020
echo "**** Retrieving external version ****"
21-
EXT_RELEASE=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.14/community/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
21+
EXT_RELEASE=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.15/community/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
2222
&& awk '/^P:'"pidgin"'$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://')
2323
if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then
2424
echo "**** Can't retrieve external version, exiting ****"

Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# build stage
2-
FROM lsiobase/alpine:3.14 as plugins
2+
FROM lsiobase/alpine:3.15 as plugins
33

44
RUN \
55
echo "**** install dev deps ****" && \
@@ -117,13 +117,12 @@ RUN \
117117
apk add --no-cache --virtual=build-dependencies \
118118
curl && \
119119
if [ -z ${PIDGIN_VERSION+x} ]; then \
120-
PIDGIN_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.14/community/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
120+
PIDGIN_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.15/community/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
121121
&& awk '/^P:pidgin$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://'); \
122122
fi && \
123123
apk add --no-cache \
124124
discount \
125125
firefox-esr \
126-
leafpad \
127126
libpurple-bonjour \
128127
libpurple-xmpp \
129128
libwebp \

Dockerfile.aarch64

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,13 +117,12 @@ RUN \
117117
apk add --no-cache --virtual=build-dependencies \
118118
curl && \
119119
if [ -z ${PIDGIN_VERSION+x} ]; then \
120-
PIDGIN_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.14/community/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
120+
PIDGIN_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.15/community/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
121121
&& awk '/^P:pidgin$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://'); \
122122
fi && \
123123
apk add --no-cache \
124124
discount \
125125
firefox-esr \
126-
leafpad \
127126
libpurple-bonjour \
128127
libpurple-xmpp \
129128
libwebp \

Dockerfile.armhf

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,13 +117,12 @@ RUN \
117117
apk add --no-cache --virtual=build-dependencies \
118118
curl && \
119119
if [ -z ${PIDGIN_VERSION+x} ]; then \
120-
PIDGIN_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.14/community/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
120+
PIDGIN_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.15/community/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp \
121121
&& awk '/^P:pidgin$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://'); \
122122
fi && \
123123
apk add --no-cache \
124124
discount \
125125
firefox-esr \
126-
leafpad \
127126
libpurple-bonjour \
128127
libpurple-xmpp \
129128
libwebp \

Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ pipeline {
2525
DEV_DOCKERHUB_IMAGE = 'lsiodev/pidgin'
2626
PR_DOCKERHUB_IMAGE = 'lspipepr/pidgin'
2727
DIST_IMAGE = 'alpine'
28-
DIST_TAG = '3.14'
29-
DIST_REPO = 'http://dl-cdn.alpinelinux.org/alpine/v3.14/community/'
28+
DIST_TAG = '3.15'
29+
DIST_REPO = 'http://dl-cdn.alpinelinux.org/alpine/v3.15/community/'
3030
DIST_REPO_PACKAGES = 'pidgin'
3131
MULTIARCH = 'true'
3232
CI = 'true'

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -248,5 +248,6 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
248248

249249
## Versions
250250

251+
* **23.12.21:** - Rebase to Alpine 3.15.
251252
* **26.09.21:** - Rebase to Alpine 3.14.
252253
* **14.05.21:** - Initial release.

jenkins-vars.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ repo_vars:
1515
- DEV_DOCKERHUB_IMAGE = 'lsiodev/pidgin'
1616
- PR_DOCKERHUB_IMAGE = 'lspipepr/pidgin'
1717
- DIST_IMAGE = 'alpine'
18-
- DIST_TAG = '3.14'
19-
- DIST_REPO = 'http://dl-cdn.alpinelinux.org/alpine/v3.14/community/'
18+
- DIST_TAG = '3.15'
19+
- DIST_REPO = 'http://dl-cdn.alpinelinux.org/alpine/v3.15/community/'
2020
- DIST_REPO_PACKAGES = 'pidgin'
2121
- MULTIARCH = 'true'
2222
- CI = 'true'

readme-vars.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,5 +64,6 @@ app_setup_block: |
6464
6565
# changelog
6666
changelogs:
67+
- { date: "23.12.21:", desc: "Rebase to Alpine 3.15." }
6768
- { date: "26.09.21:", desc: "Rebase to Alpine 3.14." }
6869
- { date: "14.05.21:", desc: "Initial release." }

root/defaults/menu.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
<openbox_menu xmlns="http://openbox.org/3.4/menu">
33
<menu id="root-menu" label="MENU">
44
<item label="xterm" icon="/usr/share/pixmaps/xterm-color_48x48.xpm"><action name="Execute"><command>/usr/bin/xterm</command></action></item>
5-
<item label="Leafpad" icon="/usr/share/icons/hicolor/32x32/apps/leafpad.png"><action name="Execute"><command>/usr/bin/leafpad</command></action></item>
65
<item label="Firefox" icon="/usr/share/icons/hicolor/48x48/apps/firefox.png"><action name="Execute"><command>/usr/bin/firefox</command></action></item>
76
<item label="Reload OB"><action name="Reconfigure"/></item>
87
</menu>

0 commit comments

Comments
 (0)