Diff genlop-0.30.10-r2 with a genlop-0.30.11

/usr/portage/app-portage/genlop/genlop-0.30.11.ebuild 2023-10-09 14:52:28.848368334 +0300
1
# Copyright 1999-2021 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5 5

  
6 6
inherit bash-completion-r1
7 7

  
8
DESCRIPTION="A nice emerge.log parser"
9
HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Perl"
10
SRC_URI="https://dev.gentoo.org/~dilfridge/distfiles/${P}.tar.gz"
8
DESCRIPTION="Nice emerge.log parser"
9
HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Perl https://github.com/gentoo-perl/genlop"
10

  
11
if [[ ${PV} == 9999 ]] ; then
12
	EGIT_REPO_URI="https://github.com/gentoo-perl/genlop"
13
	inherit git-r3
14
else
15
	SRC_URI="https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}.tar.xz"
16
	KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86"
17
fi
11 18

  
12 19
LICENSE="GPL-2"
13 20
SLOT="0"
14
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86"
15 21

  
16 22
DEPEND="
17 23
	dev-lang/perl
18 24
	dev-perl/Date-Manip
19
	dev-perl/libwww-perl"
25
	dev-perl/libwww-perl
26
"
20 27
RDEPEND="${DEPEND}"
21 28

  
22
# Populate the patches array for any patches for -rX releases
23
PATCHES=(
24
	"${FILESDIR}"/${P}-sync.patch
25
	"${FILESDIR}"/${P}-sandbox.patch
26
)
27

  
28 29
src_install() {
29 30
	dobin genlop
30 31
	dodoc README Changelog
Thank you!