Re: Re: [PATCH] ant-tasks.eclass: use eapi7-ver

"Marty E. Plummer" <[email protected]> Mon, 21 May 2018 23:01:10 -0500
Newsgroups gmane.linux.gentoo.devel,gmane.linux.gentoo.java
Message-ID <20180522040110.a65ihwfwpljw34mt@proprietary-killer>
On Tue, May 22, 2018 at 05:57:35AM +0200, Micha?? G??rny wrote:
> W dniu pon, 21.05.2018 o godzinie 17???03???-0500, u??ytkownik Marty E.
> Plummer napisa??:
> > Actually I just noticed that eapi7-ver can now be used for EAPI 0-6, so
> > just unconditionally use it if EAPI != 7
> > 
> > Package-Manager: Portage-2.3.36, Repoman-2.3.9
> > ---
> >  eclass/ant-tasks.eclass | 11 ++++++-----
> >  1 file changed, 6 insertions(+), 5 deletions(-)
> > 
> > diff --git a/eclass/ant-tasks.eclass b/eclass/ant-tasks.eclass
> > index e008e6eaea8..110344f712d 100644
> > --- a/eclass/ant-tasks.eclass
> > +++ b/eclass/ant-tasks.eclass
> > @@ -16,7 +16,8 @@
> >  JAVA_ANT_DISABLE_ANT_CORE_DEP=true
> >  # rewriting build.xml for are the testcases has no reason atm
> >  JAVA_PKG_BSFIX_ALL=no
> > -inherit versionator java-pkg-2 java-ant-2
> > +inherit java-pkg-2 java-ant-2
> > +[[ ${EAPI} == 7 ]] || inherit eapi7-ver
> 
> Always check for old EAPIs, instead of expecting people to keep updating
> this forever.
> 
Would you prefer something like
[[ ${EAPI} ~= [0-6] ]] && inherit eapi7-ver, then?
The way I see it, every consumer of ant-tasks is eapi 5 right now, 5 and
6 if my pull request is accepted. Once every consumer is eapi 7 or greater,
this line can be removed entirely and it won't be needing updates
'forever'.
> >  
> >  EXPORT_FUNCTIONS src_unpack src_compile src_install
> >  
> > @@ -60,12 +61,12 @@ if [[ ${PV} == *beta2* ]]; then
> >  	MY_PV=${PV/_beta2/beta}
> >  	UPSTREAM_PREFIX="http://people.apache.org/dist/ant/v1.7.1beta2/src"
> >  	GENTOO_PREFIX="https://dev.gentoo.org/~caster/distfiles"
> > -	ANT_TASK_PV=$(get_version_component_range 1-3)
> > +	ANT_TASK_PV=$(ver_cut 1-3)
> >  elif [[ ${PV} == *_rc* ]]; then
> >  	MY_PV=${PV/_rc/RC}
> >  	UPSTREAM_PREFIX="https://dev.gentoo.org/~caster/distfiles"
> >  	GENTOO_PREFIX="https://dev.gentoo.org/~caster/distfiles"
> > -	ANT_TASK_PV=$(get_version_component_range 1-3)
> > +	ANT_TASK_PV=$(ver_cut 1-3)
> >  else
> >  	# default for final releases
> >  	MY_PV=${PV}
> > @@ -101,7 +102,7 @@ if [[ -z "${ANT_TASK_DISABLE_VM_DEPS}" ]]; then
> >  fi
> >  
> >  # we need direct blockers with old ant-tasks for file collisions - bug #252324
> > -if version_is_at_least 1.7.1 ; then
> > +if ver_test -ge 1.7.1; then
> >  	DEPEND+=" !dev-java/ant-tasks"
> >  fi
> >  
> > @@ -167,7 +168,7 @@ ant-tasks_src_install() {
> >  	java-pkg_register-ant-task --version "${ANT_TASK_PV}"
> >  
> >  	# create the compatibility symlink
> > -	if version_is_at_least 1.7.1_beta2; then
> > +	if ver_test -ge 1.7.1_beta2; then
> >  		dodir /usr/share/ant/lib
> >  		dosym /usr/share/${PN}/lib/${PN}.jar /usr/share/ant/lib/${PN}.jar
> >  	fi
> 
> -- 
> Best regards,
> Micha?? G??rny
> 
>