Diff copyq-6.4.0 with a copyq-7.0.0

/usr/portage/x11-misc/copyq/copyq-7.0.0.ebuild 2023-10-09 14:52:35.932368513 +0300
14 14
SLOT="0"
15 15
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
16 16
IUSE="debug kde qt6 test"
17

  
18
# Qt6 tests fail with "Failed to stop server" error
19
RESTRICT="
20
	qt6? ( test )
21
	!test? ( test )
22
"
17
RESTRICT="test"
23 18

  
24 19
RDEPEND="
25 20
	dev-libs/wayland
......
86 81
	local -x COPYQ_TESTS_RERUN_FAILED=0
87 82
	local -x COPYQ_TESTS_NO_NETWORK=1
88 83

  
89
	local plug
90
	local plugins=(
91
		itemencrypted
92
		itemfakevim
93
		itempinned
94
		#itemsync -- failure in avoidDuplicateItemsAddedFromClipboard()
95
		itemtags
96
	)
97

  
98 84
	ebegin "Starting IceWM"
99 85
	icewm &
100 86
	sleep 5
......
102 88

  
103 89
	cd "${BUILD_DIR}" || die
104 90
	mkdir -p "${HOME}"/.gnupg || die
105
	for plug in "${plugins[@]}"; do
106
		edo ./copyq tests PLUGINS:"${plug}"
107
	done
108 91

  
109 92
	# ScriptError: Failed to send key presses
110
	#edo ./copyq tests
93
	edo ./copyq tests
111 94
}
112 95

  
113 96
src_test() {
Thank you!