Diff buildah-1.29.1 with a buildah-1.30.0

/usr/portage/app-containers/buildah/buildah-1.30.0.ebuild 2023-10-09 14:52:28.216368318 +0300
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5

  
5 6
inherit bash-completion-r1 go-module
6
GIT_COMMIT=faf0d4fc
7
GIT_COMMIT=04965f11
7 8

  
8 9
DESCRIPTION="A tool that facilitates building OCI images"
9 10
HOMEPAGE="https://github.com/containers/buildah"
......
13 14
SLOT="0"
14 15
KEYWORDS="amd64 arm64"
15 16
IUSE="selinux"
17
RESTRICT="test"
16 18

  
17
RDEPEND="app-crypt/gpgme:=
19
DEPEND="
20
	app-crypt/gpgme:=
18 21
	app-containers/skopeo
19 22
	dev-libs/libgpg-error:=
20 23
	dev-libs/libassuan:=
21 24
	sys-apps/shadow:=
22 25
	sys-fs/lvm2:=
23 26
	sys-libs/libseccomp:=
24
	selinux? ( sys-libs/libselinux:= )"
25
DEPEND="${RDEPEND}"
26

  
27
RESTRICT="test"
27
	selinux? ( sys-libs/libselinux:= )
28
"
29
RDEPEND="${DEPEND}"
28 30

  
29 31
src_prepare() {
30 32
	default
Thank you!