22 Commits

Author SHA1 Message Date
29043fedc1 Add wayland-dev as slint build dependency 2026-04-17 16:30:40 +02:00
6462c4e25d Update submodules to 236bbc4c 2026-04-17 16:26:59 +02:00
6899a71899 Add early-boot-blocking.service 2026-04-17 16:24:55 +02:00
3ff5cf83fc APKBUILD fixes 2026-04-12 12:52:08 +02:00
84c30e3130 Update submodule to 4470547b 2026-04-10 11:52:07 +02:00
4e232c39be Include install-scripts 2026-04-09 22:45:05 +02:00
c5383fd2c9 Work on making daemon APKBUILD follow best practices 2026-04-09 21:15:52 +02:00
374eeba758 Bump submodules to 7cd3cfe2 2026-04-09 15:32:54 +02:00
0a93fe0370 Bump submodules to 27f4b024 2026-03-31 17:26:34 +02:00
b13eac38f9 Update submodules 2026-03-30 14:52:10 +02:00
Joakim Hulthe
c92f4fbf84 Mount CARGO_HOME into build container 2026-03-30 14:46:21 +02:00
7650a60fa6 mullvad-vpn-slint: Package .desktop and icons 2026-03-30 14:38:10 +02:00
Joakim Hulthe
7aa41d7b67 Copy debian install scripts 2026-03-30 10:20:45 +02:00
Joakim Hulthe
6deccfa667 Add submodules 2026-03-30 10:20:45 +02:00
Joakim Hulthe
047680a1f3 mullvad-vpn-daemon: Add systemd subpkg 2026-03-30 10:20:45 +02:00
Joakim Hulthe
31c74fd178 mullvad-vpn-slint: Enable tray-icon feature 2026-03-30 10:20:45 +02:00
Joakim Hulthe
cf6a072724 Add APKBUILD for mullvad-vpn-daemon 2026-03-30 10:20:45 +02:00
Joakim Hulthe
89c6da8e8b Add docker-build.sh 2026-03-30 10:20:45 +02:00
Joakim Hulthe
f2928898bf APKBUILD: small fixes 2026-03-30 10:20:45 +02:00
Joakim Hulthe
2f47541f62 mullvad-vpn-slint: Remove unnecessary dependencies 2026-03-30 10:20:45 +02:00
Joakim Hulthe
a57cea5bcb Add mullvad-vpn-slint APKBUILD 2026-03-30 10:20:45 +02:00
Joakim Hulthe
d4e1042d3c Add scripts to build alpine packages with podman 2026-03-30 10:20:43 +02:00
14 changed files with 261 additions and 118 deletions

8
.gitmodules vendored Normal file
View File

@@ -0,0 +1,8 @@
[submodule "mullvad-vpn-daemon/mullvadvpn-app"]
path = mullvad-vpn-daemon/mullvadvpn-app
url = git@github.com:mullvad/mullvadvpn-app-priv.git
branch = poc-slint
[submodule "mullvad-vpn-slint/mullvadvpn-app"]
path = mullvad-vpn-slint/mullvadvpn-app
url = git@github.com:mullvad/mullvadvpn-app-priv.git
branch = poc-slint

View File

@@ -1,57 +1,21 @@
FROM alpine:3.21
FROM alpine:edge
# Install build dependencies
# TODO: trim dependencies?
RUN apk update && apk add \
build-base abuild \
rustup \
build-base \
musl-dev \
gcc \
cmake \
make \
pkgconfig \
perl \
python3 \
curl \
abuild \
git \
llvm \
clang \
clang-libclang \
rust \
cargo-auditable \
pkgconfig \
protobuf-dev \
libc-dev \
linux-headers \
freetype-dev \
freetype-static \
protobuf-dev \
libmnl libmnl-dev \
libnftnl libnftnl-dev \
dbus dbus-dev \
fontconfig-dev \
fontconfig-static \
bzip2-dev \
bzip2-static \
brotli-dev \
brotli-static \
expat-dev \
expat-static \
libx11-dev \
libxcursor-dev \
libxkbcommon-dev \
libxkbcommon-static \
wayland-dev \
wayland-libs-client \
wayland-libs-server \
wayland-static \
openssl-dev \
openssl-libs-static \
zlib-dev \
zlib-static \
libpng-dev \
libpng-static \
libwebp-dev \
libwebp-static \
tiff-dev \
libjpeg-turbo-dev \
libjpeg-turbo-static
RUN rustup-init -y --default-toolchain stable
wayland-dev
# Set pkg-config to use static libraries
ENV PKG_CONFIG_ALLOW_STATIC=1

View File

@@ -4,7 +4,7 @@
1. Install `abuild`
2. Create keys: `abuild-keygen`
The keys will end up in ~/.abuild/, and will be mounted into the build container by podma, and will be mounted into the build container.
The keys will end up in ~/.abuild/, and will be mounted into the build container.
3. Remember to keep keys around.
## Building

