Diff libsecret-0.20.5-r3 with a libsecret-0.21.1

/usr/portage/app-crypt/libsecret/libsecret-0.21.1.ebuild 2023-10-09 14:52:28.236368318 +0300
1 1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
5
PYTHON_COMPAT=( python3_{9..11} )
4
EAPI=8
5
PYTHON_COMPAT=( python3_{10..12} )
6 6

  
7 7
inherit bash-completion-r1 gnome2 meson-multilib python-any-r1 vala virtualx
8 8

  
......
19 19
	gtk-doc? ( crypt )
20 20
"
21 21

  
22
KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~loong ~mips ppc ppc64 ~riscv sparc x86"
22
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
23 23

  
24 24
DEPEND="
25 25
	>=dev-libs/glib-2.44:2[${MULTILIB_USEDEP}]
......
71 71

  
72 72
tpm2_run_with_emulator() {
73 73
	export XDG_CONFIG_HOME=${T}/.config/swtpm
74
	"${BROOT}"/usr/share/swtpm/swtpm-create-user-config-files || die
74
	"${BROOT}"/usr/share/swtpm/swtpm-create-user-config-files --overwrite || die
75 75

  
76 76
	mkdir -p ${XDG_CONFIG_HOME}/mytpm1 || die
77 77
	swtpm_setup_args=(
......
116 116

  
117 117
python_check_deps() {
118 118
	if use introspection; then
119
		has_version -b "dev-python/pygobject:3[${PYTHON_USEDEP}]" || return
119
		python_has_version "dev-python/pygobject:3[${PYTHON_USEDEP}]" || return
120 120
	fi
121
	has_version -b "dev-python/mock[${PYTHON_USEDEP}]" &&
122
	has_version -b "dev-python/dbus-python[${PYTHON_USEDEP}]"
121
	python_has_version "dev-python/mock[${PYTHON_USEDEP}]" &&
122
	python_has_version "dev-python/dbus-python[${PYTHON_USEDEP}]"
123 123
}
124 124

  
125 125
pkg_setup() {
......
127 127
}
128 128

  
129 129
src_prepare() {
130
	use vala && vala_src_prepare
130
	use vala && vala_setup
131 131
	default
132 132
}
133 133

  
Thank you!