Skip to content

Commit e25d417

Browse files
oskarirauta1715173329
authored andcommitted
podman: update to 4.7.1
Bugfixes - Fixed a bug involving non-English locales of Windows where machine installs using user-mode networking were rejected due to erroneous version detection (openwrt#20209). - Fixed a regression in --env-file handling (openwrt#19565). - Fixed a bug where podman inspect would fail when stat'ing a device failed. API - The network list compat API endpoint is now much faster (openwrt#20035). Openwrt updates: added patch to allow building with musl-1.2.4 Patch source is from gentoo https://github.com/vimproved/gentoo/blob/c4c349f11a4352be1965726eadfe3a8bd8a6fa9c/app-containers/podman/files/podman-4.5.0-fix-build-with-musl-1.2.4.patch Issue was discussed by @jefferyto at mattn/go-sqlite3#1177 Signed-off-by: Oskari Rauta <[email protected]>
1 parent 32d53ea commit e25d417

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

utils/podman/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
include $(TOPDIR)/rules.mk
22

33
PKG_NAME:=podman
4-
PKG_VERSION:=4.7.0
4+
PKG_VERSION:=4.7.1
55
PKG_RELEASE:=1
66

77
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
88
PKG_SOURCE_URL:=https://github.com/containers/podman/archive/v$(PKG_VERSION)
9-
PKG_HASH:=8fbeab8a821c59ac10ade87c9597d7bb13be4f7868b438278a9f6a17c50bf20d
9+
PKG_HASH:=b785fe69041a0f222a8e1f8165816d767cb9bff5418f3f559547da82c0c279cc
1010

1111
PKG_LICENSE:=Apache-2.0
1212
PKG_LICENSE_FILES:=LICENSE
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
From https://github.com/mattn/go-sqlite3/pull/1177/commits/65d6085c5d87280c0d6883c884ddb25f9273942f Mon Sep 17 00:00:00 2001
2+
From: leso-kn <[email protected]>
3+
Date: Mon, 10 Jul 2023 14:58:52 +0200
4+
Subject: [PATCH] Fix musl build (#1164)
5+
6+
--- a/vendor/github.com/mattn/go-sqlite3/sqlite3.go
7+
+++ b/vendor/github.com/mattn/go-sqlite3/sqlite3.go
8+
@@ -21,7 +21,7 @@ package sqlite3
9+
#cgo CFLAGS: -DSQLITE_DEFAULT_WAL_SYNCHRONOUS=1
10+
#cgo CFLAGS: -DSQLITE_ENABLE_UPDATE_DELETE_LIMIT
11+
#cgo CFLAGS: -Wno-deprecated-declarations
12+
-#cgo linux,!android CFLAGS: -DHAVE_PREAD64=1 -DHAVE_PWRITE64=1
13+
+#cgo linux,!android CFLAGS: -DHAVE_PREAD=1 -DHAVE_PWRITE=1
14+
#cgo openbsd CFLAGS: -I/usr/local/include
15+
#cgo openbsd LDFLAGS: -L/usr/local/lib
16+
#ifndef USE_LIBSQLITE3

0 commit comments

Comments
 (0)