Diff genext2fs-1.4.1 with a genext2fs-1.5.0

/usr/portage/sys-fs/genext2fs/genext2fs-1.5.0.ebuild 2023-10-09 14:52:35.512368502 +0300
1
# Copyright 1999-2020 Gentoo Authors
1
# Copyright 1999-2021 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5

  
6
inherit autotools
5 7

  
6 8
DESCRIPTION="generate ext2 file systems"
7
HOMEPAGE="https://sourceforge.net/projects/genext2fs"
8
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
9
HOMEPAGE="https://github.com/bestouff/genext2fs"
10
SRC_URI="https://github.com/bestouff/genext2fs/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
9 11

  
10 12
LICENSE="GPL-2"
11 13
SLOT="0"
12
KEYWORDS="~alpha amd64 arm ~hppa ~mips ppc sparc x86"
14
KEYWORDS="~alpha amd64 arm ~hppa ~mips ppc ~sparc x86"
15

  
16
src_prepare() {
17
	default
18
	eautoreconf
19
}
Thank you!