diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2024-04-10 10:01:40 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-04-23 13:40:24 +0100 |
| commit | c2faa56d8d36da4fc04e55ea24d8b459363cd7a3 (patch) | |
| tree | 8d02ab16273f1d055319605c35d4e41998001649 /meta/recipes-devtools/python/python3-pycparser_2.22.bb | |
| parent | 0d28ec11cf489bcf7d3ccf4cc1719e99b11552d2 (diff) | |
| download | poky-c2faa56d8d36da4fc04e55ea24d8b459363cd7a3.tar.gz | |
python3-pycparser: upgrade 2.21 -> 2.22
License-Update:
===============
Slightly tweak the LICENSE file to be more canonical:
- Copyright year updated to 2022.
- "Eli Bendersky: changed to "the copyright holder"
Changelog:
===========
-Add missing SCHAR limit defines
-Use proper SPDX identifier
-Add Python 3.11 as a supported version
-Fix multi-pragma/single statement blocks (#479)
-Add an encoding parameter to parse_file
-Feature/add pragma support
-Set up permissions to ci.yml
-_build_tables: Invalidate cache before importing generated modules
-Upgrade GitHub Actions
-Create a Security Policy
-New example to generate AST from scratch
-Add support for Python 3.12
-ply: Make generated lextab.py deterministic
(From OE-Core rev: ada1bdcbf18e0d8707578b04cd39aa8a429b6677)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-pycparser_2.22.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python3-pycparser_2.22.bb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-pycparser_2.22.bb b/meta/recipes-devtools/python/python3-pycparser_2.22.bb new file mode 100644 index 0000000000..9a5abc42bd --- /dev/null +++ b/meta/recipes-devtools/python/python3-pycparser_2.22.bb | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | SUMMARY = "Parser of the C language, written in pure Python" | ||
| 2 | HOMEPAGE = "https://github.com/eliben/pycparser" | ||
| 3 | LICENSE = "BSD-3-Clause" | ||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=9761c3ffee7ba99c60dca0408fd3262b" | ||
| 5 | |||
| 6 | SRC_URI[sha256sum] = "491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6" | ||
| 7 | |||
| 8 | inherit pypi setuptools3 | ||
| 9 | |||
| 10 | BBCLASSEXTEND = "native nativesdk" | ||
| 11 | |||
| 12 | RDEPENDS:${PN}:class-target += "\ | ||
| 13 | python3-netclient \ | ||
| 14 | python3-ply \ | ||
| 15 | python3-pprint \ | ||
| 16 | " | ||
| 17 | |||
| 18 | RSUGGESTS:${PN}:class-target += "\ | ||
| 19 | cpp \ | ||
| 20 | cpp-symlinks \ | ||
| 21 | " | ||
