[oe] [meta-python for-krogoth PATCH] pypi.bbclass: Allow fetching without requiring the hash

akuster808 akuster808 at gmail.com
Wed Oct 5 15:40:25 UTC 2016



On 10/03/2016 02:08 PM, Tim Orling wrote:
> Thank you. I was about to do this myself.
>
> Acked-by: Tim Orling (Intel) <ticotimo at gmail.com>
> Tested-by: Tim Orling (Intel) <ticotimo at gmail.com>
Acked-by: Armin Kuster <akuster808 at gmail.com>

>
> On Mon, Oct 3, 2016 at 1:17 PM, Otavio Salvador <otavio at ossystems.com.br>
> wrote:
>
>> This allow the fetching of packages in a backward compatible way[1],
>> using un-hashed packages.
>>
>> 1. https://bitbucket.org/pypa/pypi/issues/438/backwards-
>> compatible-un-hashed-package
>>
>> A equivalent fix is available on master in commit 7edad4d (pypi:
>> update the base pypi url to use the package info without requiring the
>> hash) so this is really a backport but without unrelated changes.
>>
>> Signed-off-by: Otavio Salvador <otavio at ossystems.com.br>
>> ---
>>
>>   meta-python/classes/pypi.bbclass | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/meta-python/classes/pypi.bbclass b/meta-python/classes/pypi.
>> bbclass
>> index 659e1c0..cd27cd2 100644
>> --- a/meta-python/classes/pypi.bbclass
>> +++ b/meta-python/classes/pypi.bbclass
>> @@ -13,7 +13,7 @@ def pypi_src_uri(d):
>>       package = d.getVar('PYPI_PACKAGE', True)
>>       package_ext = d.getVar('PYPI_PACKAGE_EXT', True)
>>       pv = d.getVar('PV', True)
>> -    return 'https://pypi.python.org/packages/source/%s/%s/%s-%s.%s' %
>> (package[0], package, package, pv, package_ext)
>> +    return 'https://files.pythonhosted.org/packages/source/%s/%s/%s-%s.%s'
>> % (package[0], package, package, pv, package_ext)
>>
>>   PYPI_SRC_URI ?= "${@pypi_src_uri(d)}"
>>
>> --
>> 2.10.0
>>
>> --
>> _______________________________________________
>> Openembedded-devel mailing list
>> Openembedded-devel at lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>>




More information about the Openembedded-devel mailing list