Diff age-1.0.0 with a age-1.1.1
/usr/portage/app-crypt/age/age-1.1.1.ebuild 2023-10-09 14:52:28.228368318 +0300 | ||
---|---|---|
1 |
# Copyright 1999-2022 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 |
inherit go-module |
6 | 6 | |
7 | 7 |
DESCRIPTION="A simple, modern and secure encryption tool (and Go library)" |
8 | 8 |
HOMEPAGE="https://github.com/FiloSottile/age" |
9 | 9 |
SRC_URI="https://github.com/FiloSottile/age/archive/v${PV}.tar.gz -> ${P}.tar.gz" |
10 |
SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz" |
|
10 |
SRC_URI+=" https://dev.gentoo.org/~graaff/age/${P}-deps.tar.xz" |
|
11 | 11 | |
12 | 12 |
S="${WORKDIR}/age-${PV}" |
13 | 13 | |
14 | 14 |
LICENSE="BSD" |
15 | 15 |
#RESTRICT+=" test" |
16 | 16 |
SLOT="0" |
17 |
KEYWORDS="amd64" |
|
17 |
KEYWORDS="amd64 ~arm64" |
|
18 | 18 | |
19 | 19 |
BDEPEND="dev-go/gox" |
20 | 20 | |
... | ... | |
23 | 23 |
} |
24 | 24 | |
25 | 25 |
src_test() { |
26 |
go test -race filippo.io/age/cmd/... || die |
|
26 |
go test filippo.io/age/cmd/... || die |
|
27 | 27 |
} |
28 | 28 | |
29 | 29 |
src_install() { |