Diff gumbo-0.10.1 with a gumbo-0.11.0
/usr/portage/dev-libs/gumbo/gumbo-0.11.0.ebuild 2023-10-09 14:52:29.500368350 +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 autotools |
7 | 7 | |
8 | 8 |
DESCRIPTION="The HTML5 parsing algorithm implemented as a pure C99 library" |
9 |
HOMEPAGE="https://github.com/google/gumbo-parser#readme" |
|
10 |
SRC_URI="https://github.com/google/gumbo-parser/archive/v${PV}.tar.gz -> ${P}.tar.gz" |
|
9 |
HOMEPAGE="https://codeberg.org/grisha/gumbo-parser" |
|
10 |
SRC_URI="https://codeberg.org/grisha/gumbo-parser/archive/${PV}.tar.gz -> ${P}.tar.gz" |
|
11 |
S="${WORKDIR}/gumbo-parser" |
|
11 | 12 | |
12 | 13 |
LICENSE="Apache-2.0" |
13 | 14 |
SLOT="0" |
14 |
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~ppc-macos ~x64-macos ~x64-solaris" |
|
15 |
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~ppc-macos ~x64-macos ~x64-solaris" |
|
15 | 16 |
IUSE="doc test" |
16 | 17 |
RESTRICT="!test? ( test )" |
17 | 18 | |
18 | 19 |
DEPEND="test? ( dev-cpp/gtest )" |
19 | 20 |
BDEPEND="doc? ( app-doc/doxygen )" |
20 | 21 | |
21 |
S="${WORKDIR}/gumbo-parser-${PV}" |
|
22 | ||
23 | 22 |
src_prepare() { |
24 | 23 |
default |
25 | 24 |
eautoreconf |
26 | 25 |
} |
27 | 26 | |
28 |
src_configure() { |
|
29 |
econf --disable-static |
|
30 |
} |
|
31 | ||
32 | 27 |
src_compile() { |
33 | 28 |
default |
34 | 29 |