Diff podman-4.7.0 with a podman-4.7.1

/usr/portage/app-containers/podman/podman-4.7.1.ebuild 2023-10-09 14:52:28.224368318 +0300
7 7

  
8 8
DESCRIPTION="A tool for managing OCI containers and pods with Docker-compatible CLI"
9 9
HOMEPAGE="https://github.com/containers/podman/ https://podman.io/"
10

  
10 11
if [[ ${PV} == *9999* ]]; then
11 12
	inherit git-r3
12 13
	EGIT_REPO_URI="https://github.com/containers/podman.git"
......
14 15
	SRC_URI="https://github.com/containers/podman/archive/v${PV}.tar.gz -> ${P}.tar.gz"
15 16
	KEYWORDS="~amd64 ~arm64 ~riscv"
16 17
fi
18

  
17 19
LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
18 20
SLOT="0"
19 21
IUSE="apparmor btrfs cgroup-hybrid wrapper +fuse +init +rootless +seccomp selinux systemd"
......
60 62
src_prepare() {
61 63
	default
62 64
	local file
63
	for file in apparmor_tag btrfs_installed_tag btrfs_tag selinux_tag systemd_tag; do
65
	for file in apparmor_tag btrfs_installed_tag btrfs_tag systemd_tag; do
64 66
		[[ -f hack/"${file}".sh ]] || die
65 67
	done
66 68

  
67 69
	local feature
68
	for feature in apparmor selinux systemd; do
70
	for feature in apparmor systemd; do
69 71
		cat <<-EOF > hack/"${feature}"_tag.sh || die
70 72
		#!/usr/bin/env bash
71 73
		$(usex ${feature} "echo ${feature}" echo)
Thank you!