[arch-commits] Commit in systemd/trunk (PKGBUILD)

Evangelos Foutras foutrelis at gemini.archlinux.org
Thu Mar 17 19:28:48 UTC 2022


    Date: Thursday, March 17, 2022 @ 19:28:48
  Author: foutrelis
Revision: 439866

upgpkg: systemd 250.4-2: add DoT fixes from stable

https://github.com/systemd/systemd-stable/pull/187

Modified:
  systemd/trunk/PKGBUILD

----------+
 PKGBUILD |   10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2022-03-17 19:23:48 UTC (rev 439865)
+++ PKGBUILD	2022-03-17 19:28:48 UTC (rev 439866)
@@ -7,7 +7,7 @@
 _tag='5aba21f1561d48fdcf7f4670263ba109c25c1ea6' # git rev-parse v${_tag_name}
 _tag_name=250.4
 pkgver="${_tag_name/-/}"
-pkgrel=1
+pkgrel=2
 arch=('x86_64')
 url='https://www.github.com/systemd/systemd'
 makedepends=('acl' 'cryptsetup' 'docbook-xsl' 'gperf' 'lz4' 'xz' 'pam' 'libelf'
@@ -64,6 +64,8 @@
 _backports=(
   # bus: Use OrderedSet for introspection
   'acac88340ace3cd631126eebb6d0390cd54e8231'
+  # resolved: DoT fixes (https://github.com/systemd/systemd-stable/pull/187)
+  '88b4e8f74ed981000ded8e23ead930a6f68eebc8~..6d3e2f0188f8a10412c56dc987198104a4dfff0f'
 )
 
 _reverts=(
@@ -77,7 +79,11 @@
 
   local _c
   for _c in "${_backports[@]}"; do
-    git log --oneline -1 "${_c}"
+    if [[ $_c == *..* ]]; then
+      git log --oneline --reverse "${_c}"
+    else
+      git log --oneline -1 "${_c}"
+    fi
     git cherry-pick -n "${_c}"
   done
   for _c in "${_reverts[@]}"; do



More information about the arch-commits mailing list