Diff compsize-1.4 with a compsize-1.5

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

  
4 4
EAPI=7
5 5

  
6
inherit flag-o-matic
6
inherit flag-o-matic toolchain-funcs
7 7

  
8 8
DESCRIPTION="Utility to find btrfs compression type/ratio on a file or set of files"
9 9
HOMEPAGE="https://github.com/kilobyte/compsize"
......
13 13
	EGIT_REPO_URI="https://github.com/kilobyte/compsize.git"
14 14
else
15 15
	SRC_URI="https://github.com/kilobyte/compsize/archive/v${PV}.tar.gz -> ${P}.tar.gz"
16
	KEYWORDS="~amd64 ~x86"
16
	KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
17 17
fi
18 18

  
19 19
LICENSE="GPL-2+ GPL-2"
......
29 29
}
30 30

  
31 31
src_configure() {
32
	tc-export CC
33

  
32 34
	use debug && append-cflags -Wall -DDEBUG -g
33 35
	default
34 36
}
Thank you!