mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-13 15:20:07 +02:00
83 lines
2.1 KiB
Bash
83 lines
2.1 KiB
Bash
SUMMARY="HTTP library with thread-safe connection pooling, file post, and more"
|
|
DESCRIPTION="- Re-use the same socket connection for multiple requests \
|
|
(HTTPConnectionPool and HTTPSConnectionPool) with optional client-side \
|
|
certificate verification.
|
|
- File posting (encode_multipart_formdata).
|
|
- Built-in redirection and retries (optional).
|
|
- Supports gzip and deflate decoding.
|
|
- Thread-safe and sanity-safe.
|
|
- Works with AppEngine, gevent, and eventlib.
|
|
- Tested on Python 2.6+, Python 3.2+, and PyPy, with 100% unit test coverage.
|
|
- Small and easy to understand codebase perfect for extending and building \
|
|
upon.
|
|
|
|
For a more comprehensive solution, have a look at \
|
|
Requests <http://python-requests.org/> which is also powered by urllib3"
|
|
HOMEPAGE="https://urllib3.readthedocs.io/
|
|
https://pypi.org/project/urllib3/
|
|
https://github.com/urllib3/urllib3"
|
|
COPYRIGHT="2008-2018 Andrey Petrov and contributors"
|
|
LICENSE="MIT"
|
|
REVISION="2"
|
|
SOURCE_URI="https://github.com/shazow/urllib3/archive/$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="521d99f682649c3fe417aff824add6ecf18bbf83113bb5171f5d8a50886599d3"
|
|
SOURCE_FILENAME="urllib3-$portVersion.tar.gz"
|
|
|
|
ARCHITECTURES="any"
|
|
|
|
PROVIDES="
|
|
$portName = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
|
|
PYTHON_VERSIONS=(3.10)
|
|
|
|
for pythonVersion in ${PYTHON_VERSIONS[@]}; do
|
|
pythonPackage=python${pythonVersion//.}
|
|
|
|
eval "PROVIDES_$pythonPackage=\"
|
|
${portName}_$pythonPackage = $portVersion
|
|
\""
|
|
eval "REQUIRES_$pythonPackage=\"
|
|
haiku
|
|
cmd:python$pythonVersion
|
|
\""
|
|
|
|
BUILD_REQUIRES+="
|
|
setuptools_$pythonPackage
|
|
"
|
|
BUILD_PREREQUIRES+="
|
|
cmd:python$pythonVersion
|
|
"
|
|
done
|
|
|
|
INSTALL()
|
|
{
|
|
for pythonVersion in ${PYTHON_VERSIONS[@]}; do
|
|
pythonPackage=python${pythonVersion//.}
|
|
|
|
python=python$pythonVersion
|
|
installLocation="$prefix"/lib/$python/vendor-packages/
|
|
export PYTHONPATH=$installLocation:$PYTHONPATH
|
|
|
|
mkdir -p "$installLocation"
|
|
rm -rf build
|
|
|
|
$python setup.py build install \
|
|
--root=/ --prefix="$prefix"
|
|
|
|
install -m 755 -d "$docDir"
|
|
install -m 644 -t "$docDir" README.rst
|
|
|
|
packageEntries $pythonPackage \
|
|
"$prefix"/lib/$python \
|
|
"$docDir"
|
|
done
|
|
}
|