Diff fvwm3-1.0.6a with a fvwm3-1.0.7

/usr/portage/x11-wm/fvwm3/fvwm3-1.0.7.ebuild 2023-10-09 14:52:36.000368514 +0300
13 13
if [[ ${PV} == 9999 ]]; then
14 14
	inherit git-r3
15 15
	EGIT_REPO_URI="https://github.com/fvwmorg/fvwm3.git"
16
	EGIT_BRANCH="master"
16
	EGIT_BRANCH="main"
17 17
else
18 18
	SRC_URI="https://github.com/fvwmorg/fvwm3/releases/download/${PV}/${P}.tar.gz"
19 19
	KEYWORDS="~amd64 ~riscv"
......
96 96
	default
97 97
	use go && ( sed -e 's/GOFLAGS=-ldflags="-s -w"/GOFLAGS=/' \
98 98
		-i bin/FvwmPrompt/Makefile.am || die )
99
	# Patch configure to allow later go versions
100
	sed -e 's/1.19\*)$/1.19*|1.20*|1.21*)/' -i configure.ac || die
101 99

  
102 100
	eautoreconf
103 101
}
......
157 155
pkg_postinst() {
158 156
	if use go; then
159 157
		ewarn "FvwmPrompt has been installed, it provides the functionality of both FvwmCommand and FvwmConsole."
160
		ewarn "For compatibility with the existing fvwm2 configurations, the ebuild will install a FvwmCommand wrapper script."
161
		ewarn "If you need FvwmConsole, install ${PN} with USE=\"-go\", but FvwmPrompt and FvwmCommand will not be installed."
158
		ewarn "For compatibility with the existing fvwm2 configurations, the ebuild will install a FvwmCommand wrapper."
159
		ewarn "If you need FvwmConsole, install ${PN} with USE=\"-go\";"
160
		ewarn "however FvwmPrompt and FvwmCommand will not be installed."
162 161
	else
163 162
		ewarn "FvwmConsole has been installed, but FvwmCommand and FvwmPrompt are no longer included in this ebuild."
164 163
		ewarn "If you need FvwmPrompt or FvwmCommand, install ${PN} with USE=\"go\"."
Thank you!