diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2023-01-15 13:25:39 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-01-16 10:42:07 +0000 |
| commit | 80a7809e24f73127b97d79f0523503df3f81c2fd (patch) | |
| tree | 2f78d1da3dc193abf17eb83f6161684a96e7df42 /meta/recipes-devtools/python/python3-pygments_2.14.0.bb | |
| parent | 7cb0a3703068e2d25e6ca4c5d52d650ec277d5de (diff) | |
| download | poky-80a7809e24f73127b97d79f0523503df3f81c2fd.tar.gz | |
python3-pygments: upgrade 2.13.0 -> 2.14.0
Changelog:
==========
- Added lexers:
* Arturo (#2259)
* GAP session (#2211)
* Fift (#2249)
* func (#2232)
* Jsonnet (#2239)
* Minecraft schema (#2276)
* MIPS (#2228)
* Phix (#2222)
* Portugol (#2300)
* TL-b (#2247)
* World of Warcraft TOC format (#2244, #2245)
* Wren (#2271)
- Updated lexers:
* Abap: Update keywords (#2281)
* Alloy: Update for Alloy 6 (#1963)
* C family (C, C++ and many others):
- Fix an issue where a chunk would be wrongly recognized as a function
definition due to braces in comments (#2210)
- Improve parantheses handling for function definitions (#2207, #2208)
* C#: Fix number and operator recognition (#2256, #2257)
* CSound: Updated builtins (#2268)
* F#: Add ".fsx" file extension (#2282)
* gas (GNU assembler): recognize braces as punctuation (#2230)
* HTTP: Add 'CONNECT' keyword (#2242)
* Inform 6: Fix lexing of properties and doubles (#2214)
* INI: Allow comments that are not their own line (#2217, #2161)
* Java properties: Fix issue with whitespace-delimited keys, support
comments starting with '!' and escapes, no longer support undocumented
';' and '//' comments (#2241)
* LilyPond: Improve heuristics, add "\maxima" duration (#2283)
* LLVM: Add opaque pointer type (#2269)
* Macaulay2: Update keywords (#2305)
* Minecraft-related lexers (SNB and Minecraft function) moved to
"pygments.lexers.minecraft" (#2276)
* Nim: General improvements (#1970)
* Nix: Fix single quotes inside indented strings (#2289)
* Objective J: Fix catastrophic backtracking (#2225)
* NASM: Add support for SSE/AVX/AVX-512 registers as well as 'rel'
and 'abs' address operators (#2212)
* Powershell:
- Add "local:" keyword (#2254)
- Allow continuations without markers (#2262, #2263)
* Solidity: Add boolean operators (#2292)
* Spice: Add "enum" keyword and fix a bug regarding binary,
hexadecimal and octal number tokens (#2227)
* YAML: Accept colons in key names (#2277)
- Fix 'make mapfiles' when Pygments is not installed in editable mode
(#2223)
- Support more filetypes and compression types in 'autopygmentize' (#2219)
- Merge consecutive tokens in Autohotkey, Clay (#2248)
- Add ".nasm" as a recognized file type for NASM (#2280)
- Add "*Spec.hs" as a recognized file type for "HSpec" (#2308)
- Add "*.pyi" (for typing stub files) as a recognized file type for
Python (#2331)
- The HTML lexer no longer emits empty spans for whitespace (#2304)
- Fix "IRCFormatter" inserting linenumbers incorrectly (#2270)
(From OE-Core rev: 5ef9d667776b8078169f8b940da8cd1da1df9f22)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-pygments_2.14.0.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python3-pygments_2.14.0.bb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-pygments_2.14.0.bb b/meta/recipes-devtools/python/python3-pygments_2.14.0.bb new file mode 100644 index 0000000000..16769e9263 --- /dev/null +++ b/meta/recipes-devtools/python/python3-pygments_2.14.0.bb | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | SUMMARY = "Pygments is a syntax highlighting package written in Python." | ||
| 2 | DESCRIPTION = "Pygments is a syntax highlighting package written in Python." | ||
| 3 | HOMEPAGE = "http://pygments.org/" | ||
| 4 | LICENSE = "BSD-2-Clause" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=36a13c90514e2899f1eba7f41c3ee592" | ||
| 6 | |||
| 7 | inherit setuptools3 | ||
| 8 | SRC_URI[sha256sum] = "b3ed06a9e8ac9a9aae5a6f5dbe78a8a58655d17b43b93c078f094ddc476ae297" | ||
| 9 | |||
| 10 | DEPENDS += "\ | ||
| 11 | ${PYTHON_PN} \ | ||
| 12 | " | ||
| 13 | |||
| 14 | PYPI_PACKAGE = "Pygments" | ||
| 15 | |||
| 16 | inherit pypi | ||
| 17 | |||
| 18 | BBCLASSEXTEND = "native nativesdk" | ||
| 19 | |||
