Gentoo Archives: gentoo-dev

From: Brian Evans <grknight@g.o>
To: gentoo-dev@l.g.o
Subject: Re: [gentoo-dev] ant-tasks.eclass patch proposal
Date: Fri, 18 Jan 2019 16:23:53
Message-Id: ce561e1c-8a73-e460-8dae-3e1957615458@gentoo.org
In Reply to: [gentoo-dev] ant-tasks.eclass patch proposal by "Miroslav Šulc"
1 On 1/18/2019 11:11 AM, Miroslav Šulc wrote:
2 > @@ -130,7 +112,11 @@ ant-tasks_src_unpack() {
3 > cd "${S}"
4 >
5 > # replace build.xml with our modified for split building
6 > - mv -f "${WORKDIR}"/build.xml .
7 > + if [ -e "${WORKDIR}"/${PV}-build.patch ] ; then
8 > + epatch "${WORKDIR}"/${PV}-build.patch
9
10 Adding epatch without 'inherit epatch'? Sounds like gambling on faith.
11 Also limits to EAPI=6.
12
13 Brian
14
15 > + else
16 > + mv -f "${WORKDIR}"/build.xml .
17 > + fi
18 >
19 > cd lib
20 > # remove bundled xerces

Attachments

File name MIME type
signature.asc application/pgp-signature

Replies

Subject Author
Re: [gentoo-dev] ant-tasks.eclass patch proposal "Miroslav Šulc" <fordfrog@g.o>