Re: [gentoo-dev] [PATCH] fortran-2.eclass: support EAPI 7

2018-11-05 Thread Andrew Savchenko
On Fri, 02 Nov 2018 15:20:16 +0100 Michał Górny wrote: > On Fri, 2018-11-02 at 01:27 +0300, Andrew Savchenko wrote: > > Hi! > > > > On Tue, 30 Oct 2018 08:18:58 +0100 Michał Górny wrote: > > > On Mon, 2018-10-29 at 03:57 +0300, Andrew Savchenko wrote: > > > > On Sun, 28 Oct 2018 19:29:28 +0100 Mic

Re: [gentoo-dev] [PATCH] fortran-2.eclass: support EAPI 7

2018-11-02 Thread Michał Górny
On Fri, 2018-11-02 at 01:27 +0300, Andrew Savchenko wrote: > Hi! > > On Tue, 30 Oct 2018 08:18:58 +0100 Michał Górny wrote: > > On Mon, 2018-10-29 at 03:57 +0300, Andrew Savchenko wrote: > > > On Sun, 28 Oct 2018 19:29:28 +0100 Michał Górny wrote: > > > > On Sun, 2018-10-28 at 01:38 +0300, Andrew

Re: [gentoo-dev] [PATCH] fortran-2.eclass: support EAPI 7

2018-11-01 Thread Michael Orlitzky
On 11/01/2018 06:27 PM, Andrew Savchenko wrote: > > This eclass is small, so no harm here. But for larger eclasses > (hello java-*.eclass) this will hinder updates considerably. I > prefer to fix something rather than to fix nothing while > frustrating in attempt to fix everything at once. > > Al

Re: [gentoo-dev] [PATCH] fortran-2.eclass: support EAPI 7

2018-11-01 Thread Andrew Savchenko
Hi! On Tue, 30 Oct 2018 08:18:58 +0100 Michał Górny wrote: > On Mon, 2018-10-29 at 03:57 +0300, Andrew Savchenko wrote: > > On Sun, 28 Oct 2018 19:29:28 +0100 Michał Górny wrote: > > > On Sun, 2018-10-28 at 01:38 +0300, Andrew Savchenko wrote: > > > > Hi all! > > > > > > > > The only blocker for

Re: [gentoo-dev] [PATCH] fortran-2.eclass: support EAPI 7

2018-11-01 Thread Andrew Savchenko
Hi! On Mon, 29 Oct 2018 23:52:31 +0100 Andreas K. Huettel wrote: > > > > -inherit eutils toolchain-funcs > > +inherit toolchain-funcs > > > > case ${EAPI:-0} in > > - 4|5|6) EXPORT_FUNCTIONS pkg_setup ;; > > + 4|5|6|7) EXPORT_FUNCTIONS pkg_setup ;; > > *) die "EAPI=${EAPI} is not suppor

Re: [gentoo-dev] [PATCH] fortran-2.eclass: support EAPI 7

2018-10-30 Thread Michał Górny
On Mon, 2018-10-29 at 03:57 +0300, Andrew Savchenko wrote: > On Sun, 28 Oct 2018 19:29:28 +0100 Michał Górny wrote: > > On Sun, 2018-10-28 at 01:38 +0300, Andrew Savchenko wrote: > > > Hi all! > > > > > > The only blocker for EAPI 7 update is eutils inheritance, but it > > > seems to be not used w

Re: [gentoo-dev] [PATCH] fortran-2.eclass: support EAPI 7

2018-10-29 Thread Andreas K. Huettel
> > -inherit eutils toolchain-funcs > +inherit toolchain-funcs > > case ${EAPI:-0} in > - 4|5|6) EXPORT_FUNCTIONS pkg_setup ;; > + 4|5|6|7) EXPORT_FUNCTIONS pkg_setup ;; > *) die "EAPI=${EAPI} is not supported" ;; > esac > ^ The disadvantage of this is that eutils inheritance th

Re: [gentoo-dev] [PATCH] fortran-2.eclass: support EAPI 7

2018-10-28 Thread Andrew Savchenko
On Sun, 28 Oct 2018 19:29:28 +0100 Michał Górny wrote: > On Sun, 2018-10-28 at 01:38 +0300, Andrew Savchenko wrote: > > Hi all! > > > > The only blocker for EAPI 7 update is eutils inheritance, but it > > seems to be not used within the current eclass code, probably a > > remnant from older days.

Re: [gentoo-dev] [PATCH] fortran-2.eclass: support EAPI 7

2018-10-28 Thread Michał Górny
On Sun, 2018-10-28 at 01:38 +0300, Andrew Savchenko wrote: > Hi all! > > The only blocker for EAPI 7 update is eutils inheritance, but it > seems to be not used within the current eclass code, probably a > remnant from older days. So it is removed. > > Looks like no other EAPI 7 specific changes