From 7eb30fa6f2e3aa8ba72d07afce5305bf419c2079 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Wed, 17 Jun 2026 01:31:17 +0900 Subject: [PATCH] systemd/systemd: drop unnecessary conditionalization for $source The upstream mkosi build does not fetch source files. Hence, it is not necessary to exclude the tar ball from $source. Part-of: --- extra-repos/systemd/systemd/APKBUILD | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/extra-repos/systemd/systemd/APKBUILD b/extra-repos/systemd/systemd/APKBUILD index 9931153ad..bdadb135e 100644 --- a/extra-repos/systemd/systemd/APKBUILD +++ b/extra-repos/systemd/systemd/APKBUILD @@ -221,13 +221,10 @@ if [ "$_systemd_upstream" = 1 ]; then -Dukify=enabled " fi -else - # The source tar ball is of course only necessary when we are _not_ in upstream. - source="$pkgname-$pkgver.tar.gz::https://github.com/systemd/systemd/archive/refs/tags/v$_pkgver.tar.gz" fi source=" - $source + $pkgname-$pkgver.tar.gz::https://github.com/systemd/systemd/archive/refs/tags/v$_pkgver.tar.gz wired.network " builddir=${_upstream_srcdir:-"$srcdir/$pkgname-$_pkgver"}