Сравнение talloc-2.4.0 с talloc-2.4.1
/usr/portage/sys-libs/talloc/talloc-2.4.1.ebuild 2023-10-09 14:52:35.564368503 +0300 | ||
---|---|---|
3 | 3 | |
4 | 4 |
EAPI=8 |
5 | 5 | |
6 |
PYTHON_COMPAT=( python3_{9..11} ) |
|
6 |
PYTHON_COMPAT=( python3_{10..11} ) |
|
7 | 7 |
PYTHON_REQ_USE="threads(+)" |
8 | 8 |
inherit waf-utils python-single-r1 multilib-minimal |
9 | 9 | |
... | ... | |
13 | 13 | |
14 | 14 |
LICENSE="GPL-3 LGPL-3+ LGPL-2" |
15 | 15 |
SLOT="0" |
16 |
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris" |
|
17 |
IUSE="compat +python valgrind" |
|
16 |
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris" |
|
17 |
IUSE="compat +python test valgrind" |
|
18 | 18 | |
19 | 19 |
REQUIRED_USE="${PYTHON_REQUIRED_USE}" |
20 |
RESTRICT="test" |
|
20 |
RESTRICT="!test? ( test )" |
|
21 | 21 | |
22 | 22 |
RDEPEND=" |
23 | 23 |
!elibc_SunOS? ( |
... | ... | |
46 | 46 |
) |
47 | 47 | |
48 | 48 |
pkg_setup() { |
49 |
# try to turn off distcc and ccache for people that have a problem with it |
|
49 |
# Try to turn off distcc and ccache for people that have a problem with it |
|
50 | 50 |
export DISTCC_DISABLE=1 |
51 | 51 |
export CCACHE_DISABLE=1 |
52 | 52 | |
... | ... | |
63 | 63 |
sed -i "s/name = bld.pyembed_libname('pytalloc-util')/name = 'pytalloc-util'/" wscript || die |
64 | 64 |
fi |
65 | 65 | |
66 |
# what would you expect of waf? i won't even waste time trying. |
|
66 |
if use test ; then |
|
67 |
# TODO: Fix python tests to run w/ USE=python. |
|
68 |
truncate -s0 test_pytalloc.py || die |
|
69 |
fi |
|
70 | ||
71 |
# WAF |
|
67 | 72 |
multilib_copy_sources |
68 | 73 |
} |
69 | 74 |