diff options
author | Eric Joldasov <bratishkaerik@getgoogleoff.me> | 2022-10-24 19:05:56 +0600 |
---|---|---|
committer | Florian Schmaus <flow@gentoo.org> | 2022-11-14 08:06:07 +0100 |
commit | c1d0c436cdd855241b17792463a26a31047cde75 (patch) | |
tree | 0759ac812ab0e6de886cd63a7844e11b6d19e501 /app-misc/piper | |
parent | app-misc/piper: drop 0.5.1-r2 (diff) | |
download | gentoo-c1d0c436cdd855241b17792463a26a31047cde75.tar.gz gentoo-c1d0c436cdd855241b17792463a26a31047cde75.tar.bz2 gentoo-c1d0c436cdd855241b17792463a26a31047cde75.zip |
app-misc/piper: enable py3.11, fix tests for 0.6
Closes: https://bugs.gentoo.org/827510
Closes: https://bugs.gentoo.org/834967
Signed-off-by: Eric Joldasov <bratishkaerik@getgoogleoff.me>
Signed-off-by: Florian Schmaus <flow@gentoo.org>
Diffstat (limited to 'app-misc/piper')
-rw-r--r-- | app-misc/piper/files/piper-0.6-fix-tests.patch | 68 | ||||
-rw-r--r-- | app-misc/piper/piper-0.6.ebuild | 4 |
2 files changed, 71 insertions, 1 deletions
diff --git a/app-misc/piper/files/piper-0.6-fix-tests.patch b/app-misc/piper/files/piper-0.6-fix-tests.patch new file mode 100644 index 000000000000..e4a358e0ab59 --- /dev/null +++ b/app-misc/piper/files/piper-0.6-fix-tests.patch @@ -0,0 +1,68 @@ +Upstream commit https://github.com/libratbag/piper/commit/603d68726364cea5e71ef1f0153e3641ec889063, backported to 0.6 +Bug: https://bugs.gentoo.org/827510 +Bug: https://bugs.gentoo.org/834967 + +From 603d68726364cea5e71ef1f0153e3641ec889063 Mon Sep 17 00:00:00 2001 +From: Tobias Kortkamp <tobias.kortkamp@gmail.com> +Date: Mon, 1 Aug 2022 15:57:28 +0200 +Subject: [PATCH] Fix tests for out-of-source builds +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +When the build directory is not _under_ the source directory then +flake8 cannot find the local config file and it will try to check +piper.in which fails per 1ed66262b77ebd9fe188894d36842527da39508a + +To fix this I propose to + +1. pass the config to flake8 explicitly +2. remove piper.in from the args list since it is excluded in the + flake8 config anyway +3. check the generated $build/piper.devel and $build/piper too per + 1ed66262b77ebd9fe188894d36842527da39508a +4. merge the --ignore in meson.build with the config + +Steps to reproduce: + +``` +$ meson ../build +$ ninja -C../build test +... +[17/18] Running all tests. +1/5 piper:all / files-in-git SKIP 0.01s exit status 77 +2/5 piper / validate appdata file OK 0.04s +3/5 piper / svg-lookup-check OK 0.10s +4/5 piper / check-svg OK 0.18s +5/5 piper / flake8 FAIL 1.00s exit status 1 +>>> MALLOC_PERTURB_=32 /gnu/store/yhhvrj6bns3ws85d338ah3bsc8jv4x64-profile/bin/flake8 --ignore=E501,W504 /home/tobias/ghq/github.com/libratbag/piper/piper /home/tobias/ghq/github.com/libratbag/piper/piper.in +――――――――――――――――――――――――――――――――――――――――――――――― ✀ ――――――――――――――――――――――――――――――――――――――――――――――― +/home/tobias/ghq/github.com/libratbag/piper/piper.in:11:19: E999 SyntaxError: invalid syntax +―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― +``` + +diff --git a/.flake8 b/.flake8 +index 8f1ba6f..170b294 100644 +--- a/.flake8 ++++ b/.flake8 +@@ -1,3 +1,3 @@ + [flake8] +-ignore = E402,E501 ++ignore = E402,E501,W504 + exclude = .git,__pycache__,build,data,piper/piper.py,piper.in +diff --git a/meson.build b/meson.build +index 180a552..a4c73a1 100644 +--- a/meson.build ++++ b/meson.build +@@ -135,8 +135,9 @@ if enable_tests + flake8 = find_program('flake8') + if flake8.found() + test('flake8', flake8, +- args: ['--ignore=E501,W504', ++ args: ['--config=' + join_paths(meson.current_source_dir(), '.flake8'), + join_paths(meson.source_root(), 'piper'), +- join_paths(meson.source_root(), 'piper.in')]) ++ join_paths(meson.current_build_dir(), 'piper'), ++ join_paths(meson.current_build_dir(), 'piper.devel')]) + endif + endif diff --git a/app-misc/piper/piper-0.6.ebuild b/app-misc/piper/piper-0.6.ebuild index bc683c50c698..78c03d436efd 100644 --- a/app-misc/piper/piper-0.6.ebuild +++ b/app-misc/piper/piper-0.6.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{8..10} ) +PYTHON_COMPAT=( python3_{8..11} ) inherit meson python-single-r1 xdg @@ -47,6 +47,8 @@ DEPEND=" virtual/libudev " +PATCHES=( "${FILESDIR}/${P}-fix-tests.patch" ) + src_configure() { python_setup |