8c0d90828d
- update for multipython build - synchronize with python 3 version - debundle urllib3 and chardet - enable test suite - update urllib3 requirement to 1.19.1 - add idna requirement, refresh unbundling patch OBS-URL: https://build.opensuse.org/request/show/486162 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-requests?expand=0&rev=96
13 lines
325 B
Bash
13 lines
325 B
Bash
#!/bin/bash
|
|
|
|
wd=$PWD
|
|
tmpdir=`mktemp -d`
|
|
cd $tmpdir
|
|
tar xzf $wd/requests-*.tar.gz
|
|
cd requests-*
|
|
version=`python3 -c 'from requests.packages.urllib3 import __version__; print(__version__, end="")'`
|
|
cd ../..
|
|
rm -rf $tmpdir
|
|
cd $wd
|
|
sed -i 's/%define urllib3_version .*$/%define urllib3_version '"$version"'/' python-requests.spec
|