26
docker-build.sh Executable file
View File

@@ -0,0 +1,26 @@
#!/bin/sh
set -ex
cd "$(dirname "$0")"
package="$1"
builder_image="mullvad-slint-musl-builder"
cargo_home="${CARGO_HOME:-$HOME/.cargo}"
. "$HOME/.abuild/abuild.conf"
docker build . -f Dockerfile -t "$builder_image"
docker run --rm \
-v "./$package":/build \
-v ./abuild.conf:/root/.abuild/abuild.conf:ro \
-v "$PACKAGER_PRIVKEY":/key.rsa:ro \
-v "$PACKAGER_PRIVKEY.pub":/key.rsa.pub:ro \
-v "$PACKAGER_PRIVKEY.pub":/etc/apk/keys/key.rsa.pub:ro \
-v ./packages:/root/packages \
-v "$cargo_home":/cargo-home \
-e "CARGO_HOME=/cargo-home" \
-v ./target:/cargo-target \
-e "CARGO_TARGET_DIR=/cargo-target" \
-it \
"$builder_image" \
abuild -F

View File

@@ -0,0 +1,85 @@
# Contributor:
# Maintainer: Joakim Hulthe <joakim@hulthe.net>
pkgname=mullvad-vpn-daemon
pkgver=2026.1_git
pkgrel=4
pkgdesc="Mullvad VPN system service"
url="https://mullvad.net/"
arch="all"
license="GPL-3-or-later"
depends="
dbus
libmnl
libnftnl
"
makedepends="
build-base
cargo-auditable
rust
pkgconfig
git
protobuf-dev
dbus-dev
libmnl-dev
libnftnl-dev
"
checkdepends=""
install="$pkgname.post-install $pkgname.pre-upgrade $pkgname.post-upgrade $pkgname.pre-deinstall $pkgname.post-deinstall"
subpackages="$pkgname-systemd"
source=""
builddir="$srcdir/"
options="net suid"
_cargo_target_dir="${CARGO_TARGET_DIR:-$startdir/mullvadvpn-app/target}"
prepare() {
default_prepare
cd "$startdir/mullvadvpn-app"
cargo fetch --target "$CHOST" --locked
}
build() {
cd "$startdir/mullvadvpn-app"
# Specify `--target` so that the build artifacts ends up in target/<target>/release to
# avoid clashes with host system when running in a container with a mounted target folder.
cargo auditable build --release --locked \
--target "$CHOST" \
-p mullvad-cli \
-p mullvad-daemon \
-p mullvad-exclude \
-p mullvad-problem-report \
-p mullvad-setup
}
check() {
cd "$startdir/mullvadvpn-app"
cargo test --target "$CHOST" --frozen
}
package() {
install -m755 -D "$_cargo_target_dir/$CHOST/release/mullvad" \
"$pkgdir"/usr/bin/mullvad
install -m755 -D "$_cargo_target_dir/$CHOST/release/mullvad-daemon" \
"$pkgdir"/usr/bin/mullvad-daemon
# mullvad-exclude requires setuid
install -m4755 -D "$_cargo_target_dir/$CHOST/release/mullvad-exclude" \
"$pkgdir"/usr/bin/mullvad-exclude
install -m755 -D "$_cargo_target_dir/$CHOST/release/mullvad-problem-report" \
"$pkgdir"/usr/bin/mullvad-problem-report
install -m755 -D "$_cargo_target_dir/$CHOST/release/mullvad-setup" \
"$pkgdir"/usr/bin/mullvad-setup
}
systemd() {
install -m755 -D "$startdir/mullvadvpn-app/dist-assets/linux/mullvad-daemon.service" \
"$subpkgdir"/usr/lib/systemd/system/mullvad-daemon.service
install -m755 -D "$startdir/mullvadvpn-app/dist-assets/linux/mullvad-early-boot-blocking.service" \
"$subpkgdir"/usr/lib/systemd/system/mullvad-early-boot-blocking.service
}

View File

@@ -0,0 +1,9 @@
#!/usr/bin/env bash
set -eu
rm -r --interactive=never /var/log/mullvad-vpn/ || \
echo "Failed to remove mullvad-vpn logs"
rm -r --interactive=never /var/cache/mullvad-vpn/ || \
echo "Failed to remove mullvad-vpn cache"
rm -r --interactive=never /etc/mullvad-vpn || \
echo "Failed to remove mullvad-vpn config"

View File

@@ -0,0 +1,10 @@
#!/usr/bin/env bash
set -eu
if which systemctl &> /dev/null && systemctl is-system-running | grep -vq offline &> /dev/null; then
if systemctl status mullvad-daemon &> /dev/null; then
systemctl enable "/usr/lib/systemd/system/mullvad-daemon.service"
systemctl start mullvad-daemon.service || echo "Failed to start mullvad-daemon.service"
systemctl enable "/usr/lib/systemd/system/mullvad-early-boot-blocking.service"
fi
fi

