fix: noconfirm auto-selects first AUR match

This commit is contained in:
2026-05-08 11:01:02 +01:00
parent d39cdc3fd9
commit 153cca6132
8056 changed files with 1983098 additions and 779 deletions
@@ -0,0 +1,5 @@
def test():
IF VALUE:
return 1
ELSE:
return 0
@@ -0,0 +1,37 @@
project('cython_args', ['cython', 'c'],
# Needed because Windows Python builds are release-only and tend to be
# unhappy with a debug build type.
default_options : ['buildtype=release']
)
if meson.backend() != 'ninja'
error('MESON_SKIP_TEST: Ninja backend required')
endif
python = import('python').find_installation('python3')
python_dep = python.dependency()
if not python_dep.found()
error('MESON_SKIP_TEST: Python library not found.')
endif
mod = python.extension_module(
'cythonargs',
files('cythonargs.pyx'),
cython_args: [
'--compile-time-env',
'VALUE=1',
'-3',
],
)
test(
'test',
python,
args: [
'test.py'
],
workdir: meson.current_source_dir(),
env: environment({
'PYTHONPATH': meson.current_build_dir(),
})
)
@@ -0,0 +1,3 @@
import cythonargs
assert cythonargs.test() == 1