Diff xca-2.4.0_p20230526-r1 with a xca-2.5.0

/usr/portage/app-crypt/xca/xca-2.5.0.ebuild 2023-10-09 14:52:28.248368319 +0300
5 5

  
6 6
inherit cmake xdg-utils
7 7

  
8
COMMIT=8983e5010d99c8d37bc7e316bf3ef00265763027
9

  
10 8
DESCRIPTION="A GUI to OpenSSL, RSA public keys, certificates, signing requests etc"
11 9
HOMEPAGE="https://hohnstaedt.de/xca/"
12 10
#SRC_URI="https://github.com/chris2511/${PN}/releases/download/RELEASE.${PV}/${P}.tar.gz"
13
SRC_URI="https://github.com/chris2511/xca/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
14
S="${WORKDIR}/xca-${COMMIT}"
11
SRC_URI="https://github.com/chris2511/xca/archive/refs/tags/RELEASE.${PV}.tar.gz -> ${P}.tar.gz"
12
S="${WORKDIR}/xca-RELEASE.${PV}"
15 13

  
16 14
LICENSE="BSD"
17 15
SLOT="0"
18
KEYWORDS="amd64 ~ppc x86 ~amd64-linux ~x86-linux ~ppc-macos"
16
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
19 17
IUSE="doc"
20 18

  
21 19
RDEPEND="
......
52 50
	doins misc/*.txt
53 51

  
54 52
	dosym xca /usr/bin/xca-console
55

  
56
	ewarn "This is an unofficial snapshot that is compatible with openssl 3."
57
	ewarn "One known flaw is that starting xca without a database will no longer open"
58
	ewarn "the GUI. Provide either a new or existing database as an argument on the"
59
	ewarn "command line."
60 53
}
61 54

  
62 55
pkg_postinst() {
Thank you!