Diff easyeffects-7.0.5 with a easyeffects-7.0.7
/usr/portage/media-sound/easyeffects/easyeffects-7.0.7.ebuild 2023-10-09 14:52:31.772368408 +0300 | ||
---|---|---|
13 | 13 |
EGIT_REPO_URI="https://github.com/wwmm/easyeffects" |
14 | 14 |
else |
15 | 15 |
SRC_URI="https://github.com/wwmm/easyeffects/archive/v${PV}.tar.gz -> ${P}.tar.gz" |
16 |
KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86" |
|
16 |
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" |
|
17 | 17 |
fi |
18 | 18 | |
19 | 19 |
LICENSE="GPL-3" |
... | ... | |
58 | 58 |
pkg_pretend() { |
59 | 59 |
if [[ ${MERGE_TYPE} != "binary" ]] ; then |
60 | 60 |
if ! tc-is-gcc; then |
61 |
die "Since version 6.3.0 ${PN} only supports GCC due to required level of C++20 support" |
|
62 |
fi |
|
63 |
if [[ $(gcc-major-version) -lt 11 ]] ; then |
|
61 |
if ! tc-is-clang || [[ $(clang-major-version) -lt 16 ]]; then |
|
62 |
die "${PN} can only be built with GCC or >=Clang-16 due to required level of C++20 support" |
|
63 |
fi |
|
64 |
elif [[ $(gcc-major-version) -lt 11 ]] ; then |
|
64 | 65 |
die "Since version 6.2.5 ${PN} requires GCC 11 or newer to build (Bug #848072)" |
65 | 66 |
fi |
66 | 67 |
fi |