Diff stone-soup-0.28.0-r1 with a stone-soup-0.29.1

/usr/portage/games-roguelike/stone-soup/stone-soup-0.29.1.ebuild 2023-10-09 14:52:31.124368391 +0300
22 22

  
23 23
DESCRIPTION="Role-playing roguelike game of exploration and treasure-hunting in dungeons"
24 24
HOMEPAGE="https://crawl.develz.org"
25
SLOT="0.28"
25
SLOT="0.29"
26 26

  
27 27
# Leave empty string if not a _pre release
28 28
COMMITSHA=""
29 29
if [ -z "${COMMITSHA}" ]; then
30
	# This is a proper release
30
	# This is a tagged release
31
	# Note the archive URI and file layout changed upstream between 0.29.0 and 0.29.1
31 32
	SRC_URI="
32
		https://github.com/crawl/crawl/releases/download/${PV}/${PN/-/_}-${PV}.zip
33
		https://dev.gentoo.org/~stasibear/distfiles/${PN}.png -> ${PN}-${SLOT}.png
34
		https://dev.gentoo.org/~stasibear/distfiles/${PN}.svg -> ${PN}-${SLOT}.svg
33
		https://github.com/crawl/crawl/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz
35 34
	"
36
	MY_P="stone_soup-${PV}"
35
	MY_P="crawl-${PV}/crawl-ref"
37 36
else
38 37
	# This is a _pre release
39 38
	SRC_URI="
40 39
		https://github.com/crawl/crawl/archive/${COMMITSHA}.tar.gz -> ${P}.tar.gz
41
		https://dev.gentoo.org/~stasibear/distfiles/${PN}.png -> ${PN}-${SLOT}.png
42
		https://dev.gentoo.org/~stasibear/distfiles/${PN}.svg -> ${PN}-${SLOT}.svg
43 40
	"
44 41
	MY_P="crawl-${COMMITSHA}/crawl-ref"
45 42
fi
43
SRC_URI="
44
	${SRC_URI}
45
	https://dev.gentoo.org/~stasibear/distfiles/${PN}.png -> ${PN}-${SLOT}.png
46
	https://dev.gentoo.org/~stasibear/distfiles/${PN}.svg -> ${PN}-${SLOT}.svg
47
"
46 48

  
47 49
# 3-clause BSD: mt19937ar.cc, MSVC/stdint.h
48 50
# 2-clause BSD: all contributions by Steve Noonan and Jesse Luehrs
Thank you!