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

Sébastien Luttringer seblu at gemini.archlinux.org
Thu Mar 24 09:03:04 UTC 2022


    Date: Thursday, March 24, 2022 @ 09:03:03
  Author: seblu
Revision: 1173894

upgpkg: docker 1:20.10.14-1

Modified:
  docker/trunk/PKGBUILD

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

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2022-03-24 08:49:21 UTC (rev 1173893)
+++ PKGBUILD	2022-03-24 09:03:03 UTC (rev 1173894)
@@ -2,7 +2,7 @@
 # Maintainer: Morten Linderud <foxboron at archlinux.org>
 
 pkgname=docker
-pkgver=20.10.13
+pkgver=20.10.14
 pkgrel=1
 epoch=1
 pkgdesc='Pack, ship and run any application as a lightweight container'
@@ -19,7 +19,7 @@
 _TINI_COMMIT=de40ad007797e0dcd8b7126f27bb87401d224240
 _LIBNETWORK_COMMIT=64b7a4574d1426139437d20e81c0b6d391130ec8
 # TODO: Split into `docker-buildx` and make it a dependency
-_BUILDX_COMMIT=c8f7c1e93ffa9cfcf926cd3e6450af957f235b07
+_BUILDX_COMMIT=5fac64c2c49dae1320f2b51f1a899ca451935554
 source=("git+https://github.com/docker/cli.git#tag=v$pkgver"
         "git+https://github.com/moby/moby.git#tag=v$pkgver"
         "git+https://github.com/docker/libnetwork.git#commit=$_LIBNETWORK_COMMIT"
@@ -57,14 +57,14 @@
   done
   local _commit _pkgbuild _dockerfile
   err=0
-  for _commit in LIBNETWORK TINI; do
+  # FIXME: Do not check TINI anymore, use tag instead of commit
+  for _commit in LIBNETWORK; do
     _pkgbuild=_${_commit}_COMMIT
     _dockerfile=${_commit}_COMMIT
-    # TODO: We need to patch upstream to not use tags
-    #if [[ ${!_pkgbuild} != ${!_dockerfile} ]]; then
-    #  echo "Invalid $_commit commit, should be ${!_dockerfile}" >&2
-    #  err=$(($err + 1))
-    #fi
+    if [[ ${!_pkgbuild} != ${!_dockerfile} ]]; then
+      echo "Invalid $_commit commit, should be ${!_dockerfile}" >&2
+      err=$(($err + 1))
+    fi
   done
   return $err
   )



More information about the arch-commits mailing list