View File

@@ -0,0 +1,10 @@
#!/usr/bin/env bash
set -eu
if which systemctl &> /dev/null && systemctl is-system-running | grep -vq offline &> /dev/null; then
if systemctl status mullvad-daemon &> /dev/null; then
systemctl enable "/usr/lib/systemd/system/mullvad-daemon.service"
systemctl start mullvad-daemon.service || echo "Failed to start mullvad-daemon.service"
systemctl enable "/usr/lib/systemd/system/mullvad-early-boot-blocking.service"
fi
fi

View File

@@ -0,0 +1,23 @@
#!/usr/bin/env bash
set -eu
echo "Running prerm."
is_number_re='^[0-9]+$'
# Check if we're running during an upgrade step on Fedora
# https://fedoraproject.org/wiki/Packaging:Scriptlets#Syntax
if [[ "$1" =~ $is_number_re ]] && [ "$1" -gt 0 ]; then
exit 0;
fi
if [[ "$1" == "upgrade" ]]; then
exit 0;
fi
# the user might've disabled or stopped the service themselves already
systemctl stop mullvad-daemon.service || true
systemctl disable mullvad-daemon.service || true
systemctl stop mullvad-early-boot-blocking.service || true
systemctl disable mullvad-early-boot-blocking.service || true
mullvad-setup reset-firewall || echo "Failed to reset firewall"
mullvad-setup remove-device || echo "Failed to remove device from account"

View File

@@ -0,0 +1,16 @@
#!/usr/bin/env bash
set -eu
if which systemctl &> /dev/null && systemctl is-system-running | grep -vq offline &> /dev/null; then
if systemctl status mullvad-daemon &> /dev/null; then
mullvad-setup prepare-restart || true
systemctl stop mullvad-daemon.service
systemctl disable mullvad-daemon.service
systemctl disable mullvad-early-boot-blocking.service || true
cp /var/log/mullvad-vpn/daemon.log /var/log/mullvad-vpn/old-install-daemon.log \
|| echo "Failed to copy old daemon log"
fi
fi
rm -f /var/cache/mullvad-vpn/relays.json
rm -f /var/cache/mullvad-vpn/api-ip-address.txt

View File

