Diff mercury-22.01 with a mercury-22.01.1

/usr/portage/dev-lang/mercury/mercury-22.01.1.ebuild 2023-10-09 14:52:29.468368350 +0300
5 5

  
6 6
inherit autotools elisp-common flag-o-matic java-pkg-opt-2 multilib vcs-clean xdg-utils
7 7

  
8
PATCHSET_VER="0"
8
PATCHSET_VER="2"
9 9
MY_P=${PN}-srcdist-${PV}
10 10

  
11 11
DESCRIPTION="Mercury is a modern general-purpose logic/functional programming language"
......
15 15

  
16 16
LICENSE="GPL-2 LGPL-2"
17 17
SLOT="0"
18
KEYWORDS="~amd64 ~x86"
18
KEYWORDS="amd64 x86"
19 19

  
20
IUSE="debug doc emacs examples java mono profile readline threads trail"
20
IUSE="debug doc emacs examples java mono profile readline test threads trail"
21
RESTRICT="!test? ( test )"
21 22

  
22 23
DEPEND="net-libs/libnsl:0=
23 24
	readline? ( sys-libs/readline:= )
......
28 29
RDEPEND="${DEPEND}
29 30
	emacs? ( >=app-editors/emacs-23.1:* )"
30 31

  
32
BDEPEND="test? ( sys-libs/timezone-data )"
33

  
31 34
S="${WORKDIR}"/${MY_P}
32 35

  
33 36
SITEFILE=50${PN}-gentoo.el
......
176 179

  
177 180
	if use examples; then
178 181
		docinto samples
179
		dodoc samples/{*.m,README,Mmakefile}
182
		dodoc samples/{*.m,README.md,Mmakefile}
180 183
		dodoc -r samples/c_interface \
181 184
			samples/diff \
182 185
			samples/muz \
Thank you!