mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-14 15:50:07 +02:00
79 lines
2.2 KiB
Bash
79 lines
2.2 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="1"
|
|
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_PACKAGES=(python39 python310)
|
|
PYTHON_VERSIONS=(3.9 3.10)
|
|
for i in "${!PYTHON_PACKAGES[@]}"; do
|
|
pythonPackage=${PYTHON_PACKAGES[i]}
|
|
pythonVersion=${PYTHON_VERSIONS[$i]}
|
|
eval "PROVIDES_${pythonPackage}=\"\
|
|
${portName}_$pythonPackage = $portVersion\
|
|
\"; \
|
|
REQUIRES_$pythonPackage=\"\
|
|
haiku\n\
|
|
cmd:python$pythonVersion\
|
|
\""
|
|
BUILD_REQUIRES="$BUILD_REQUIRES
|
|
setuptools_$pythonPackage"
|
|
BUILD_PREREQUIRES="$BUILD_PREREQUIRES
|
|
cmd:python$pythonVersion"
|
|
done
|
|
|
|
INSTALL()
|
|
{
|
|
for i in "${!PYTHON_PACKAGES[@]}"; do
|
|
pythonPackage=${PYTHON_PACKAGES[i]}
|
|
pythonVersion=${PYTHON_VERSIONS[$i]}
|
|
|
|
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
|
|
}
|