Diff libcss-0.9.1-r1 with a libcss-9999

/usr/portage/dev-libs/libcss/libcss-9999.ebuild 2023-10-09 14:52:29.512368351 +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

  
6
inherit netsurf
6
inherit git-r3 netsurf
7 7

  
8 8
DESCRIPTION="CSS parser and selection engine, written in C"
9
HOMEPAGE="http://www.netsurf-browser.org/projects/libcss/"
10
SRC_URI="https://download.netsurf-browser.org/libs/releases/${P}-src.tar.gz"
9
HOMEPAGE="https://www.netsurf-browser.org/projects/libcss/"
11 10

  
11
EGIT_REPO_URI="https://git.netsurf-browser.org/${PN}.git"
12 12
LICENSE="MIT"
13 13
SLOT="0/${PV}"
14
KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
14
KEYWORDS=""
15 15
IUSE="test"
16 16

  
17 17
RESTRICT="!test? ( test )"
......
22 22
DEPEND="${RDEPEND}
23 23
	test? ( dev-lang/perl )"
24 24
BDEPEND="
25
	>=dev-util/netsurf-buildsystem-1.7-r1
25
	dev-util/netsurf-buildsystem
26 26
	virtual/pkgconfig"
27 27

  
28 28
src_prepare() {
29 29
	default
30
	sed -e '1i#pragma GCC diagnostic ignored "-Wimplicit-fallthrough"' \
31
		-i src/parse/parse.c src/select/arena_hash.h || die
32
	sed -e '1i#pragma GCC diagnostic ignored "-Wmaybe-uninitialized"' \
33
		-i src/parse/parse.c src/select/computed.c || die
34 30
}
35 31

  
36 32
_emake() {
Thank you!