@@ -1,98 +1,85 @@
# Contributor:
# Maintainer:
pkgname=mullvad-slint
# Maintainer: Joakim Hulthe <joakim@hulthe.net>
pkgname=mullvad-vpn-slint
pkgver=2026.1_git
pkgrel=0
pkgrel=4
pkgdesc="Mullvad VPN GUI"
url="https://mullvad.net/"
arch="$(uname -m)"
arch="all"
license="GPL-3-or-later"
# TODO: maybe depend on mullvad-vpn-daemon?
depends="
freetype-dev
freetype-static
fontconfig-dev
fontconfig-static
bzip2-dev
bzip2-static
brotli-dev
brotli-static
expat-dev
expat-static
libx11-dev
libxcursor-dev
libxkbcommon-dev
libxkbcommon-static
wayland-dev
wayland-libs-client
wayland-libs-server
wayland-static
openssl-dev
openssl-libs-static
zlib-dev
zlib-static
libpng-dev
libpng-static
libwebp-dev
libwebp-static
tiff-dev
libjpeg-turbo-dev
libjpeg-turbo-static
"
makedepends="
rustup
build-base
musl-dev
gcc
cmake
make
cargo-auditable
rust
pkgconfig
perl
python3
curl
git
llvm
clang
clang-libclang
protobuf-dev
libc-dev
linux-headers
fontconfig-dev
dbus-dev
wayland-dev
"
checkdepends=""
install=""
subpackages=""
source=""
builddir="$srcdir/"
options="net"
options="net !check"
_cargo_target_dir="${CARGO_TARGET_DIR:-$startdir/mullvadvpn-app/target}"
build() {
# rustup-init -y --default-toolchain stable
source "$HOME/.cargo/env"
prepare() {
default_prepare
cd "$startdir/mullvadvpn-app"
cargo fetch --target "$CHOST" --locked
}
# rustup default stable
local target="$(rustup +stable show active-toolchain | sed 's/^[^-]*-//' | grep -o "^[^ ]*")"
build() {
cd "$startdir/mullvadvpn-app"
# * Force the `stable` toolchain since it's installed in the container.
# We don't wan't to needlessly download rust while building.
# * Disable `tray-icon` feature. (TODO: figure out how to compile with libdbus)
# * Specify `--target` so that the final binary ends up in target/<target>/release.
cargo +stable build --release --locked \
--target "$target" \
--no-default-features --features map \
# Specify `--target` so that the final binary ends up in target/<target>/release.
cargo build --release --locked \
--target "$CHOST" \
-p mullvad-slint
}
package() {
local cargo_target_dir="${CARGO_TARGET_DIR:-$startdir/mullvadvpn-app/target}"
local target="$(rustup +stable show active-toolchain | sed 's/^[^-]*-//' | grep -o "^[^ ]*")"
# Executable
install -m755 -D "$_cargo_target_dir/$CHOST/release/mullvad-slint" \
"$pkgdir"/usr/bin/mullvad-slint
# TODO: .desktop
# TODO: icon
# .desktop file
install -m644 -D "$startdir/mullvadvpn-app/dist-assets/linux/slint/mullvad-vpn-slint.desktop" \
"$pkgdir"/usr/share/applications/mullvad-vpn-slint.desktop
install -m755 -D "$cargo_target_dir/$target/release/$pkgname" \
"$pkgdir"/usr/bin/"$pkgname"
# Icons
install -m644 -D "$startdir/mullvadvpn-app/dist-assets/linux/slint/16x16/apps/mullvad.png" \
"$pkgdir"/usr/share/icons/hicolor/16x16/apps/mullvad.png
install -m644 -D "$startdir/mullvadvpn-app/dist-assets/linux/slint/20x20/apps/mullvad.png" \
"$pkgdir"/usr/share/icons/hicolor/20x20/apps/mullvad.png
install -m644 -D "$startdir/mullvadvpn-app/dist-assets/linux/slint/24x24/apps/mullvad.png" \
"$pkgdir"/usr/share/icons/hicolor/24x24/apps/mullvad.png
install -m644 -D "$startdir/mullvadvpn-app/dist-assets/linux/slint/30x30/apps/mullvad.png" \
"$pkgdir"/usr/share/icons/hicolor/30x30/apps/mullvad.png
install -m644 -D "$startdir/mullvadvpn-app/dist-assets/linux/slint/32x32/apps/mullvad.png" \
"$pkgdir"/usr/share/icons/hicolor/32x32/apps/mullvad.png
install -m644 -D "$startdir/mullvadvpn-app/dist-assets/linux/slint/36x36/apps/mullvad.png" \
"$pkgdir"/usr/share/icons/hicolor/36x36/apps/mullvad.png
install -m644 -D "$startdir/mullvadvpn-app/dist-assets/linux/slint/40x40/apps/mullvad.png" \
"$pkgdir"/usr/share/icons/hicolor/40x40/apps/mullvad.png
install -m644 -D "$startdir/mullvadvpn-app/dist-assets/linux/slint/48x48/apps/mullvad.png" \
"$pkgdir"/usr/share/icons/hicolor/48x48/apps/mullvad.png
install -m644 -D "$startdir/mullvadvpn-app/dist-assets/linux/slint/64x64/apps/mullvad.png" \
"$pkgdir"/usr/share/icons/hicolor/64x64/apps/mullvad.png
install -m644 -D "$startdir/mullvadvpn-app/dist-assets/linux/slint/72x72/apps/mullvad.png" \
"$pkgdir"/usr/share/icons/hicolor/72x72/apps/mullvad.png
install -m644 -D "$startdir/mullvadvpn-app/dist-assets/linux/slint/96x96/apps/mullvad.png" \
"$pkgdir"/usr/share/icons/hicolor/96x96/apps/mullvad.png
install -m644 -D "$startdir/mullvadvpn-app/dist-assets/linux/slint/256x256/apps/mullvad.png" \
"$pkgdir"/usr/share/icons/hicolor/256x256/apps/mullvad.png
install -m644 -D "$startdir/mullvadvpn-app/dist-assets/linux/slint/512x512/apps/mullvad.png" \
"$pkgdir"/usr/share/icons/hicolor/512x512/apps/mullvad.png
}

5
podman-build.sh Normal file → Executable file
View File

@@ -5,6 +5,7 @@ cd "$(dirname "$0")"
package="$1"
builder_image="mullvad-slint-musl-builder"
cargo_home="${CARGO_HOME:-$HOME/.cargo}"
. "$HOME/.abuild/abuild.conf"
podman build . -f Dockerfile -t "$builder_image"
@@ -14,8 +15,10 @@ podman run --rm \
-v "$PACKAGER_PRIVKEY":/key.rsa:ro \
-v "$PACKAGER_PRIVKEY.pub":/key.rsa.pub:ro \
-v "$PACKAGER_PRIVKEY.pub":/etc/apk/keys/key.rsa.pub:ro \
-v ./target:/cargo-target \
-v ./packages:/root/packages \
-v "$cargo_home":/cargo-home \
-e "CARGO_HOME=/cargo-home" \
-v ./target:/cargo-target \
-e "CARGO_TARGET_DIR=/cargo-target" \
-it \
"$builder_image" \