Diff brotlicffi-1.0.9.2-r2 with a brotlicffi-1.1.0.0

/usr/portage/dev-python/brotlicffi/brotlicffi-1.1.0.0.ebuild 2023-10-09 14:52:30.260368370 +0300
1 1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
# please keep this ebuild at EAPI 7 -- sys-apps/portage dep
5
EAPI=7
4
# please keep this ebuild at EAPI 8 -- sys-apps/portage dep
5
EAPI=8
6 6

  
7 7
DISTUTILS_EXT=1
8 8
DISTUTILS_USE_PEP517=setuptools
......
11 11
inherit distutils-r1
12 12

  
13 13
# Commit of the Brotli library bundled within brotlipy.
14
BROTLI_BUNDLED_COMMIT="46c1a881b41bb638c76247558aa04b1591af3aa7"
14
BROTLI_BUNDLED_COMMIT="ed738e842d2fbdf2d6459e39267a633c4a9b2f5d"
15 15

  
16 16
DESCRIPTION="Python binding to the Brotli library"
17 17
HOMEPAGE="
......
24 24
	test? (
25 25
		https://github.com/google/brotli/archive/${BROTLI_BUNDLED_COMMIT}.tar.gz
26 26
			-> brotli-${BROTLI_BUNDLED_COMMIT}.tar.gz
27
		https://github.com/google/brotli/blob/ed738e842d2fbdf2d6459e39267a633c4a9b2f5d/tests/testdata/alice29.txt
27 28
	)
28 29
"
29 30

  
30 31
LICENSE="MIT"
31 32
SLOT="0"
32
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~ppc-macos ~x64-macos ~x64-solaris"
33
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x64-solaris"
33 34

  
34 35
RDEPEND="
35 36
	app-arch/brotli:=
......
55 56
	default
56 57
	if use test; then
57 58
		mv "brotli-${BROTLI_BUNDLED_COMMIT}"/tests "${S}"/libbrotli/ || die
59
		# sigh, google and their stupid .gitattributes
60
		cp "${DISTDIR}"/alice29.txt "${S}"/libbrotli/tests/testdata/ || die
58 61
	fi
59 62
}
60 63

  
Thank you!