Diff polyml-5.9-r2 with a polyml-5.9.1

/usr/portage/dev-lang/polyml/polyml-5.9.1.ebuild 2023-10-09 14:52:29.472368350 +0300
6 6
inherit autotools
7 7

  
8 8
DESCRIPTION="Poly/ML is a full implementation of Standard ML"
9
HOMEPAGE="https://www.polyml.org"
10
SRC_URI="https://github.com/polyml/polyml/archive/v${PV}.tar.gz -> ${P}.tar.gz"
9
HOMEPAGE="https://www.polyml.org/
10
	https://github.com/polyml/polyml/"
11

  
12
if [[ "${PV}" == *9999* ]] ; then
13
	inherit git-r3
14

  
15
	EGIT_REPO_URI="https://github.com/${PN}/${PN}.git"
16
else
17
	SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz
18
		-> ${P}.tar.gz"
19

  
20
	KEYWORDS="~amd64 ~x86"
21
fi
11 22

  
12 23
LICENSE="LGPL-2.1"
13 24
SLOT="0/${PV}"
14
KEYWORDS="~amd64 ~x86"
15 25
IUSE="X +gmp portable"
16 26

  
17 27
RDEPEND="
......
23 33

  
24 34
PATCHES=(
25 35
	"${FILESDIR}"/${PN}-5.8.2-configure.patch
26
	"${FILESDIR}"/${P}-c++11.patch
36
	"${FILESDIR}"/${PN}-5.9-c++11.patch
27 37
)
28 38

  
29 39
src_prepare() {
Thank you!