From 416eced1748859690c9935f483e22d7f389f6451 Mon Sep 17 00:00:00 2001 From: "W. Michael Petullo" Date: Mon, 6 Sep 2021 20:24:20 -0500 Subject: [PATCH] podman: update to 3.3.1 Earlier versions of podman did not make use of TMPDIR when running "podman run ...". Podman's default, /var/tmp, presents a problem to rootless use since OpenWrt's /var/tmp does not permit writes by non-root users. Podman 3.3.1 makes full use of TMPDIR. This is part of an attempt to get rootless podman to work on OpenWrt. See https://github.com/openwrt/packages/issues/15096. See also the upstream issue at https://github.com/containers/podman/issues/10698. Signed-off-by: W. Michael Petullo --- utils/podman/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/podman/Makefile b/utils/podman/Makefile index a7976df24a..883d649b0c 100644 --- a/utils/podman/Makefile +++ b/utils/podman/Makefile @@ -1,9 +1,9 @@ include $(TOPDIR)/rules.mk PKG_NAME:=podman -PKG_VERSION:=3.2.0 +PKG_VERSION:=3.3.1 PKG_RELEASE:=$(AUTORELEASE) -PKG_HASH:=1206377b12c11d4065bc4789fa104ca139ba77bb5b33541f07e8e95ae4d2932a +PKG_HASH:=6e3c57f5fd4199bc7603effb8c34268ee7f65fcd30c7b0d4778396b69388ae1f PKG_SOURCE_URL:=https://github.com/containers/podman/archive/v$(PKG_VERSION) PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz