Skip to content

Commit 576f2ba

Browse files
authored
Merge pull request #10 from linuxserver/noble
rebase to noble, install qt deps
2 parents ca0f12a + a5310b6 commit 576f2ba

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

.github/workflows/external_trigger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY
3030
echo "> External trigger running off of master branch. To disable this trigger, add \`mediaelch_master\` into the Github organizational variable \`SKIP_EXTERNAL_TRIGGER\`." >> $GITHUB_STEP_SUMMARY
3131
printf "\n## Retrieving external version\n\n" >> $GITHUB_STEP_SUMMARY
32-
EXT_RELEASE=$(curl -sX GET http://ppa.launchpad.net/mediaelch/mediaelch-stable/ubuntu/dists/jammy/main/binary-amd64/Packages.gz | gunzip |grep -A 7 -m 1 'Package: mediaelch' | awk -F ': ' '/Version/{print $2;exit}' | sed 's/~jammy//g')
32+
EXT_RELEASE=$(curl -sX GET http://ppa.launchpad.net/mediaelch/mediaelch-stable/ubuntu/dists/noble/main/binary-amd64/Packages.gz | gunzip |grep -A 7 -m 1 'Package: mediaelch' | awk -F ': ' '/Version/{print $2;exit}')
3333
echo "Type is \`custom_version_command\`" >> $GITHUB_STEP_SUMMARY
3434
if grep -q "^mediaelch_master_${EXT_RELEASE}" <<< "${SKIP_EXTERNAL_TRIGGER}"; then
3535
echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY

Dockerfile

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1
22

3-
FROM ghcr.io/linuxserver/baseimage-selkies:debianbookworm
3+
FROM ghcr.io/linuxserver/baseimage-selkies:ubuntunoble
44

55
# set version label
66
ARG BUILD_DATE
@@ -18,16 +18,14 @@ RUN \
1818
/usr/share/selkies/www/icon.png \
1919
https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/mediaelch-logo.png && \
2020
echo "**** install packages ****" && \
21-
curl -fsSL "https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x604E3CBB4DEF35FBD9D4928220B2163BC4FD788F" | gpg --dearmor | tee /usr/share/keyrings/mediaelch.gpg >/dev/null && \
22-
echo "deb [aarch=amd64 signed-by=/usr/share/keyrings/mediaelch.gpg] http://ppa.launchpad.net/mediaelch/mediaelch-stable/ubuntu jammy main" > /etc/apt/sources.list.d/mediaelch.list && \
23-
if [ -z ${MEDIAELCH_VERSION+x} ]; then \
24-
MEDIAELCH="mediaelch"; \
25-
else \
26-
MEDIAELCH="mediaelch=${MEDIAELCH_VERSION}~jammy"; \
27-
fi && \
21+
add-apt-repository ppa:mediaelch/mediaelch-stable && \
2822
apt-get update && \
2923
apt-get install -y --no-install-recommends \
30-
${MEDIAELCH} && \
24+
libqt6multimedia6 \
25+
libqt6sql6-sqlite \
26+
libqt6svg6 \
27+
"mediaelch${MEDIAELCH_VERSION:+=$MEDIAELCH_VERSION}" \
28+
qt6-image-formats-plugins && \
3129
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
3230
echo "**** cleanup ****" && \
3331
apt-get autoclean && \

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ pipeline {
147147
steps{
148148
script{
149149
env.EXT_RELEASE = sh(
150-
script: ''' curl -sX GET http://ppa.launchpad.net/mediaelch/mediaelch-stable/ubuntu/dists/jammy/main/binary-amd64/Packages.gz | gunzip |grep -A 7 -m 1 'Package: mediaelch' | awk -F ': ' '/Version/{print $2;exit}' | sed 's/~jammy//g' ''',
150+
script: ''' curl -sX GET http://ppa.launchpad.net/mediaelch/mediaelch-stable/ubuntu/dists/noble/main/binary-amd64/Packages.gz | gunzip |grep -A 7 -m 1 'Package: mediaelch' | awk -F ': ' '/Version/{print $2;exit}' ''',
151151
returnStdout: true).trim()
152152
env.RELEASE_LINK = 'custom_command'
153153
}

README.md

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

426426
## Versions
427427

428+
* **14.08.25:** - Rebase to noble, ingest latest stable version, install qt deps.
428429
* **12.07.25:** - Rebase to Selkies, HTTPS IS NOW REQUIRED.
429430
* **10.02.24:** - Update Readme with new env vars and ingest proper PWA icon.
430431
* **07.12.23:** - Initial release.

jenkins-vars.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# jenkins variables
44
project_name: docker-mediaelch
55
external_type: na
6-
custom_version_command: "curl -sX GET http://ppa.launchpad.net/mediaelch/mediaelch-stable/ubuntu/dists/jammy/main/binary-amd64/Packages.gz | gunzip |grep -A 7 -m 1 'Package: mediaelch' | awk -F ': ' '/Version/{print $2;exit}' | sed 's/~jammy//g'"
6+
custom_version_command: "curl -sX GET http://ppa.launchpad.net/mediaelch/mediaelch-stable/ubuntu/dists/noble/main/binary-amd64/Packages.gz | gunzip |grep -A 7 -m 1 'Package: mediaelch' | awk -F ': ' '/Version/{print $2;exit}'"
77
release_type: stable
88
release_tag: latest
99
ls_branch: master

readme-vars.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ init_diagram: |
9999
"mediaelch:latest" <- Base Images
100100
# changelog
101101
changelogs:
102+
- {date: "14.08.25:", desc: "Rebase to noble, ingest latest stable version, install qt deps."}
102103
- {date: "12.07.25:", desc: "Rebase to Selkies, HTTPS IS NOW REQUIRED."}
103104
- {date: "10.02.24:", desc: "Update Readme with new env vars and ingest proper PWA icon."}
104105
- {date: "07.12.23:", desc: "Initial release."}

0 commit comments

Comments
 (0)