Re: [gentoo-dev] [PATCH 1/3] python-any-r1.eclass: Constrain to EAPI >= 5

2019-12-14 Thread Ulrich Mueller
> On Sat, 14 Dec 2019, David Seifert wrote: > Also, it makes egencache failures in overlays more descriptive, and > hence I'd keep it for the time being. WFM signature.asc Description: PGP signature

Re: [gentoo-dev] [PATCH 1/3] python-any-r1.eclass: Constrain to EAPI >= 5

2019-12-14 Thread David Seifert
On Sat, 2019-12-14 at 12:29 +0100, Ulrich Mueller wrote: > > > > > > On Sat, 14 Dec 2019, David Seifert wrote: > > case "${EAPI:-0}" in > > - 0|1|2|3|4|5|6|7) > > + [01234]) > > + die "Unsupported EAPI=${EAPI:-0} (too old) for > > ${ECLASS}" > > + ;; > > + [567]) > >

Re: [gentoo-dev] [PATCH 1/3] python-any-r1.eclass: Constrain to EAPI >= 5

2019-12-14 Thread Michał Górny
On Sat, 2019-12-14 at 12:29 +0100, Ulrich Mueller wrote: > > > > > > On Sat, 14 Dec 2019, David Seifert wrote: > > case "${EAPI:-0}" in > > - 0|1|2|3|4|5|6|7) > > + [01234]) > > + die "Unsupported EAPI=${EAPI:-0} (too old) for ${ECLASS}" > > + ;; > > + [567]) > >

Re: [gentoo-dev] [PATCH 1/3] python-any-r1.eclass: Constrain to EAPI >= 5

2019-12-14 Thread David Seifert
On Sat, 2019-12-14 at 12:29 +0100, Ulrich Mueller wrote: > > > > > > On Sat, 14 Dec 2019, David Seifert wrote: > > case "${EAPI:-0}" in > > - 0|1|2|3|4|5|6|7) > > + [01234]) > > + die "Unsupported EAPI=${EAPI:-0} (too old) for > > ${ECLASS}" > > + ;; > > + [567]) > >

Re: [gentoo-dev] [PATCH 1/3] python-any-r1.eclass: Constrain to EAPI >= 5

2019-12-14 Thread Ulrich Mueller
> On Sat, 14 Dec 2019, David Seifert wrote: > case "${EAPI:-0}" in > - 0|1|2|3|4|5|6|7) > + [01234]) > + die "Unsupported EAPI=${EAPI:-0} (too old) for ${ECLASS}" > + ;; > + [567]) > ;; > *) > die "Unsupported EAPI=${EAPI}

[gentoo-dev] [PATCH 1/3] python-any-r1.eclass: Constrain to EAPI >= 5

2019-12-14 Thread David Seifert
Signed-off-by: David Seifert --- eclass/python-any-r1.eclass | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/eclass/python-any-r1.eclass b/eclass/python-any-r1.eclass index 3863ef6fa84..869ece64c65 100644 --- a/eclass/python-any-r1.eclass +++ b/eclass/python-any-r1.ecla