Diff primegen-0.97-r2 with a primegen-0.97-r3

/usr/portage/sci-libs/primegen/primegen-0.97-r3.ebuild 2023-10-09 14:52:35.092368491 +0300
1 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 flag-o-matic toolchain-funcs
7 7

  
8 8
DESCRIPTION="Small, fast library to generate primes in order"
9
HOMEPAGE="http://cr.yp.to/primegen.html"
10
SRC_URI="http://cr.yp.to/primegen/${P}.tar.gz"
9
HOMEPAGE="https://cr.yp.to/primegen.html"
10
SRC_URI="https://cr.yp.to/primegen/${P}.tar.gz"
11 11

  
12 12
LICENSE="public-domain"
13 13
SLOT="0"
14
KEYWORDS="amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
14
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
15 15

  
16 16
PATCHES=(
17 17
	"${FILESDIR}"/${P}-man.patch
18 18
	"${FILESDIR}"/${P}-missing-headers.patch
19 19
	"${FILESDIR}"/${P}-respect-ar-ranlib.patch
20
	"${FILESDIR}"/${PN}-0.97-main-rettype.patch
20 21
)
21 22

  
22 23
src_prepare() {
Thank you!