summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-httpx_0.27.0.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2024-09-10 17:02:48 +0800
committerKhem Raj <raj.khem@gmail.com>2024-09-10 07:20:38 -0700
commit7e53cb271aa75155881a0800399be66fee24ef81 (patch)
treeddce9f931352d07641c8e05fd5c12ccbe511041c /meta-python/recipes-devtools/python/python3-httpx_0.27.0.bb
parent32c3b995c9563f0ec0c7aae883a4e047fb66fe12 (diff)
downloadmeta-openembedded-7e53cb271aa75155881a0800399be66fee24ef81.tar.gz
python3-httpx: upgrade 0.27.0 -> 0.27.2
Changelog: ========== - Reintroduced supposedly-private URLTypes shortcut. - Support for zstd content decoding using the python zstandard package is added. Installable using httpx[zstd]. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-httpx_0.27.0.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-httpx_0.27.0.bb48
1 files changed, 0 insertions, 48 deletions
diff --git a/meta-python/recipes-devtools/python/python3-httpx_0.27.0.bb b/meta-python/recipes-devtools/python/python3-httpx_0.27.0.bb
deleted file mode 100644
index e4d3cbeee8..0000000000
--- a/meta-python/recipes-devtools/python/python3-httpx_0.27.0.bb
+++ /dev/null
@@ -1,48 +0,0 @@
1SUMMARY = "A next generation HTTP client for Python."
2SECTION = "devel/python"
3LICENSE = "BSD-3-Clause"
4LIC_FILES_CHKSUM = "file://LICENSE.md;md5=c624803bdf6fc1c4ce39f5ae11d7bd05"
5
6inherit pypi python_hatchling
7
8SRC_URI[sha256sum] = "a0cb88a46f32dc874e04ee956e4c2764aba2aa228f650b06788ba6bda2962ab5"
9
10DEPENDS += "\
11 python3-hatch-fancy-pypi-readme-native \
12"
13
14PACKAGECONFIG ??= ""
15PACKAGECONFIG[brotli] = ",,,python3-brotli"
16PACKAGECONFIG[http2] = ",,,python3-h2"
17PACKAGECONFIG[socks] = ",,,python3-socksio"
18
19RDEPENDS:${PN} += "\
20 python3-anyio \
21 python3-certifi \
22 python3-httpcore \
23 python3-idna \
24 python3-sniffio \
25 python3-json \
26 python3-core \
27 python3-netclient \
28 python3-compression \
29"
30
31PACKAGES += "\
32 ${PN}-cli \
33"
34
35RDEPENDS:${PN}-cli += "\
36 ${PN} \
37 python3-click \
38 python3-pygments \
39 python3-rich \
40"
41
42FILES:${PN} = "\
43 ${libdir}/${PYTHON_DIR} \
44"
45
46FILES:${PN}-cli = "\
47 ${bindir}/httpx \
48"