diff options
author | Tom Geelen <t.f.g.geelen@gmail.com> | 2024-06-29 14:23:04 +0000 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-06-30 12:33:50 -0700 |
commit | 8c486b8c29b7b7d4a57a088e40336a490b5d16cc (patch) | |
tree | cb0a14185ee0549ca47dbc273380670b6de9b82b /meta-python/recipes-devtools/python/python3-sqlparse_0.5.0.bb | |
parent | 35f3aa76f12d474fa8d088c10e4488536f12d812 (diff) | |
download | meta-openembedded-8c486b8c29b7b7d4a57a088e40336a490b5d16cc.tar.gz |
python3-sqlparse 0.4.4 -> 0.5.0
Drop patch as this version supports python3.
Furthermore move to hatchling build system.
Signed-off-by: Tom Geelen <t.f.g.geelen@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-sqlparse_0.5.0.bb')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-sqlparse_0.5.0.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-sqlparse_0.5.0.bb b/meta-python/recipes-devtools/python/python3-sqlparse_0.5.0.bb new file mode 100644 index 0000000000..e10c97d772 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-sqlparse_0.5.0.bb | |||
@@ -0,0 +1,29 @@ | |||
1 | DESCRIPTION = "Non-validating SQL parser module" | ||
2 | HOMEPAGE = "http://pypi.python.org/pypi/sqlparse" | ||
3 | SECTION = "devel/python" | ||
4 | LICENSE = "BSD-3-Clause" | ||
5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=2b136f573f5386001ea3b7b9016222fc" | ||
6 | |||
7 | SRC_URI:append = " \ | ||
8 | file://run-ptest \ | ||
9 | " | ||
10 | |||
11 | SRC_URI[sha256sum] = "714d0a4932c059d16189f58ef5411ec2287a4360f17cdd0edd2d09d4c5087c93" | ||
12 | |||
13 | export BUILD_SYS | ||
14 | export HOST_SYS | ||
15 | |||
16 | inherit pypi ptest python_hatchling | ||
17 | |||
18 | RDEPENDS:${PN}-ptest += "\ | ||
19 | python3-pytest \ | ||
20 | python3-unittest-automake-output \ | ||
21 | python3-unixadmin \ | ||
22 | " | ||
23 | |||
24 | do_install_ptest() { | ||
25 | install -d ${D}${PTEST_PATH}/tests | ||
26 | cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/ | ||
27 | } | ||
28 | |||
29 | BBCLASSEXTEND = "native nativesdk" | ||