diff options
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-cppy/0001-Fix-build-error-as-following.patch')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-cppy/0001-Fix-build-error-as-following.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-cppy/0001-Fix-build-error-as-following.patch b/meta-python/recipes-devtools/python/python3-cppy/0001-Fix-build-error-as-following.patch new file mode 100644 index 0000000000..5a613c827a --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-cppy/0001-Fix-build-error-as-following.patch | |||
@@ -0,0 +1,28 @@ | |||
1 | From a6ba15048bbb660abfa094b581862b4936ac4005 Mon Sep 17 00:00:00 2001 | ||
2 | From: Lei Maohui <leimaohui@fujitsu.com> | ||
3 | Date: Mon, 18 Apr 2022 12:19:35 +0900 | ||
4 | Subject: [PATCH] Fix build error as following: | ||
5 | |||
6 | flit_core.config.ConfigError: description must be specified under [project] or listed as a dynamic field. | ||
7 | |||
8 | Upstream-Status: Pending | ||
9 | Signed-off-by: Lei Maohui <leimaohui@fujitsu.com> | ||
10 | --- | ||
11 | pyproject.toml | 1 + | ||
12 | 1 file changed, 1 insertion(+) | ||
13 | |||
14 | diff --git a/pyproject.toml b/pyproject.toml | ||
15 | index 2d2ac74..66fcee0 100644 | ||
16 | --- a/pyproject.toml | ||
17 | +++ b/pyproject.toml | ||
18 | @@ -8,6 +8,7 @@ | ||
19 | |||
20 | [project] | ||
21 | name = "cppy" | ||
22 | +description = "A small C++ header library" | ||
23 | readme = "README.rst" | ||
24 | requires-python = ">=3.7" | ||
25 | license = {file = "LICENSE"} | ||
26 | -- | ||
27 | 2.25.1 | ||
28 | |||