mirror of
https://github.com/systemd/systemd.git
synced 2025-03-28 02:50:16 +03:00
Merge pull request #34142 from DaanDeMeyer/update-distributions
mkosi: Update distribution packaging commits
This commit is contained in:
commit
4b54da2e37
2
.github/workflows/mkosi.yml
vendored
2
.github/workflows/mkosi.yml
vendored
@ -105,7 +105,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
|
||||
- uses: systemd/mkosi@5ccee64874ecb9e457f71ec40876ddc3e232aaa6
|
||||
- uses: systemd/mkosi@8c2f828701a1bdb3dc9b80d6f2ab979f0430a6b8
|
||||
|
||||
# Freeing up disk space with rm -rf can take multiple minutes. Since we don't need the extra free space
|
||||
# immediately, we remove the files in the background. However, we first move them to a different location
|
||||
|
@ -12,7 +12,7 @@ for DEPS in --requires --recommends --suggests; do
|
||||
# We need --latest-limit=1 to only consider the newest version of the packages.
|
||||
# --latest-limit=1 is per <name>.<arch> so we have to pass --arch= explicitly to make sure i686 packages
|
||||
# are not considered on x86-64.
|
||||
dnf repoquery --arch="$DISTRIBUTION_ARCHITECTURE" --latest-limit=1 --quiet "$DEPS" "${PACKAGES[@]}" |
|
||||
dnf repoquery --arch="$DISTRIBUTION_ARCHITECTURE,noarch" --latest-limit=1 --quiet "$DEPS" "${PACKAGES[@]}" |
|
||||
grep --invert-match --regexp systemd --regexp udev --regexp /bin/sh --regexp grubby --regexp sdubby --regexp libcurl-minimal |
|
||||
sort --unique |
|
||||
xargs --delimiter '\n' --no-run-if-empty mkosi-install
|
||||
|
@ -67,12 +67,17 @@ sed --in-place "pkg/$PKG_SUBDIR/PKGBUILD" \
|
||||
--expression "s/^_tag=.*/_tag=$(cat meson.version)/" \
|
||||
--expression "s/^pkgrel=.*/pkgrel=$(date "+%Y%m%d%H%M%S" --date "@$TS")/"
|
||||
|
||||
# Replace cdrom/dialout/tape groups with optical/uucp/storage. We apply this patch manually because we run
|
||||
# with --noprepare.
|
||||
patch -Np1 -i pkg/arch/0001-Use-Arch-Linux-device-access-groups.patch
|
||||
|
||||
# We get around makepkg's root check by setting EUID to something else.
|
||||
# shellcheck disable=SC2046
|
||||
env --chdir="pkg/$PKG_SUBDIR" \
|
||||
EUID=123 \
|
||||
makepkg \
|
||||
--noextract \
|
||||
--noprepare \
|
||||
$( ((WITH_TESTS)) || echo --nocheck) \
|
||||
--force \
|
||||
_systemd_UPSTREAM=1 \
|
||||
|
@ -7,7 +7,7 @@ Distribution=arch
|
||||
Environment=
|
||||
GIT_URL=https://gitlab.archlinux.org/archlinux/packaging/packages/systemd.git
|
||||
GIT_BRANCH=main
|
||||
GIT_COMMIT=1d577a62688419ee4af01b847e55845cd9780301
|
||||
GIT_COMMIT=ea5f086275aeba40d878507fba8b22308c3fac01
|
||||
PKG_SUBDIR=arch
|
||||
|
||||
Packages=
|
||||
|
@ -53,6 +53,12 @@ if ((WIPE)) && [[ -d "$BUILDDIR/meson-private" ]]; then
|
||||
MKOSI_MESON_OPTIONS="$MKOSI_MESON_OPTIONS --wipe"
|
||||
fi
|
||||
|
||||
# Hack to work around https://github.com/rpm-software-management/rpm/issues/3216.
|
||||
# TODO: Remove when rpm 4.20 gets into Rawhide.
|
||||
mkdir -p "/var/tmp/BUILD/systemd-${VERSION/\~/_}-build"
|
||||
mkdir -p "/var/tmp/BUILD/systemd-${VERSION/\~/_}-build/SPECPARTS"
|
||||
ln -s /work/src "/var/tmp/BUILD/systemd-${VERSION/\~/_}-build/systemd-$VERSION"
|
||||
|
||||
IFS=
|
||||
# TODO: Replace meson_build and meson_install overrides with "--undefine __meson_verbose" once
|
||||
# https://github.com/mesonbuild/meson/pull/12835 is available.
|
||||
@ -66,12 +72,13 @@ CC_LD="$( ((LLVM)) && echo lld)" \
|
||||
CXX_LD="$( ((LLVM)) && echo lld)" \
|
||||
rpmbuild \
|
||||
-bb \
|
||||
--noprep \
|
||||
--build-in-place \
|
||||
--with upstream \
|
||||
$( ((WITH_TESTS)) || echo "--nocheck") \
|
||||
$( ((WITH_DOCS)) || echo "--without=docs") \
|
||||
--define "_topdir /var/tmp" \
|
||||
--define "_sourcedir pkg/$PKG_SUBDIR" \
|
||||
--define "_sourcedir $PWD/pkg/$PKG_SUBDIR" \
|
||||
--define "_rpmdir $OUTPUTDIR" \
|
||||
${BUILDDIR:+"--define=_vpath_builddir $BUILDDIR"} \
|
||||
--define "_build_name_fmt %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm" \
|
||||
|
@ -8,7 +8,7 @@ Distribution=|fedora
|
||||
Environment=
|
||||
GIT_URL=https://src.fedoraproject.org/rpms/systemd.git
|
||||
GIT_BRANCH=rawhide
|
||||
GIT_COMMIT=00babccdea1576d96edfdb7ab12958564cc4f1b6
|
||||
GIT_COMMIT=28076e6232412aa7138e09aaec8c0a414faa3dce
|
||||
PKG_SUBDIR=fedora
|
||||
|
||||
Packages=
|
||||
|
@ -17,7 +17,7 @@ mkosi-chroot \
|
||||
--query \
|
||||
--buildrequires \
|
||||
--define "_topdir /var/tmp" \
|
||||
--define "_sourcedir pkg/$PKG_SUBDIR" \
|
||||
--define "_sourcedir $PWD/pkg/$PKG_SUBDIR" \
|
||||
"pkg/$PKG_SUBDIR/systemd.spec" |
|
||||
grep --invert-match --regexp systemd --regexp /bin/sh --regexp "rpmlib(" --regexp udev --regexp grubby --regexp sdubby |
|
||||
sort --unique |
|
||||
@ -32,10 +32,11 @@ sed '/Source0/d' --in-place "pkg/$PKG_SUBDIR/systemd.spec"
|
||||
until mkosi-chroot \
|
||||
rpmbuild \
|
||||
-br \
|
||||
--noprep \
|
||||
--build-in-place \
|
||||
--with upstream \
|
||||
--define "_topdir /var/tmp" \
|
||||
--define "_sourcedir pkg/$PKG_SUBDIR" \
|
||||
--define "_sourcedir $PWD/pkg/$PKG_SUBDIR" \
|
||||
--define "_build_name_fmt %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm" \
|
||||
"pkg/$PKG_SUBDIR/systemd.spec"
|
||||
do
|
||||
|
@ -9,7 +9,7 @@ Environment=
|
||||
GIT_URL=https://salsa.debian.org/systemd-team/systemd.git
|
||||
GIT_SUBDIR=debian
|
||||
GIT_BRANCH=debian/master
|
||||
GIT_COMMIT=6e0f4f74bad23b54bfbca201cba4d3b8323fbbd6
|
||||
GIT_COMMIT=aa17b7ddf9633b4b0d06fdad3281137ba2851721
|
||||
PKG_SUBDIR=debian
|
||||
|
||||
Packages=
|
||||
|
@ -69,11 +69,12 @@ build() {
|
||||
CXX_LD="$( ((LLVM)) && echo lld)" \
|
||||
rpmbuild \
|
||||
-bb \
|
||||
--noprep \
|
||||
--build-in-place \
|
||||
--with upstream \
|
||||
$( ((WITH_TESTS)) || echo "--nocheck") \
|
||||
--define "_topdir /var/tmp" \
|
||||
--define "_sourcedir pkg/$PKG_SUBDIR" \
|
||||
--define "_sourcedir $PWD/pkg/$PKG_SUBDIR" \
|
||||
--define "_rpmdir $OUTPUTDIR" \
|
||||
${BUILDDIR:+"--define=_vpath_builddir $BUILDDIR"} \
|
||||
--define "_build_name_fmt %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm" \
|
||||
|
@ -7,7 +7,7 @@ Distribution=opensuse
|
||||
Environment=
|
||||
GIT_URL=https://code.opensuse.org/package/systemd
|
||||
GIT_BRANCH=master
|
||||
GIT_COMMIT=6812406e52a474568744c267e7bade1496bb26a5
|
||||
GIT_COMMIT=2866762da8394e98a85834f533b5ea3db6d3328f
|
||||
PKG_SUBDIR=opensuse
|
||||
|
||||
Packages=
|
||||
|
@ -20,7 +20,7 @@ mkosi-chroot \
|
||||
--query \
|
||||
--buildrequires \
|
||||
--define "_topdir /var/tmp" \
|
||||
--define "_sourcedir pkg/$PKG_SUBDIR" \
|
||||
--define "_sourcedir $PWD/pkg/$PKG_SUBDIR" \
|
||||
"pkg/$PKG_SUBDIR/systemd.spec" |
|
||||
grep --invert-match --regexp systemd --regexp /bin/sh --regexp "rpmlib(" --regexp udev |
|
||||
sort --unique |
|
||||
@ -30,10 +30,11 @@ mkosi-chroot \
|
||||
until mkosi-chroot \
|
||||
rpmbuild \
|
||||
-bd \
|
||||
--noprep \
|
||||
--build-in-place \
|
||||
--with upstream \
|
||||
--define "_topdir /var/tmp" \
|
||||
--define "_sourcedir pkg/$PKG_SUBDIR" \
|
||||
--define "_sourcedir $PWD/pkg/$PKG_SUBDIR" \
|
||||
--define "_build_name_fmt %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm" \
|
||||
"pkg/$PKG_SUBDIR/systemd.spec"
|
||||
do
|
||||
|
Loading…
x
Reference in New Issue
Block a user