Re: [gentoo-dev] [PATCH] pypi.eclass: A new eclass to aid creating PyPI SRC_URIs

2023-02-01 Thread Michał Górny
On Wed, 2023-02-01 at 23:20 +0100, Adrian Schollmeyer wrote: > Hi, > > Am Mittwoch, dem 01.02.2023 um 20:37 +0100 schrieb Michał Górny: > > +   printf "https://files.pythonhosted.org/packages/source/%s; \ > > +   "${project::1}/${project}/${project}-${version}${suffix}" > We have

Re: [gentoo-dev] [PATCH] pypi.eclass: A new eclass to aid creating PyPI SRC_URIs

2023-02-01 Thread Anna (cybertailor) Vyalkova
Much wanted eclass. Thanks!

Re: [gentoo-dev] [PATCH] pypi.eclass: A new eclass to aid creating PyPI SRC_URIs

2023-02-01 Thread Adrian Schollmeyer
Hi, Am Mittwoch, dem 01.02.2023 um 20:37 +0100 schrieb Michał Górny: > +   printf "https://files.pythonhosted.org/packages/source/%s; \ > +   "${project::1}/${project}/${project}-${version}${suffix}" We have the mirror://pypi URI for PyPI sources. Is there a reason not to use this

[gentoo-dev] [PATCH] pypi.eclass: A new eclass to aid creating PyPI SRC_URIs

2023-02-01 Thread Michał Górny
Signed-off-by: Michał Górny --- eclass/pypi.eclass | 117 + 1 file changed, 117 insertions(+) create mode 100644 eclass/pypi.eclass Example use on: https://github.com/gentoo/gentoo/pull/29361 diff --git a/eclass/pypi.eclass b/eclass/pypi.eclass