diff mbox series

[meta-python,1/2] python3-tabulate: Upgrade 0.8.10 -> 0.9.0

Message ID 20221007094649.3896430-1-leon.anavi@konsulko.com
State Under Review
Headers show
Series [meta-python,1/2] python3-tabulate: Upgrade 0.8.10 -> 0.9.0 | expand

Commit Message

Leon Anavi Oct. 7, 2022, 9:46 a.m. UTC
Upgrade to release 0.9.0:

- Migrate to pyproject.toml project layout (PEP 621).
- New output formats: `asciidoc`, various `*grid` and `*outline`
  formats.
- New output features: vertical row alignment, separating lines.
- New input format: list of dataclasses (Python 3.7 or later).
- Support infinite iterables as row indices.
- Improve column width options.
- Improve support for ANSI escape sequences and document the
  behavior.
- Various bug fixes.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../python/python3-tabulate_0.8.10.bb         |  8 -------
 .../python/python3-tabulate_0.9.0.bb          | 21 +++++++++++++++++++
 2 files changed, 21 insertions(+), 8 deletions(-)
 delete mode 100644 meta-python/recipes-devtools/python/python3-tabulate_0.8.10.bb
 create mode 100644 meta-python/recipes-devtools/python/python3-tabulate_0.9.0.bb
diff mbox series

Patch

diff --git a/meta-python/recipes-devtools/python/python3-tabulate_0.8.10.bb b/meta-python/recipes-devtools/python/python3-tabulate_0.8.10.bb
deleted file mode 100644
index 222e6e7bb..000000000
--- a/meta-python/recipes-devtools/python/python3-tabulate_0.8.10.bb
+++ /dev/null
@@ -1,8 +0,0 @@ 
-SUMMARY = "Pretty-print tabular data"
-HOMEPAGE = "https://github.com/astanin/python-tabulate"
-LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=6ad1430c0c4824ec6a5dbb9754b011d7"
-
-SRC_URI[sha256sum] = "6c57f3f3dd7ac2782770155f3adb2db0b1a269637e42f27599925e64b114f519"
-
-inherit pypi setuptools3
diff --git a/meta-python/recipes-devtools/python/python3-tabulate_0.9.0.bb b/meta-python/recipes-devtools/python/python3-tabulate_0.9.0.bb
new file mode 100644
index 000000000..a25a1c66d
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-tabulate_0.9.0.bb
@@ -0,0 +1,21 @@ 
+SUMMARY = "Pretty-print tabular data"
+HOMEPAGE = "https://github.com/astanin/python-tabulate"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=6ad1430c0c4824ec6a5dbb9754b011d7"
+
+SRC_URI[sha256sum] = "0095b12bf5966de529c0feb1fa08671671b3368eec77d7ef7ab114be2c068b3c"
+
+inherit pypi python_setuptools_build_meta
+
+DEPENDS += " \
+	${PYTHON_PN}-setuptools-scm-native \
+	${PYTHON_PN}-toml-native \
+"
+
+RDEPENDS:${PN} += " \
+	${PYTHON_PN}-html \
+	${PYTHON_PN}-core \
+	${PYTHON_PN}-io \
+	${PYTHON_PN}-math \
+	${PYTHON_PN}-profile \
+"