dev-python/btrfsutil: disable py3.13

```
module.c: In function ‘path_converter’:
module.c:70:24: error: implicit declaration of function ‘_PyObject_LookupSpecial’ [-Wimplicit-function-declaration]
   70 |                 func = _PyObject_LookupSpecial(o, &PyId___fspath__);
      |                        ^~~~~~~~~~~~~~~~~~~~~~~
module.c:70:22: error: assignment to ‘PyObject *’ {aka ‘struct _object *’} from ‘int’ makes pointer from integer without a cast [-Wint-conversion]
   70 |                 func = _PyObject_LookupSpecial(o, &PyId___fspath__);
      |                      ^
```

Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James
2024-07-08 12:52:41 +01:00
parent 8d0ba00c09
commit 29331d343d
2 changed files with 4 additions and 2 deletions

View File

@@ -5,7 +5,8 @@ EAPI=8
DISTUTILS_EXT=1
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{10..13} )
# py3.13: https://github.com/kdave/btrfs-progs/issues/838
PYTHON_COMPAT=( python3_{10..12} )
VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/dsterba.asc
inherit distutils-r1 verify-sig

View File

@@ -5,7 +5,8 @@ EAPI=8
DISTUTILS_EXT=1
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{10..13} )
# py3.13: https://github.com/kdave/btrfs-progs/issues/838
PYTHON_COMPAT=( python3_{10..12} )
VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/dsterba.asc
inherit distutils-r1 verify-sig