Diff rasdaemon-0.6.8-r2 with a rasdaemon-0.7.0

/usr/portage/app-admin/rasdaemon/rasdaemon-0.7.0.ebuild 2023-10-09 14:52:28.164368317 +0300
3 3

  
4 4
EAPI=8
5 5

  
6
inherit autotools flag-o-matic linux-info systemd
6
inherit flag-o-matic linux-info systemd
7 7

  
8 8
DESCRIPTION="Reliability, Availability and Serviceability logging tool"
9 9
HOMEPAGE="https://github.com/mchehab/rasdaemon"
10
SRC_URI="https://github.com/mchehab/rasdaemon/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
10
SRC_URI="https://github.com/mchehab/rasdaemon/releases/download/v${PV}/${P}.tar.bz2"
11 11

  
12 12
LICENSE="GPL-2"
13 13
SLOT="0"
......
25 25
"
26 26
BDEPEND="sys-devel/gettext"
27 27

  
28
PATCHES=(
29
	"${FILESDIR}"/${PN}-0.6.8-bashisms-configure.patch
30
)
31

  
32 28
pkg_setup() {
33 29
	linux-info_pkg_setup
34 30
	local CONFIG_CHECK="~ACPI_EXTLOG ~DEBUG_FS"
35 31
	check_extra_config
36 32
}
37 33

  
38
src_prepare() {
39
	default
40

  
41
	eautoreconf
42
}
43

  
44 34
src_configure() {
45 35
	local myconfargs=(
46 36
		--enable-sqlite3
Thank you!