From 75808db17caf8b960b351e3408e74142f4c85aac Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 14 Apr 2024 15:42:30 +0200 Subject: Adding upstream version 2.117.0. Signed-off-by: Daniel Baumann --- .../build-spec/debian/control.in | 18 ++++++++++++++++++ .../build-spec/fill-values | 3 +++ .../build-spec/orig/pyproject.toml | 17 +++++++++++++++++ .../python/python-could-use-pyproject-poetry/eval/desc | 2 ++ .../python-could-use-pyproject-poetry/eval/hints | 1 + 5 files changed, 41 insertions(+) create mode 100644 t/recipes/checks/languages/python/python-could-use-pyproject-poetry/build-spec/debian/control.in create mode 100644 t/recipes/checks/languages/python/python-could-use-pyproject-poetry/build-spec/fill-values create mode 100644 t/recipes/checks/languages/python/python-could-use-pyproject-poetry/build-spec/orig/pyproject.toml create mode 100644 t/recipes/checks/languages/python/python-could-use-pyproject-poetry/eval/desc create mode 100644 t/recipes/checks/languages/python/python-could-use-pyproject-poetry/eval/hints (limited to 't/recipes/checks/languages/python/python-could-use-pyproject-poetry') diff --git a/t/recipes/checks/languages/python/python-could-use-pyproject-poetry/build-spec/debian/control.in b/t/recipes/checks/languages/python/python-could-use-pyproject-poetry/build-spec/debian/control.in new file mode 100644 index 0000000..18cc016 --- /dev/null +++ b/t/recipes/checks/languages/python/python-could-use-pyproject-poetry/build-spec/debian/control.in @@ -0,0 +1,18 @@ +Source: [% $source %] +Priority: optional +Section: python +Maintainer: [% $author %] +Standards-Version: [% $standards_version %] +Build-Depends: [% $build_depends %] +Rules-Requires-Root: no + +Package: python3-[% $source %] +Architecture: all +Depends: ${misc:Depends}, python3 +Description: Test package (Python 3) + This is a test package designed to exercise some feature or tag of + Lintian. It is part of the Lintian test suite and may do very odd + things. It should not be installed like a regular package. It may + be an empty package. + . + Python 3 variant. diff --git a/t/recipes/checks/languages/python/python-could-use-pyproject-poetry/build-spec/fill-values b/t/recipes/checks/languages/python/python-could-use-pyproject-poetry/build-spec/fill-values new file mode 100644 index 0000000..06efd81 --- /dev/null +++ b/t/recipes/checks/languages/python/python-could-use-pyproject-poetry/build-spec/fill-values @@ -0,0 +1,3 @@ +Skeleton: source-native +Testname: python-could-use-pyproject-poetry +Description: Check for a package not built using pyproject poetry, but that could. diff --git a/t/recipes/checks/languages/python/python-could-use-pyproject-poetry/build-spec/orig/pyproject.toml b/t/recipes/checks/languages/python/python-could-use-pyproject-poetry/build-spec/orig/pyproject.toml new file mode 100644 index 0000000..cb6ebaa --- /dev/null +++ b/t/recipes/checks/languages/python/python-could-use-pyproject-poetry/build-spec/orig/pyproject.toml @@ -0,0 +1,17 @@ +[build-system] +requires = ["poetry>=0.12"] +build-backend = "poetry.core.masonry.api" + +[tool.poetry] +name = "foo" +description = "an example module" +version = "0.1" +authors = ["Stefano Rivera "] +license = "Expat" + +[tool.poetry.dependencies] +tomli = "^1.0.0" +importlib-metadata = { version="*", python = "<3.5" } + +[tool.poetry.scripts] +foo = 'foo:main' diff --git a/t/recipes/checks/languages/python/python-could-use-pyproject-poetry/eval/desc b/t/recipes/checks/languages/python/python-could-use-pyproject-poetry/eval/desc new file mode 100644 index 0000000..c1b69de --- /dev/null +++ b/t/recipes/checks/languages/python/python-could-use-pyproject-poetry/eval/desc @@ -0,0 +1,2 @@ +Testname: python-could-use-pyproject-poetry +Check: languages/python diff --git a/t/recipes/checks/languages/python/python-could-use-pyproject-poetry/eval/hints b/t/recipes/checks/languages/python/python-could-use-pyproject-poetry/eval/hints new file mode 100644 index 0000000..3fd8894 --- /dev/null +++ b/t/recipes/checks/languages/python/python-could-use-pyproject-poetry/eval/hints @@ -0,0 +1 @@ +python-could-use-pyproject-poetry (source): missing-prerequisite-for-pyproject-backend poetry.core.masonry.api (does not satisfy python3-poetry-core:any, pybuild-plugin-pyproject:any) [pyproject.toml:3] -- cgit v1.2.3