Diff lowdown-1.0.0 with a lowdown-1.0.1-r1
/usr/portage/app-text/lowdown/lowdown-1.0.1-r1.ebuild 2023-10-09 14:52:28.884368335 +0300 | ||
---|---|---|
12 | 12 |
S="${WORKDIR}/${PN}-${MY_PV}" |
13 | 13 | |
14 | 14 |
LICENSE="ISC" |
15 |
SLOT="0" |
|
16 |
KEYWORDS="amd64 ~arm64 ~x86" |
|
15 |
SLOT="0/2" |
|
16 |
KEYWORDS="~amd64 ~arm64 ~x86" |
|
17 | 17 | |
18 |
DEPEND="virtual/libcrypt:=" |
|
19 |
RDEPEND="${DEPEND}" |
|
18 |
DEPEND=" |
|
19 |
virtual/libcrypt:= |
|
20 |
" |
|
21 |
RDEPEND=" |
|
22 |
${DEPEND} |
|
23 |
" |
|
24 | ||
25 |
# configure tests for a bunch of BSD functions on Linux |
|
26 |
QA_CONFIG_IMPL_DECL_SKIP=( |
|
27 |
crypt_newhash |
|
28 |
crypt_checkpass |
|
29 |
warnc |
|
30 |
errc |
|
31 |
getexecname |
|
32 |
getprogname |
|
33 |
memset_s |
|
34 |
pledge |
|
35 |
recallocarray |
|
36 |
strlcat |
|
37 |
strlcpy |
|
38 |
strtonum |
|
39 |
TAILQ_FOREACH_SAFE |
|
40 |
unveil |
|
41 |
) |
|
20 | 42 | |
21 | 43 |
PATCHES=( |
22 | 44 |
"${FILESDIR}/lowdown-0.10.0-pkgconfig-libmd.patch" |
23 |
"${FILESDIR}/lowdown-0.11.1-linking.patch" |
|
45 |
"${FILESDIR}/lowdown-1.0.1-linking.patch" |
|
24 | 46 |
) |
25 | 47 | |
26 | 48 |
src_configure() { |
... | ... | |
41 | 63 |
} |
42 | 64 | |
43 | 65 |
src_test() { |
44 |
emake regress |
|
66 |
LD_LIBRARY_PATH="${S}" emake regress |
|
45 | 67 |
} |