From 9ed6ce95d342f49ca8998af09374318eeca1ca96 Mon Sep 17 00:00:00 2001 From: "Satadru Pramanik, DO, MPH, MEng" Date: Mon, 21 Oct 2024 12:37:13 -0400 Subject: [PATCH] Switch meson to using pip and update to 1.6.0 (#10638) Signed-off-by: Satadru Pramanik --- lib/const.rb | 2 +- lib/fixup.rb | 4 +- manifest/armv7l/i/itstool.filelist | 8 - manifest/armv7l/p/py3_itstool.filelist | 16 ++ .../p/py3_meson.filelist} | 246 +----------------- manifest/i686/i/itstool.filelist | 8 - manifest/i686/p/py3_itstool.filelist | 16 ++ .../p/py3_meson.filelist} | 246 +----------------- manifest/x86_64/i/itstool.filelist | 8 - manifest/x86_64/p/py3_itstool.filelist | 16 ++ .../p/py3_meson.filelist} | 246 +----------------- packages/appstream.rb | 2 +- packages/baobab.rb | 2 +- packages/buildessential.rb | 2 +- packages/ciano.rb | 2 +- packages/geary.rb | 2 +- packages/gnome_calculator.rb | 2 +- packages/gparted.rb | 2 +- packages/granite.rb | 2 +- packages/gtk_doc.rb | 2 +- packages/gucharmap.rb | 2 +- packages/itstool.rb | 36 --- packages/mesonbuild.rb | 23 -- packages/metadata_cleaner.rb | 4 +- packages/py3_itstool.rb | 25 ++ packages/py3_meson.rb | 24 ++ packages/yelp.rb | 2 +- packages/yelp_xsl.rb | 2 +- tools/packages.yaml | 20 +- 29 files changed, 155 insertions(+), 817 deletions(-) delete mode 100644 manifest/armv7l/i/itstool.filelist create mode 100644 manifest/armv7l/p/py3_itstool.filelist rename manifest/{x86_64/m/mesonbuild.filelist => armv7l/p/py3_meson.filelist} (62%) delete mode 100644 manifest/i686/i/itstool.filelist create mode 100644 manifest/i686/p/py3_itstool.filelist rename manifest/{armv7l/m/mesonbuild.filelist => i686/p/py3_meson.filelist} (62%) delete mode 100644 manifest/x86_64/i/itstool.filelist create mode 100644 manifest/x86_64/p/py3_itstool.filelist rename manifest/{i686/m/mesonbuild.filelist => x86_64/p/py3_meson.filelist} (62%) delete mode 100644 packages/itstool.rb delete mode 100644 packages/mesonbuild.rb create mode 100644 packages/py3_itstool.rb create mode 100644 packages/py3_meson.rb diff --git a/lib/const.rb b/lib/const.rb index 284004012..3b62a739d 100644 --- a/lib/const.rb +++ b/lib/const.rb @@ -3,7 +3,7 @@ require 'etc' OLD_CREW_VERSION ||= defined?(CREW_VERSION) ? CREW_VERSION : '1.0' -CREW_VERSION ||= '1.55.4' unless defined?(CREW_VERSION) && CREW_VERSION == OLD_CREW_VERSION +CREW_VERSION ||= '1.55.5' unless defined?(CREW_VERSION) && CREW_VERSION == OLD_CREW_VERSION # Kernel architecture. KERN_ARCH ||= Etc.uname[:machine] diff --git a/lib/fixup.rb b/lib/fixup.rb index 70e40f2f0..f543d2568 100644 --- a/lib/fixup.rb +++ b/lib/fixup.rb @@ -154,6 +154,7 @@ pkg_update_arr = [ { pkg_name: 'ilmbase', pkg_rename: nil, pkg_deprecated: true, comments: 'Included in openexr.' }, { pkg_name: 'imagemagick6', pkg_rename: nil, pkg_deprecated: true, comments: nil }, { pkg_name: 'imagemagick', pkg_rename: nil, pkg_deprecated: true, comments: nil }, + { pkg_name: 'itstool', pkg_rename: 'py3_itstool', pkg_deprecated: false, comments: 'Renamed to indicate switch to pip buildsystem.' }, { pkg_name: 'js91', pkg_rename: nil, pkg_deprecated: true, comments: 'Replaced by newer versions of js.' }, { pkg_name: 'jsonc', pkg_rename: 'json_c', pkg_deprecated: nil, comments: 'Renamed to better match upstream.' }, { pkg_name: 'komodo', pkg_rename: nil, pkg_deprecated: true, comments: 'Abandoned upstream and no longer functional.' }, @@ -165,7 +166,8 @@ pkg_update_arr = [ { pkg_name: 'linter', pkg_rename: nil, pkg_deprecated: true, comments: 'Replaced with py3_pre_commit.' }, { pkg_name: 'mandb', pkg_rename: 'man_db', pkg_deprecated: nil, comments: 'Renamed to better match upstream.' }, { pkg_name: 'mercurial', pkg_rename: 'py3_mercurial', pkg_deprecated: nil, comments: 'Renamed to match other pip packages.' }, - { pkg_name: 'meson', pkg_rename: 'mesonbuild', pkg_deprecated: nil, comments: 'Renamed to avoid conflict with buildsystems/meson.' }, + { pkg_name: 'meson', pkg_rename: 'py3_meson', pkg_deprecated: nil, comments: 'Renamed to avoid conflict with buildsystems/meson.' }, + { pkg_name: 'mesonbuild', pkg_rename: 'py3_meson', pkg_deprecated: nil, comments: 'Renamed to indicate switch to pip buildsystem.' }, { pkg_name: 'moonbuggy', pkg_rename: 'moon_buggy', pkg_deprecated: nil, comments: 'Renamed to better match upstream.' }, { pkg_name: 'nping', pkg_rename: nil, pkg_deprecated: true, comments: 'Removed to avoid conflict with nmap.' }, { pkg_name: 'oci_cli', pkg_rename: 'py3_oci_cli', pkg_deprecated: nil, comments: 'Fix to match upstream name.' }, diff --git a/manifest/armv7l/i/itstool.filelist b/manifest/armv7l/i/itstool.filelist deleted file mode 100644 index a70abc499..000000000 --- a/manifest/armv7l/i/itstool.filelist +++ /dev/null @@ -1,8 +0,0 @@ -/usr/local/bin/itstool -/usr/local/share/itstool/its/docbook.its -/usr/local/share/itstool/its/docbook5.its -/usr/local/share/itstool/its/its.its -/usr/local/share/itstool/its/mallard.its -/usr/local/share/itstool/its/ttml.its -/usr/local/share/itstool/its/xhtml.its -/usr/local/share/man/man1/itstool.1.zst diff --git a/manifest/armv7l/p/py3_itstool.filelist b/manifest/armv7l/p/py3_itstool.filelist new file mode 100644 index 000000000..882870c15 --- /dev/null +++ b/manifest/armv7l/p/py3_itstool.filelist @@ -0,0 +1,16 @@ +/usr/local/bin/itstool +/usr/local/lib/python3.13/site-packages/itstool-2.0.7.dist-info/AUTHORS +/usr/local/lib/python3.13/site-packages/itstool-2.0.7.dist-info/COPYING +/usr/local/lib/python3.13/site-packages/itstool-2.0.7.dist-info/COPYING.GPL3 +/usr/local/lib/python3.13/site-packages/itstool-2.0.7.dist-info/INSTALLER +/usr/local/lib/python3.13/site-packages/itstool-2.0.7.dist-info/METADATA +/usr/local/lib/python3.13/site-packages/itstool-2.0.7.dist-info/RECORD +/usr/local/lib/python3.13/site-packages/itstool-2.0.7.dist-info/REQUESTED +/usr/local/lib/python3.13/site-packages/itstool-2.0.7.dist-info/WHEEL +/usr/local/lib/python3.13/site-packages/itstool-2.0.7.dist-info/top_level.txt +/usr/local/lib/python3.13/site-packages/usr/local/share/itstool/its/docbook.its +/usr/local/lib/python3.13/site-packages/usr/local/share/itstool/its/docbook5.its +/usr/local/lib/python3.13/site-packages/usr/local/share/itstool/its/its.its +/usr/local/lib/python3.13/site-packages/usr/local/share/itstool/its/mallard.its +/usr/local/lib/python3.13/site-packages/usr/local/share/itstool/its/ttml.its +/usr/local/lib/python3.13/site-packages/usr/local/share/itstool/its/xhtml.its diff --git a/manifest/x86_64/m/mesonbuild.filelist b/manifest/armv7l/p/py3_meson.filelist similarity index 62% rename from manifest/x86_64/m/mesonbuild.filelist rename to manifest/armv7l/p/py3_meson.filelist index c4c4b6594..fff8ed3f6 100644 --- a/manifest/x86_64/m/mesonbuild.filelist +++ b/manifest/armv7l/p/py3_meson.filelist @@ -1,88 +1,53 @@ /usr/local/bin/meson -/usr/local/lib/python3.13/site-packages/meson-1.5.1-py3.13.egg-info/PKG-INFO -/usr/local/lib/python3.13/site-packages/meson-1.5.1-py3.13.egg-info/SOURCES.txt -/usr/local/lib/python3.13/site-packages/meson-1.5.1-py3.13.egg-info/dependency_links.txt -/usr/local/lib/python3.13/site-packages/meson-1.5.1-py3.13.egg-info/entry_points.txt -/usr/local/lib/python3.13/site-packages/meson-1.5.1-py3.13.egg-info/requires.txt -/usr/local/lib/python3.13/site-packages/meson-1.5.1-py3.13.egg-info/top_level.txt +/usr/local/lib/python3.13/site-packages/meson-1.6.0.dist-info/COPYING +/usr/local/lib/python3.13/site-packages/meson-1.6.0.dist-info/INSTALLER +/usr/local/lib/python3.13/site-packages/meson-1.6.0.dist-info/METADATA +/usr/local/lib/python3.13/site-packages/meson-1.6.0.dist-info/RECORD +/usr/local/lib/python3.13/site-packages/meson-1.6.0.dist-info/REQUESTED +/usr/local/lib/python3.13/site-packages/meson-1.6.0.dist-info/WHEEL +/usr/local/lib/python3.13/site-packages/meson-1.6.0.dist-info/entry_points.txt +/usr/local/lib/python3.13/site-packages/meson-1.6.0.dist-info/top_level.txt /usr/local/lib/python3.13/site-packages/mesonbuild/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/_pathlib.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/_pathlib.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/_typing.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/_typing.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/arglist.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/arglist.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/build.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/build.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/coredata.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/coredata.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/depfile.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/depfile.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/envconfig.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/envconfig.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/environment.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/environment.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/machinefile.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/machinefile.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mcompile.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mcompile.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mconf.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mconf.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mdevenv.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mdevenv.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mdist.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mdist.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mesondata.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mesondata.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mesonlib.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mesonlib.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mesonmain.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mesonmain.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mformat.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mformat.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/minit.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/minit.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/minstall.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/minstall.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mintro.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mintro.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mlog.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mlog.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mparser.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mparser.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/msetup.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/msetup.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/msubprojects.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/msubprojects.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mtest.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mtest.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/munstable_coredata.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/munstable_coredata.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/optinterpreter.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/optinterpreter.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/options.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/options.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/programs.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/programs.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/rewriter.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/rewriter.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/_pathlib.py /usr/local/lib/python3.13/site-packages/mesonbuild/_typing.py /usr/local/lib/python3.13/site-packages/mesonbuild/arglist.py /usr/local/lib/python3.13/site-packages/mesonbuild/ast/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/ast/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/ast/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/ast/__pycache__/interpreter.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/ast/__pycache__/interpreter.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/ast/__pycache__/introspection.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/ast/__pycache__/introspection.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/ast/__pycache__/postprocess.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/ast/__pycache__/postprocess.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/ast/__pycache__/printer.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/ast/__pycache__/printer.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/ast/__pycache__/visitor.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/ast/__pycache__/visitor.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/ast/interpreter.py /usr/local/lib/python3.13/site-packages/mesonbuild/ast/introspection.py @@ -90,29 +55,17 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/ast/printer.py /usr/local/lib/python3.13/site-packages/mesonbuild/ast/visitor.py /usr/local/lib/python3.13/site-packages/mesonbuild/backend/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/backends.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/backends.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/ninjabackend.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/ninjabackend.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/nonebackend.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/nonebackend.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2010backend.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2010backend.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2012backend.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2012backend.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2013backend.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2013backend.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2015backend.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2015backend.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2017backend.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2017backend.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2019backend.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2019backend.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2022backend.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2022backend.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/xcodebackend.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/xcodebackend.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/backend/backends.py /usr/local/lib/python3.13/site-packages/mesonbuild/backend/ninjabackend.py @@ -127,17 +80,11 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/backend/xcodebackend.py /usr/local/lib/python3.13/site-packages/mesonbuild/build.py /usr/local/lib/python3.13/site-packages/mesonbuild/cargo/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/cargo/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cargo/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/cargo/__pycache__/builder.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cargo/__pycache__/builder.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/cargo/__pycache__/cfg.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cargo/__pycache__/cfg.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/cargo/__pycache__/interpreter.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cargo/__pycache__/interpreter.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/cargo/__pycache__/manifest.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cargo/__pycache__/manifest.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/cargo/__pycache__/version.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cargo/__pycache__/version.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cargo/builder.py /usr/local/lib/python3.13/site-packages/mesonbuild/cargo/cfg.py @@ -145,27 +92,17 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/cargo/manifest.py /usr/local/lib/python3.13/site-packages/mesonbuild/cargo/version.py /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/common.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/common.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/executor.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/executor.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/fileapi.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/fileapi.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/generator.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/generator.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/interpreter.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/interpreter.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/toolchain.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/toolchain.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/traceparser.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/traceparser.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/tracetargets.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/tracetargets.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/common.py /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/data/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/cmake/data/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/data/__pycache__/__init__.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/data/preload.cmake /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/executor.py @@ -176,41 +113,23 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/traceparser.py /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/tracetargets.py /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/asm.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/asm.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/c.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/c.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/c_function_attributes.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/c_function_attributes.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/compilers.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/compilers.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/cpp.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/cpp.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/cs.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/cs.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/cuda.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/cuda.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/cython.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/cython.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/d.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/d.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/detect.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/detect.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/fortran.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/fortran.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/java.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/java.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/objc.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/objc.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/objcpp.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/objcpp.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/rust.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/rust.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/swift.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/swift.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/vala.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/vala.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/asm.py /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/c.py @@ -225,39 +144,22 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/fortran.py /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/java.py /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/apple.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/apple.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/arm.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/arm.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/ccrx.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/ccrx.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/clang.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/clang.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/clike.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/clike.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/compcert.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/compcert.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/elbrus.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/elbrus.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/emscripten.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/emscripten.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/gnu.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/gnu.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/intel.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/intel.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/islinker.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/islinker.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/metrowerks.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/metrowerks.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/pgi.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/pgi.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/ti.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/ti.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/visualstudio.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/visualstudio.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/xc16.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/xc16.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/apple.py /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/arm.py @@ -282,47 +184,26 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/vala.py /usr/local/lib/python3.13/site-packages/mesonbuild/coredata.py /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/base.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/base.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/boost.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/boost.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/cmake.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/cmake.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/coarrays.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/coarrays.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/configtool.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/configtool.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/cuda.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/cuda.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/detect.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/detect.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/dev.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/dev.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/dub.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/dub.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/factory.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/factory.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/framework.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/framework.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/hdf5.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/hdf5.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/misc.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/misc.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/mpi.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/mpi.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/pkgconfig.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/pkgconfig.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/platform.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/platform.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/python.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/python.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/qt.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/qt.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/scalapack.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/scalapack.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/ui.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/ui.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/base.py /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/boost.py @@ -334,7 +215,6 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/data/CMakeListsLLVM.txt /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/data/CMakePathInfo.txt /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/data/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/data/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/data/__pycache__/__init__.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/detect.py /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/dev.py @@ -354,21 +234,13 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/envconfig.py /usr/local/lib/python3.13/site-packages/mesonbuild/environment.py /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/compiler.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/compiler.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/dependencyfallbacks.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/dependencyfallbacks.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/interpreter.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/interpreter.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/interpreterobjects.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/interpreterobjects.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/kwargs.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/kwargs.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/mesonmain.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/mesonmain.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/type_checking.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/type_checking.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/compiler.py /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/dependencyfallbacks.py @@ -377,19 +249,12 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/kwargs.py /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/mesonmain.py /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/array.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/array.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/boolean.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/boolean.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/dict.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/dict.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/integer.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/integer.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/range.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/range.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/string.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/string.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/array.py /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/boolean.py @@ -399,23 +264,14 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/string.py /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/type_checking.py /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/_unholder.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/_unholder.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/baseobjects.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/baseobjects.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/decorators.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/decorators.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/disabler.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/disabler.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/exceptions.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/exceptions.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/helpers.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/helpers.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/interpreterbase.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/interpreterbase.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/operator.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/operator.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/_unholder.py /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/baseobjects.py @@ -426,13 +282,9 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/interpreterbase.py /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/operator.py /usr/local/lib/python3.13/site-packages/mesonbuild/linkers/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/linkers/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/linkers/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/linkers/__pycache__/base.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/linkers/__pycache__/base.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/linkers/__pycache__/detect.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/linkers/__pycache__/detect.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/linkers/__pycache__/linkers.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/linkers/__pycache__/linkers.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/linkers/base.py /usr/local/lib/python3.13/site-packages/mesonbuild/linkers/detect.py @@ -451,55 +303,30 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/mintro.py /usr/local/lib/python3.13/site-packages/mesonbuild/mlog.py /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/_qt.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/_qt.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/cmake.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/cmake.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/cuda.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/cuda.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/dlang.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/dlang.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/external_project.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/external_project.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/fs.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/fs.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/gnome.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/gnome.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/hotdoc.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/hotdoc.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/i18n.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/i18n.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/icestorm.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/icestorm.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/java.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/java.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/keyval.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/keyval.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/modtest.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/modtest.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/pkgconfig.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/pkgconfig.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/python.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/python.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/python3.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/python3.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/qt4.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/qt4.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/qt5.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/qt5.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/qt6.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/qt6.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/rust.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/rust.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/simd.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/simd.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/sourceset.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/sourceset.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/wayland.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/wayland.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/windows.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/windows.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/_qt.py /usr/local/lib/python3.13/site-packages/mesonbuild/modules/cmake.py @@ -535,65 +362,36 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/programs.py /usr/local/lib/python3.13/site-packages/mesonbuild/rewriter.py /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/clangformat.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/clangformat.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/clangtidy.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/clangtidy.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/cleantrees.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/cleantrees.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/cmake_run_ctgt.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/cmake_run_ctgt.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/copy.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/copy.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/coverage.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/coverage.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/delwithsuffix.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/delwithsuffix.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/depfixer.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/depfixer.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/depscan.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/depscan.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/dirchanger.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/dirchanger.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/env2mfile.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/env2mfile.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/externalproject.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/externalproject.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/gettext.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/gettext.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/gtkdochelper.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/gtkdochelper.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/hotdochelper.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/hotdochelper.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/itstool.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/itstool.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/meson_exe.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/meson_exe.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/msgfmthelper.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/msgfmthelper.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/pycompile.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/pycompile.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/python_info.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/python_info.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/regen_checker.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/regen_checker.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/run_tool.cpython-313.opt-2.pyc +/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/reprotest.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/run_tool.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/scanbuild.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/scanbuild.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/symbolextractor.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/symbolextractor.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/tags.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/tags.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/test_loaded_modules.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/test_loaded_modules.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/uninstall.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/uninstall.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/vcstagger.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/vcstagger.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/yasm.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/yasm.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/clangformat.py /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/clangtidy.py @@ -617,6 +415,7 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/pycompile.py /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/python_info.py /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/regen_checker.py +/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/reprotest.py /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/run_tool.py /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/scanbuild.py /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/symbolextractor.py @@ -626,35 +425,20 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/vcstagger.py /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/yasm.py /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/cpptemplates.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/cpptemplates.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/cstemplates.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/cstemplates.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/ctemplates.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/ctemplates.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/cudatemplates.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/cudatemplates.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/dlangtemplates.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/dlangtemplates.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/fortrantemplates.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/fortrantemplates.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/javatemplates.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/javatemplates.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/mesontemplates.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/mesontemplates.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/objcpptemplates.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/objcpptemplates.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/objctemplates.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/objctemplates.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/rusttemplates.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/rusttemplates.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/samplefactory.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/samplefactory.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/sampleimpl.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/sampleimpl.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/valatemplates.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/valatemplates.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/cpptemplates.py /usr/local/lib/python3.13/site-packages/mesonbuild/templates/cstemplates.py @@ -671,19 +455,12 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/templates/sampleimpl.py /usr/local/lib/python3.13/site-packages/mesonbuild/templates/valatemplates.py /usr/local/lib/python3.13/site-packages/mesonbuild/utils/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/core.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/core.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/platform.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/platform.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/posix.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/posix.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/universal.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/universal.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/vsenv.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/vsenv.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/win32.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/win32.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/utils/core.py /usr/local/lib/python3.13/site-packages/mesonbuild/utils/platform.py @@ -692,11 +469,8 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/utils/vsenv.py /usr/local/lib/python3.13/site-packages/mesonbuild/utils/win32.py /usr/local/lib/python3.13/site-packages/mesonbuild/wrap/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/wrap/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/wrap/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/wrap/__pycache__/wrap.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/wrap/__pycache__/wrap.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/wrap/__pycache__/wraptool.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/wrap/__pycache__/wraptool.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/wrap/wrap.py /usr/local/lib/python3.13/site-packages/mesonbuild/wrap/wraptool.py diff --git a/manifest/i686/i/itstool.filelist b/manifest/i686/i/itstool.filelist deleted file mode 100644 index a70abc499..000000000 --- a/manifest/i686/i/itstool.filelist +++ /dev/null @@ -1,8 +0,0 @@ -/usr/local/bin/itstool -/usr/local/share/itstool/its/docbook.its -/usr/local/share/itstool/its/docbook5.its -/usr/local/share/itstool/its/its.its -/usr/local/share/itstool/its/mallard.its -/usr/local/share/itstool/its/ttml.its -/usr/local/share/itstool/its/xhtml.its -/usr/local/share/man/man1/itstool.1.zst diff --git a/manifest/i686/p/py3_itstool.filelist b/manifest/i686/p/py3_itstool.filelist new file mode 100644 index 000000000..882870c15 --- /dev/null +++ b/manifest/i686/p/py3_itstool.filelist @@ -0,0 +1,16 @@ +/usr/local/bin/itstool +/usr/local/lib/python3.13/site-packages/itstool-2.0.7.dist-info/AUTHORS +/usr/local/lib/python3.13/site-packages/itstool-2.0.7.dist-info/COPYING +/usr/local/lib/python3.13/site-packages/itstool-2.0.7.dist-info/COPYING.GPL3 +/usr/local/lib/python3.13/site-packages/itstool-2.0.7.dist-info/INSTALLER +/usr/local/lib/python3.13/site-packages/itstool-2.0.7.dist-info/METADATA +/usr/local/lib/python3.13/site-packages/itstool-2.0.7.dist-info/RECORD +/usr/local/lib/python3.13/site-packages/itstool-2.0.7.dist-info/REQUESTED +/usr/local/lib/python3.13/site-packages/itstool-2.0.7.dist-info/WHEEL +/usr/local/lib/python3.13/site-packages/itstool-2.0.7.dist-info/top_level.txt +/usr/local/lib/python3.13/site-packages/usr/local/share/itstool/its/docbook.its +/usr/local/lib/python3.13/site-packages/usr/local/share/itstool/its/docbook5.its +/usr/local/lib/python3.13/site-packages/usr/local/share/itstool/its/its.its +/usr/local/lib/python3.13/site-packages/usr/local/share/itstool/its/mallard.its +/usr/local/lib/python3.13/site-packages/usr/local/share/itstool/its/ttml.its +/usr/local/lib/python3.13/site-packages/usr/local/share/itstool/its/xhtml.its diff --git a/manifest/armv7l/m/mesonbuild.filelist b/manifest/i686/p/py3_meson.filelist similarity index 62% rename from manifest/armv7l/m/mesonbuild.filelist rename to manifest/i686/p/py3_meson.filelist index c4c4b6594..fff8ed3f6 100644 --- a/manifest/armv7l/m/mesonbuild.filelist +++ b/manifest/i686/p/py3_meson.filelist @@ -1,88 +1,53 @@ /usr/local/bin/meson -/usr/local/lib/python3.13/site-packages/meson-1.5.1-py3.13.egg-info/PKG-INFO -/usr/local/lib/python3.13/site-packages/meson-1.5.1-py3.13.egg-info/SOURCES.txt -/usr/local/lib/python3.13/site-packages/meson-1.5.1-py3.13.egg-info/dependency_links.txt -/usr/local/lib/python3.13/site-packages/meson-1.5.1-py3.13.egg-info/entry_points.txt -/usr/local/lib/python3.13/site-packages/meson-1.5.1-py3.13.egg-info/requires.txt -/usr/local/lib/python3.13/site-packages/meson-1.5.1-py3.13.egg-info/top_level.txt +/usr/local/lib/python3.13/site-packages/meson-1.6.0.dist-info/COPYING +/usr/local/lib/python3.13/site-packages/meson-1.6.0.dist-info/INSTALLER +/usr/local/lib/python3.13/site-packages/meson-1.6.0.dist-info/METADATA +/usr/local/lib/python3.13/site-packages/meson-1.6.0.dist-info/RECORD +/usr/local/lib/python3.13/site-packages/meson-1.6.0.dist-info/REQUESTED +/usr/local/lib/python3.13/site-packages/meson-1.6.0.dist-info/WHEEL +/usr/local/lib/python3.13/site-packages/meson-1.6.0.dist-info/entry_points.txt +/usr/local/lib/python3.13/site-packages/meson-1.6.0.dist-info/top_level.txt /usr/local/lib/python3.13/site-packages/mesonbuild/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/_pathlib.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/_pathlib.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/_typing.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/_typing.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/arglist.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/arglist.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/build.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/build.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/coredata.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/coredata.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/depfile.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/depfile.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/envconfig.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/envconfig.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/environment.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/environment.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/machinefile.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/machinefile.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mcompile.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mcompile.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mconf.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mconf.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mdevenv.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mdevenv.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mdist.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mdist.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mesondata.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mesondata.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mesonlib.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mesonlib.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mesonmain.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mesonmain.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mformat.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mformat.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/minit.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/minit.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/minstall.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/minstall.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mintro.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mintro.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mlog.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mlog.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mparser.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mparser.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/msetup.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/msetup.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/msubprojects.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/msubprojects.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mtest.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mtest.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/munstable_coredata.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/munstable_coredata.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/optinterpreter.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/optinterpreter.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/options.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/options.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/programs.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/programs.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/rewriter.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/rewriter.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/_pathlib.py /usr/local/lib/python3.13/site-packages/mesonbuild/_typing.py /usr/local/lib/python3.13/site-packages/mesonbuild/arglist.py /usr/local/lib/python3.13/site-packages/mesonbuild/ast/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/ast/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/ast/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/ast/__pycache__/interpreter.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/ast/__pycache__/interpreter.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/ast/__pycache__/introspection.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/ast/__pycache__/introspection.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/ast/__pycache__/postprocess.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/ast/__pycache__/postprocess.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/ast/__pycache__/printer.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/ast/__pycache__/printer.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/ast/__pycache__/visitor.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/ast/__pycache__/visitor.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/ast/interpreter.py /usr/local/lib/python3.13/site-packages/mesonbuild/ast/introspection.py @@ -90,29 +55,17 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/ast/printer.py /usr/local/lib/python3.13/site-packages/mesonbuild/ast/visitor.py /usr/local/lib/python3.13/site-packages/mesonbuild/backend/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/backends.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/backends.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/ninjabackend.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/ninjabackend.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/nonebackend.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/nonebackend.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2010backend.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2010backend.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2012backend.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2012backend.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2013backend.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2013backend.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2015backend.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2015backend.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2017backend.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2017backend.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2019backend.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2019backend.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2022backend.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2022backend.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/xcodebackend.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/xcodebackend.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/backend/backends.py /usr/local/lib/python3.13/site-packages/mesonbuild/backend/ninjabackend.py @@ -127,17 +80,11 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/backend/xcodebackend.py /usr/local/lib/python3.13/site-packages/mesonbuild/build.py /usr/local/lib/python3.13/site-packages/mesonbuild/cargo/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/cargo/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cargo/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/cargo/__pycache__/builder.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cargo/__pycache__/builder.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/cargo/__pycache__/cfg.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cargo/__pycache__/cfg.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/cargo/__pycache__/interpreter.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cargo/__pycache__/interpreter.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/cargo/__pycache__/manifest.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cargo/__pycache__/manifest.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/cargo/__pycache__/version.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cargo/__pycache__/version.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cargo/builder.py /usr/local/lib/python3.13/site-packages/mesonbuild/cargo/cfg.py @@ -145,27 +92,17 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/cargo/manifest.py /usr/local/lib/python3.13/site-packages/mesonbuild/cargo/version.py /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/common.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/common.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/executor.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/executor.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/fileapi.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/fileapi.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/generator.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/generator.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/interpreter.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/interpreter.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/toolchain.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/toolchain.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/traceparser.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/traceparser.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/tracetargets.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/tracetargets.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/common.py /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/data/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/cmake/data/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/data/__pycache__/__init__.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/data/preload.cmake /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/executor.py @@ -176,41 +113,23 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/traceparser.py /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/tracetargets.py /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/asm.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/asm.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/c.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/c.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/c_function_attributes.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/c_function_attributes.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/compilers.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/compilers.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/cpp.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/cpp.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/cs.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/cs.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/cuda.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/cuda.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/cython.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/cython.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/d.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/d.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/detect.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/detect.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/fortran.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/fortran.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/java.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/java.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/objc.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/objc.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/objcpp.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/objcpp.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/rust.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/rust.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/swift.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/swift.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/vala.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/vala.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/asm.py /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/c.py @@ -225,39 +144,22 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/fortran.py /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/java.py /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/apple.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/apple.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/arm.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/arm.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/ccrx.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/ccrx.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/clang.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/clang.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/clike.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/clike.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/compcert.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/compcert.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/elbrus.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/elbrus.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/emscripten.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/emscripten.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/gnu.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/gnu.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/intel.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/intel.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/islinker.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/islinker.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/metrowerks.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/metrowerks.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/pgi.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/pgi.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/ti.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/ti.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/visualstudio.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/visualstudio.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/xc16.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/xc16.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/apple.py /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/arm.py @@ -282,47 +184,26 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/vala.py /usr/local/lib/python3.13/site-packages/mesonbuild/coredata.py /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/base.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/base.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/boost.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/boost.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/cmake.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/cmake.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/coarrays.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/coarrays.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/configtool.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/configtool.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/cuda.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/cuda.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/detect.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/detect.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/dev.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/dev.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/dub.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/dub.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/factory.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/factory.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/framework.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/framework.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/hdf5.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/hdf5.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/misc.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/misc.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/mpi.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/mpi.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/pkgconfig.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/pkgconfig.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/platform.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/platform.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/python.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/python.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/qt.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/qt.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/scalapack.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/scalapack.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/ui.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/ui.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/base.py /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/boost.py @@ -334,7 +215,6 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/data/CMakeListsLLVM.txt /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/data/CMakePathInfo.txt /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/data/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/data/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/data/__pycache__/__init__.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/detect.py /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/dev.py @@ -354,21 +234,13 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/envconfig.py /usr/local/lib/python3.13/site-packages/mesonbuild/environment.py /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/compiler.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/compiler.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/dependencyfallbacks.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/dependencyfallbacks.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/interpreter.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/interpreter.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/interpreterobjects.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/interpreterobjects.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/kwargs.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/kwargs.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/mesonmain.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/mesonmain.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/type_checking.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/type_checking.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/compiler.py /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/dependencyfallbacks.py @@ -377,19 +249,12 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/kwargs.py /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/mesonmain.py /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/array.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/array.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/boolean.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/boolean.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/dict.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/dict.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/integer.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/integer.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/range.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/range.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/string.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/string.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/array.py /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/boolean.py @@ -399,23 +264,14 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/string.py /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/type_checking.py /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/_unholder.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/_unholder.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/baseobjects.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/baseobjects.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/decorators.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/decorators.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/disabler.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/disabler.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/exceptions.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/exceptions.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/helpers.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/helpers.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/interpreterbase.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/interpreterbase.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/operator.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/operator.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/_unholder.py /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/baseobjects.py @@ -426,13 +282,9 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/interpreterbase.py /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/operator.py /usr/local/lib/python3.13/site-packages/mesonbuild/linkers/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/linkers/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/linkers/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/linkers/__pycache__/base.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/linkers/__pycache__/base.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/linkers/__pycache__/detect.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/linkers/__pycache__/detect.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/linkers/__pycache__/linkers.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/linkers/__pycache__/linkers.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/linkers/base.py /usr/local/lib/python3.13/site-packages/mesonbuild/linkers/detect.py @@ -451,55 +303,30 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/mintro.py /usr/local/lib/python3.13/site-packages/mesonbuild/mlog.py /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/_qt.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/_qt.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/cmake.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/cmake.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/cuda.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/cuda.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/dlang.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/dlang.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/external_project.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/external_project.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/fs.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/fs.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/gnome.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/gnome.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/hotdoc.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/hotdoc.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/i18n.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/i18n.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/icestorm.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/icestorm.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/java.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/java.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/keyval.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/keyval.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/modtest.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/modtest.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/pkgconfig.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/pkgconfig.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/python.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/python.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/python3.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/python3.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/qt4.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/qt4.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/qt5.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/qt5.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/qt6.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/qt6.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/rust.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/rust.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/simd.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/simd.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/sourceset.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/sourceset.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/wayland.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/wayland.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/windows.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/windows.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/_qt.py /usr/local/lib/python3.13/site-packages/mesonbuild/modules/cmake.py @@ -535,65 +362,36 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/programs.py /usr/local/lib/python3.13/site-packages/mesonbuild/rewriter.py /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/clangformat.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/clangformat.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/clangtidy.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/clangtidy.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/cleantrees.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/cleantrees.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/cmake_run_ctgt.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/cmake_run_ctgt.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/copy.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/copy.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/coverage.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/coverage.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/delwithsuffix.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/delwithsuffix.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/depfixer.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/depfixer.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/depscan.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/depscan.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/dirchanger.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/dirchanger.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/env2mfile.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/env2mfile.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/externalproject.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/externalproject.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/gettext.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/gettext.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/gtkdochelper.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/gtkdochelper.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/hotdochelper.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/hotdochelper.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/itstool.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/itstool.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/meson_exe.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/meson_exe.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/msgfmthelper.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/msgfmthelper.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/pycompile.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/pycompile.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/python_info.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/python_info.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/regen_checker.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/regen_checker.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/run_tool.cpython-313.opt-2.pyc +/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/reprotest.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/run_tool.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/scanbuild.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/scanbuild.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/symbolextractor.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/symbolextractor.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/tags.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/tags.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/test_loaded_modules.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/test_loaded_modules.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/uninstall.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/uninstall.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/vcstagger.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/vcstagger.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/yasm.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/yasm.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/clangformat.py /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/clangtidy.py @@ -617,6 +415,7 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/pycompile.py /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/python_info.py /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/regen_checker.py +/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/reprotest.py /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/run_tool.py /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/scanbuild.py /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/symbolextractor.py @@ -626,35 +425,20 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/vcstagger.py /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/yasm.py /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/cpptemplates.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/cpptemplates.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/cstemplates.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/cstemplates.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/ctemplates.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/ctemplates.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/cudatemplates.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/cudatemplates.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/dlangtemplates.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/dlangtemplates.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/fortrantemplates.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/fortrantemplates.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/javatemplates.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/javatemplates.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/mesontemplates.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/mesontemplates.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/objcpptemplates.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/objcpptemplates.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/objctemplates.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/objctemplates.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/rusttemplates.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/rusttemplates.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/samplefactory.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/samplefactory.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/sampleimpl.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/sampleimpl.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/valatemplates.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/valatemplates.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/cpptemplates.py /usr/local/lib/python3.13/site-packages/mesonbuild/templates/cstemplates.py @@ -671,19 +455,12 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/templates/sampleimpl.py /usr/local/lib/python3.13/site-packages/mesonbuild/templates/valatemplates.py /usr/local/lib/python3.13/site-packages/mesonbuild/utils/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/core.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/core.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/platform.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/platform.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/posix.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/posix.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/universal.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/universal.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/vsenv.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/vsenv.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/win32.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/win32.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/utils/core.py /usr/local/lib/python3.13/site-packages/mesonbuild/utils/platform.py @@ -692,11 +469,8 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/utils/vsenv.py /usr/local/lib/python3.13/site-packages/mesonbuild/utils/win32.py /usr/local/lib/python3.13/site-packages/mesonbuild/wrap/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/wrap/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/wrap/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/wrap/__pycache__/wrap.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/wrap/__pycache__/wrap.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/wrap/__pycache__/wraptool.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/wrap/__pycache__/wraptool.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/wrap/wrap.py /usr/local/lib/python3.13/site-packages/mesonbuild/wrap/wraptool.py diff --git a/manifest/x86_64/i/itstool.filelist b/manifest/x86_64/i/itstool.filelist deleted file mode 100644 index a70abc499..000000000 --- a/manifest/x86_64/i/itstool.filelist +++ /dev/null @@ -1,8 +0,0 @@ -/usr/local/bin/itstool -/usr/local/share/itstool/its/docbook.its -/usr/local/share/itstool/its/docbook5.its -/usr/local/share/itstool/its/its.its -/usr/local/share/itstool/its/mallard.its -/usr/local/share/itstool/its/ttml.its -/usr/local/share/itstool/its/xhtml.its -/usr/local/share/man/man1/itstool.1.zst diff --git a/manifest/x86_64/p/py3_itstool.filelist b/manifest/x86_64/p/py3_itstool.filelist new file mode 100644 index 000000000..882870c15 --- /dev/null +++ b/manifest/x86_64/p/py3_itstool.filelist @@ -0,0 +1,16 @@ +/usr/local/bin/itstool +/usr/local/lib/python3.13/site-packages/itstool-2.0.7.dist-info/AUTHORS +/usr/local/lib/python3.13/site-packages/itstool-2.0.7.dist-info/COPYING +/usr/local/lib/python3.13/site-packages/itstool-2.0.7.dist-info/COPYING.GPL3 +/usr/local/lib/python3.13/site-packages/itstool-2.0.7.dist-info/INSTALLER +/usr/local/lib/python3.13/site-packages/itstool-2.0.7.dist-info/METADATA +/usr/local/lib/python3.13/site-packages/itstool-2.0.7.dist-info/RECORD +/usr/local/lib/python3.13/site-packages/itstool-2.0.7.dist-info/REQUESTED +/usr/local/lib/python3.13/site-packages/itstool-2.0.7.dist-info/WHEEL +/usr/local/lib/python3.13/site-packages/itstool-2.0.7.dist-info/top_level.txt +/usr/local/lib/python3.13/site-packages/usr/local/share/itstool/its/docbook.its +/usr/local/lib/python3.13/site-packages/usr/local/share/itstool/its/docbook5.its +/usr/local/lib/python3.13/site-packages/usr/local/share/itstool/its/its.its +/usr/local/lib/python3.13/site-packages/usr/local/share/itstool/its/mallard.its +/usr/local/lib/python3.13/site-packages/usr/local/share/itstool/its/ttml.its +/usr/local/lib/python3.13/site-packages/usr/local/share/itstool/its/xhtml.its diff --git a/manifest/i686/m/mesonbuild.filelist b/manifest/x86_64/p/py3_meson.filelist similarity index 62% rename from manifest/i686/m/mesonbuild.filelist rename to manifest/x86_64/p/py3_meson.filelist index c4c4b6594..fff8ed3f6 100644 --- a/manifest/i686/m/mesonbuild.filelist +++ b/manifest/x86_64/p/py3_meson.filelist @@ -1,88 +1,53 @@ /usr/local/bin/meson -/usr/local/lib/python3.13/site-packages/meson-1.5.1-py3.13.egg-info/PKG-INFO -/usr/local/lib/python3.13/site-packages/meson-1.5.1-py3.13.egg-info/SOURCES.txt -/usr/local/lib/python3.13/site-packages/meson-1.5.1-py3.13.egg-info/dependency_links.txt -/usr/local/lib/python3.13/site-packages/meson-1.5.1-py3.13.egg-info/entry_points.txt -/usr/local/lib/python3.13/site-packages/meson-1.5.1-py3.13.egg-info/requires.txt -/usr/local/lib/python3.13/site-packages/meson-1.5.1-py3.13.egg-info/top_level.txt +/usr/local/lib/python3.13/site-packages/meson-1.6.0.dist-info/COPYING +/usr/local/lib/python3.13/site-packages/meson-1.6.0.dist-info/INSTALLER +/usr/local/lib/python3.13/site-packages/meson-1.6.0.dist-info/METADATA +/usr/local/lib/python3.13/site-packages/meson-1.6.0.dist-info/RECORD +/usr/local/lib/python3.13/site-packages/meson-1.6.0.dist-info/REQUESTED +/usr/local/lib/python3.13/site-packages/meson-1.6.0.dist-info/WHEEL +/usr/local/lib/python3.13/site-packages/meson-1.6.0.dist-info/entry_points.txt +/usr/local/lib/python3.13/site-packages/meson-1.6.0.dist-info/top_level.txt /usr/local/lib/python3.13/site-packages/mesonbuild/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/_pathlib.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/_pathlib.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/_typing.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/_typing.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/arglist.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/arglist.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/build.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/build.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/coredata.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/coredata.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/depfile.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/depfile.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/envconfig.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/envconfig.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/environment.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/environment.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/machinefile.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/machinefile.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mcompile.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mcompile.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mconf.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mconf.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mdevenv.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mdevenv.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mdist.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mdist.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mesondata.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mesondata.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mesonlib.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mesonlib.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mesonmain.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mesonmain.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mformat.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mformat.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/minit.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/minit.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/minstall.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/minstall.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mintro.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mintro.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mlog.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mlog.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mparser.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mparser.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/msetup.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/msetup.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/msubprojects.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/msubprojects.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mtest.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/mtest.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/munstable_coredata.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/munstable_coredata.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/optinterpreter.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/optinterpreter.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/options.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/options.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/programs.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/programs.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/rewriter.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/__pycache__/rewriter.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/_pathlib.py /usr/local/lib/python3.13/site-packages/mesonbuild/_typing.py /usr/local/lib/python3.13/site-packages/mesonbuild/arglist.py /usr/local/lib/python3.13/site-packages/mesonbuild/ast/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/ast/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/ast/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/ast/__pycache__/interpreter.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/ast/__pycache__/interpreter.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/ast/__pycache__/introspection.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/ast/__pycache__/introspection.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/ast/__pycache__/postprocess.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/ast/__pycache__/postprocess.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/ast/__pycache__/printer.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/ast/__pycache__/printer.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/ast/__pycache__/visitor.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/ast/__pycache__/visitor.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/ast/interpreter.py /usr/local/lib/python3.13/site-packages/mesonbuild/ast/introspection.py @@ -90,29 +55,17 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/ast/printer.py /usr/local/lib/python3.13/site-packages/mesonbuild/ast/visitor.py /usr/local/lib/python3.13/site-packages/mesonbuild/backend/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/backends.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/backends.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/ninjabackend.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/ninjabackend.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/nonebackend.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/nonebackend.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2010backend.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2010backend.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2012backend.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2012backend.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2013backend.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2013backend.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2015backend.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2015backend.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2017backend.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2017backend.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2019backend.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2019backend.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2022backend.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/vs2022backend.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/xcodebackend.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/backend/__pycache__/xcodebackend.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/backend/backends.py /usr/local/lib/python3.13/site-packages/mesonbuild/backend/ninjabackend.py @@ -127,17 +80,11 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/backend/xcodebackend.py /usr/local/lib/python3.13/site-packages/mesonbuild/build.py /usr/local/lib/python3.13/site-packages/mesonbuild/cargo/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/cargo/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cargo/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/cargo/__pycache__/builder.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cargo/__pycache__/builder.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/cargo/__pycache__/cfg.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cargo/__pycache__/cfg.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/cargo/__pycache__/interpreter.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cargo/__pycache__/interpreter.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/cargo/__pycache__/manifest.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cargo/__pycache__/manifest.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/cargo/__pycache__/version.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cargo/__pycache__/version.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cargo/builder.py /usr/local/lib/python3.13/site-packages/mesonbuild/cargo/cfg.py @@ -145,27 +92,17 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/cargo/manifest.py /usr/local/lib/python3.13/site-packages/mesonbuild/cargo/version.py /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/common.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/common.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/executor.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/executor.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/fileapi.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/fileapi.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/generator.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/generator.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/interpreter.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/interpreter.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/toolchain.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/toolchain.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/traceparser.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/traceparser.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/tracetargets.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/__pycache__/tracetargets.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/common.py /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/data/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/cmake/data/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/data/__pycache__/__init__.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/data/preload.cmake /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/executor.py @@ -176,41 +113,23 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/traceparser.py /usr/local/lib/python3.13/site-packages/mesonbuild/cmake/tracetargets.py /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/asm.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/asm.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/c.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/c.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/c_function_attributes.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/c_function_attributes.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/compilers.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/compilers.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/cpp.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/cpp.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/cs.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/cs.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/cuda.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/cuda.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/cython.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/cython.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/d.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/d.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/detect.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/detect.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/fortran.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/fortran.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/java.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/java.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/objc.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/objc.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/objcpp.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/objcpp.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/rust.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/rust.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/swift.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/swift.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/vala.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/__pycache__/vala.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/asm.py /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/c.py @@ -225,39 +144,22 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/fortran.py /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/java.py /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/apple.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/apple.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/arm.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/arm.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/ccrx.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/ccrx.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/clang.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/clang.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/clike.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/clike.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/compcert.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/compcert.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/elbrus.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/elbrus.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/emscripten.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/emscripten.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/gnu.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/gnu.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/intel.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/intel.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/islinker.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/islinker.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/metrowerks.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/metrowerks.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/pgi.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/pgi.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/ti.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/ti.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/visualstudio.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/visualstudio.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/xc16.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/__pycache__/xc16.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/apple.py /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/mixins/arm.py @@ -282,47 +184,26 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/compilers/vala.py /usr/local/lib/python3.13/site-packages/mesonbuild/coredata.py /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/base.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/base.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/boost.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/boost.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/cmake.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/cmake.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/coarrays.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/coarrays.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/configtool.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/configtool.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/cuda.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/cuda.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/detect.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/detect.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/dev.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/dev.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/dub.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/dub.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/factory.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/factory.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/framework.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/framework.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/hdf5.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/hdf5.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/misc.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/misc.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/mpi.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/mpi.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/pkgconfig.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/pkgconfig.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/platform.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/platform.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/python.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/python.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/qt.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/qt.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/scalapack.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/scalapack.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/ui.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/__pycache__/ui.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/base.py /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/boost.py @@ -334,7 +215,6 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/data/CMakeListsLLVM.txt /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/data/CMakePathInfo.txt /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/data/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/data/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/data/__pycache__/__init__.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/detect.py /usr/local/lib/python3.13/site-packages/mesonbuild/dependencies/dev.py @@ -354,21 +234,13 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/envconfig.py /usr/local/lib/python3.13/site-packages/mesonbuild/environment.py /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/compiler.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/compiler.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/dependencyfallbacks.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/dependencyfallbacks.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/interpreter.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/interpreter.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/interpreterobjects.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/interpreterobjects.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/kwargs.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/kwargs.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/mesonmain.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/mesonmain.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/type_checking.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/__pycache__/type_checking.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/compiler.py /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/dependencyfallbacks.py @@ -377,19 +249,12 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/kwargs.py /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/mesonmain.py /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/array.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/array.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/boolean.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/boolean.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/dict.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/dict.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/integer.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/integer.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/range.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/range.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/string.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/__pycache__/string.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/array.py /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/boolean.py @@ -399,23 +264,14 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/primitives/string.py /usr/local/lib/python3.13/site-packages/mesonbuild/interpreter/type_checking.py /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/_unholder.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/_unholder.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/baseobjects.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/baseobjects.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/decorators.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/decorators.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/disabler.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/disabler.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/exceptions.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/exceptions.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/helpers.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/helpers.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/interpreterbase.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/interpreterbase.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/operator.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/__pycache__/operator.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/_unholder.py /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/baseobjects.py @@ -426,13 +282,9 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/interpreterbase.py /usr/local/lib/python3.13/site-packages/mesonbuild/interpreterbase/operator.py /usr/local/lib/python3.13/site-packages/mesonbuild/linkers/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/linkers/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/linkers/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/linkers/__pycache__/base.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/linkers/__pycache__/base.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/linkers/__pycache__/detect.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/linkers/__pycache__/detect.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/linkers/__pycache__/linkers.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/linkers/__pycache__/linkers.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/linkers/base.py /usr/local/lib/python3.13/site-packages/mesonbuild/linkers/detect.py @@ -451,55 +303,30 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/mintro.py /usr/local/lib/python3.13/site-packages/mesonbuild/mlog.py /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/_qt.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/_qt.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/cmake.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/cmake.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/cuda.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/cuda.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/dlang.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/dlang.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/external_project.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/external_project.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/fs.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/fs.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/gnome.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/gnome.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/hotdoc.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/hotdoc.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/i18n.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/i18n.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/icestorm.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/icestorm.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/java.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/java.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/keyval.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/keyval.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/modtest.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/modtest.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/pkgconfig.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/pkgconfig.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/python.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/python.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/python3.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/python3.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/qt4.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/qt4.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/qt5.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/qt5.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/qt6.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/qt6.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/rust.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/rust.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/simd.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/simd.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/sourceset.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/sourceset.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/wayland.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/wayland.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/windows.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/__pycache__/windows.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/modules/_qt.py /usr/local/lib/python3.13/site-packages/mesonbuild/modules/cmake.py @@ -535,65 +362,36 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/programs.py /usr/local/lib/python3.13/site-packages/mesonbuild/rewriter.py /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/clangformat.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/clangformat.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/clangtidy.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/clangtidy.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/cleantrees.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/cleantrees.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/cmake_run_ctgt.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/cmake_run_ctgt.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/copy.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/copy.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/coverage.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/coverage.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/delwithsuffix.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/delwithsuffix.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/depfixer.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/depfixer.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/depscan.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/depscan.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/dirchanger.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/dirchanger.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/env2mfile.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/env2mfile.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/externalproject.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/externalproject.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/gettext.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/gettext.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/gtkdochelper.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/gtkdochelper.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/hotdochelper.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/hotdochelper.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/itstool.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/itstool.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/meson_exe.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/meson_exe.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/msgfmthelper.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/msgfmthelper.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/pycompile.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/pycompile.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/python_info.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/python_info.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/regen_checker.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/regen_checker.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/run_tool.cpython-313.opt-2.pyc +/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/reprotest.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/run_tool.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/scanbuild.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/scanbuild.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/symbolextractor.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/symbolextractor.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/tags.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/tags.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/test_loaded_modules.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/test_loaded_modules.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/uninstall.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/uninstall.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/vcstagger.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/vcstagger.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/yasm.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/__pycache__/yasm.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/clangformat.py /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/clangtidy.py @@ -617,6 +415,7 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/pycompile.py /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/python_info.py /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/regen_checker.py +/usr/local/lib/python3.13/site-packages/mesonbuild/scripts/reprotest.py /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/run_tool.py /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/scanbuild.py /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/symbolextractor.py @@ -626,35 +425,20 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/vcstagger.py /usr/local/lib/python3.13/site-packages/mesonbuild/scripts/yasm.py /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/cpptemplates.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/cpptemplates.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/cstemplates.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/cstemplates.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/ctemplates.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/ctemplates.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/cudatemplates.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/cudatemplates.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/dlangtemplates.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/dlangtemplates.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/fortrantemplates.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/fortrantemplates.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/javatemplates.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/javatemplates.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/mesontemplates.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/mesontemplates.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/objcpptemplates.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/objcpptemplates.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/objctemplates.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/objctemplates.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/rusttemplates.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/rusttemplates.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/samplefactory.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/samplefactory.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/sampleimpl.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/sampleimpl.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/valatemplates.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/__pycache__/valatemplates.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/templates/cpptemplates.py /usr/local/lib/python3.13/site-packages/mesonbuild/templates/cstemplates.py @@ -671,19 +455,12 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/templates/sampleimpl.py /usr/local/lib/python3.13/site-packages/mesonbuild/templates/valatemplates.py /usr/local/lib/python3.13/site-packages/mesonbuild/utils/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/core.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/core.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/platform.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/platform.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/posix.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/posix.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/universal.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/universal.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/vsenv.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/vsenv.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/win32.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/utils/__pycache__/win32.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/utils/core.py /usr/local/lib/python3.13/site-packages/mesonbuild/utils/platform.py @@ -692,11 +469,8 @@ /usr/local/lib/python3.13/site-packages/mesonbuild/utils/vsenv.py /usr/local/lib/python3.13/site-packages/mesonbuild/utils/win32.py /usr/local/lib/python3.13/site-packages/mesonbuild/wrap/__init__.py -/usr/local/lib/python3.13/site-packages/mesonbuild/wrap/__pycache__/__init__.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/wrap/__pycache__/__init__.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/wrap/__pycache__/wrap.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/wrap/__pycache__/wrap.cpython-313.pyc -/usr/local/lib/python3.13/site-packages/mesonbuild/wrap/__pycache__/wraptool.cpython-313.opt-2.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/wrap/__pycache__/wraptool.cpython-313.pyc /usr/local/lib/python3.13/site-packages/mesonbuild/wrap/wrap.py /usr/local/lib/python3.13/site-packages/mesonbuild/wrap/wraptool.py diff --git a/packages/appstream.rb b/packages/appstream.rb index 3170148f7..14512e4af 100644 --- a/packages/appstream.rb +++ b/packages/appstream.rb @@ -32,7 +32,7 @@ class Appstream < Meson depends_on 'gperf' => :build depends_on 'gtk_doc' => :build depends_on 'harfbuzz' # R - depends_on 'itstool' => :build + depends_on 'py3_itstool' => :build depends_on 'libadwaita' # R depends_on 'librsvg' # R depends_on 'libstemmer' # R diff --git a/packages/baobab.rb b/packages/baobab.rb index 932790632..0c5164763 100644 --- a/packages/baobab.rb +++ b/packages/baobab.rb @@ -23,7 +23,7 @@ class Baobab < Meson depends_on 'gsettings_desktop_schemas' => :build depends_on 'gtk4' # R depends_on 'harfbuzz' # R - depends_on 'itstool' => :build + depends_on 'py3_itstool' => :build depends_on 'libadwaita' # R depends_on 'pango' # R depends_on 'vala' => :build diff --git a/packages/buildessential.rb b/packages/buildessential.rb index b2e9b0d70..6f2a3b96b 100644 --- a/packages/buildessential.rb +++ b/packages/buildessential.rb @@ -104,7 +104,7 @@ class Buildessential < Package depends_on 'llvm19_lib' # This provides llvm-strip # Meson build system - depends_on 'mesonbuild' + depends_on 'py3_meson' # Node.js # depends_on 'nodebrew' diff --git a/packages/ciano.rb b/packages/ciano.rb index 8bd115f32..658fc6a6b 100644 --- a/packages/ciano.rb +++ b/packages/ciano.rb @@ -18,7 +18,7 @@ class Ciano < Meson gnome - depends_on 'mesonbuild' => :build + depends_on 'py3_meson' => :build depends_on 'ffmpeg' # R depends_on 'imagemagick7' # R depends_on 'glib' # R diff --git a/packages/geary.rb b/packages/geary.rb index 05f4f6d60..fb67e606e 100644 --- a/packages/geary.rb +++ b/packages/geary.rb @@ -35,7 +35,7 @@ class Geary < Meson depends_on 'harfbuzz' # R depends_on 'icu4c' # R depends_on 'iso_codes' - depends_on 'itstool' => :build + depends_on 'py3_itstool' => :build depends_on 'json_glib' # R depends_on 'libgee' # R depends_on 'libhandy' diff --git a/packages/gnome_calculator.rb b/packages/gnome_calculator.rb index b1e14cf4c..9807d023a 100644 --- a/packages/gnome_calculator.rb +++ b/packages/gnome_calculator.rb @@ -22,7 +22,7 @@ class Gnome_calculator < Meson depends_on 'gnome_text_editor' # R depends_on 'gtk4' # R depends_on 'gtksourceview_5' # R - depends_on 'itstool' => :build + depends_on 'py3_itstool' => :build depends_on 'libadwaita' # R depends_on 'libgee' # R depends_on 'libhandy' => :build diff --git a/packages/gparted.rb b/packages/gparted.rb index 180dc7589..34c939ed9 100644 --- a/packages/gparted.rb +++ b/packages/gparted.rb @@ -19,7 +19,7 @@ class Gparted < Package depends_on 'parted' depends_on 'gtkmm3' depends_on 'intltool' => :build - depends_on 'itstool' => :build + depends_on 'py3_itstool' => :build depends_on 'yelp_tools' => :build depends_on 'xfsprogs' depends_on 'exfatprogs' diff --git a/packages/granite.rb b/packages/granite.rb index b6e4053bd..5678cee03 100644 --- a/packages/granite.rb +++ b/packages/granite.rb @@ -18,7 +18,7 @@ class Granite < Meson gnome - depends_on 'mesonbuild' => :build + depends_on 'py3_meson' => :build depends_on 'glib' # R depends_on 'glibc' # R depends_on 'gobject_introspection' diff --git a/packages/gtk_doc.rb b/packages/gtk_doc.rb index ec41453ce..702e22f0f 100644 --- a/packages/gtk_doc.rb +++ b/packages/gtk_doc.rb @@ -19,7 +19,7 @@ class Gtk_doc < Meson depends_on 'docbook_xml' => :build depends_on 'glib' => :build - depends_on 'itstool' => :build + depends_on 'py3_itstool' => :build depends_on 'libxslt' => :build depends_on 'py3_pygments' => :build diff --git a/packages/gucharmap.rb b/packages/gucharmap.rb index 93eee1c8f..b948374f7 100644 --- a/packages/gucharmap.rb +++ b/packages/gucharmap.rb @@ -24,7 +24,7 @@ class Gucharmap < Meson depends_on 'glib' # R depends_on 'gtk3' # R depends_on 'harfbuzz' # R - depends_on 'itstool' => :build + depends_on 'py3_itstool' => :build depends_on 'pango' # R depends_on 'pcre2' # R depends_on 'vala' => :build diff --git a/packages/itstool.rb b/packages/itstool.rb deleted file mode 100644 index 85a2976ec..000000000 --- a/packages/itstool.rb +++ /dev/null @@ -1,36 +0,0 @@ -require 'buildsystems/autotools' - -class Itstool < Autotools - description 'Translate XML with PO files using W3C Internationalization Tag Set rules' - homepage 'https://itstool.org/' - version "2.0.7-1-#{CREW_PY_VER}" - license 'GPL-3+' - compatibility 'all' - source_url 'https://github.com/itstool/itstool.git' - git_hashtag version.split('-').first - binary_compression 'tar.zst' - - binary_sha256({ - aarch64: '463e52a82720360bb9a304ff276b81f076ab39c8d1bfb17578123dfb8d897af4', - armv7l: '463e52a82720360bb9a304ff276b81f076ab39c8d1bfb17578123dfb8d897af4', - i686: 'b638425cf099a72152bcbaf4c53cd1e6c72d218ddb1eefb4a31aa8d4f67b065c', - x86_64: '3a33bcc678ab2ce087ae4914997aa577fa93751190cfc64ac95176f2e92f0d6b' - }) - - depends_on 'coreutils' if ARCH == 'i686' - depends_on 'py3_libxml2' - depends_on 'py3_setuptools' => :build - depends_on 'python3' => :build - - def self.patch - downloader 'https://github.com/itstool/itstool/pull/49.patch', '72dff21156c4fce530cc73862df889c01c79b5b0503d6d38767e1da08b2d4713' - system 'patch -p1 -i 49.patch' - downloader 'https://github.com/itstool/itstool/pull/51.patch', '4e64a2e884f9d4cbc493732fcbde9f1d5bed534f9a66330bbcc1cbeb54808c1e' - system 'patch -p1 -i 51.patch' - if ARCH == 'i686' - system "sed -i 's,@PYTHON@,#{CREW_PREFIX}/bin/env -S @PYTHON@,' itstool.in" - else - system "sed -i 's,@PYTHON@,/usr/bin/env -S @PYTHON@,' itstool.in" - end - end -end diff --git a/packages/mesonbuild.rb b/packages/mesonbuild.rb deleted file mode 100644 index 332f1f4bb..000000000 --- a/packages/mesonbuild.rb +++ /dev/null @@ -1,23 +0,0 @@ -require 'buildsystems/python' - -class Mesonbuild < Python - description 'Meson is an open source build system meant to be both extremely fast and user friendly.' - homepage 'https://mesonbuild.com/' - version "1.5.1-#{CREW_PY_VER}" - license 'Apache-2.0' - compatibility 'all' - source_url 'https://github.com/mesonbuild/meson.git' - git_hashtag version.split('-').first - binary_compression 'tar.zst' - - binary_sha256({ - aarch64: '40ca1c717bf517ac259ea1c220986b87a12e67191e624c87a9e9b9d81adb5b4f', - armv7l: '40ca1c717bf517ac259ea1c220986b87a12e67191e624c87a9e9b9d81adb5b4f', - i686: 'e110ba453be9694b231dde9c4bfaaac81f33a8e277e62b7c5207b2b8e6082dcb', - x86_64: '75d8262a75abc0b581b77bac8ef603ae09abe5a2a6563113c1f97c651634166b' - }) - - depends_on 'ninja' - depends_on 'samurai' - depends_on 'python3' -end diff --git a/packages/metadata_cleaner.rb b/packages/metadata_cleaner.rb index b8d3fd522..0f43a4e8c 100644 --- a/packages/metadata_cleaner.rb +++ b/packages/metadata_cleaner.rb @@ -11,9 +11,9 @@ class Metadata_cleaner < Meson depends_on 'desktop_file_utils' # R depends_on 'gtk4' # R - depends_on 'itstool' # R + depends_on 'py3_itstool' # R depends_on 'libadwaita' # R - depends_on 'mesonbuild' => :build + depends_on 'py3_meson' => :build depends_on 'py3_mat2' # R depends_on 'py3_pygobject' # R depends_on 'python3' # R diff --git a/packages/py3_itstool.rb b/packages/py3_itstool.rb new file mode 100644 index 000000000..5ebde294b --- /dev/null +++ b/packages/py3_itstool.rb @@ -0,0 +1,25 @@ +require 'buildsystems/pip' + +class Py3_itstool < Pip + description 'Translate XML with PO files using W3C Internationalization Tag Set rules' + homepage 'https://itstool.org/' + version "2.0.7-#{CREW_PY_VER}" + license 'GPL-3+' + compatibility 'all' + source_url 'SKIP' + binary_compression 'tar.zst' + + binary_sha256({ + aarch64: '6d3bfb1577226b6059d7c9c36d4cec050c7faae4af2916445a07c216c5de89f6', + armv7l: '6d3bfb1577226b6059d7c9c36d4cec050c7faae4af2916445a07c216c5de89f6', + i686: '230db6a701ebe1a163d8fa0d2f875a988767f789400fa022f68d0a4cdefddce8', + x86_64: '31331e3deb79ff1aeb4a5925e025fb9611dbc129af42617e5c00cc5345873a74' + }) + + depends_on 'coreutils' if ARCH == 'i686' + depends_on 'py3_libxml2' + depends_on 'py3_setuptools' => :build + depends_on 'python3' => :build + + no_source_build +end diff --git a/packages/py3_meson.rb b/packages/py3_meson.rb new file mode 100644 index 000000000..dff96251c --- /dev/null +++ b/packages/py3_meson.rb @@ -0,0 +1,24 @@ +require 'buildsystems/pip' + +class Py3_meson < Pip + description 'Meson is an open source build system meant to be both extremely fast and user friendly.' + homepage 'https://mesonbuild.com/' + version "1.6.0-#{CREW_PY_VER}" + license 'Apache-2.0' + compatibility 'all' + source_url 'SKIP' + binary_compression 'tar.zst' + + binary_sha256({ + aarch64: '51dfdd3279e346edb42bcda051d4031291e75196557484b4030444581aa23472', + armv7l: '51dfdd3279e346edb42bcda051d4031291e75196557484b4030444581aa23472', + i686: '21d9f9f6614716f74770c5ef0b069fea1eb302e3353e88654896bc8e4e1d26cf', + x86_64: '42e3ee05d2f6caf08572762f2df9cd5287e66bfd64d58609a7378a213ae93dbe' + }) + + depends_on 'ninja' + depends_on 'samurai' + depends_on 'python3' + + no_source_build +end diff --git a/packages/yelp.rb b/packages/yelp.rb index 50176e65f..4be16a02d 100644 --- a/packages/yelp.rb +++ b/packages/yelp.rb @@ -27,7 +27,7 @@ class Yelp < Autotools depends_on 'gtk_doc' => :build depends_on 'harfbuzz' # R depends_on 'icu4c' # R - depends_on 'itstool' => :build + depends_on 'py3_itstool' => :build depends_on 'libgcrypt' # R depends_on 'libgpg_error' # R depends_on 'libhandy' # R diff --git a/packages/yelp_xsl.rb b/packages/yelp_xsl.rb index 6ccf2b098..3cbe2385b 100644 --- a/packages/yelp_xsl.rb +++ b/packages/yelp_xsl.rb @@ -17,7 +17,7 @@ class Yelp_xsl < Autotools x86_64: '03e70d4b552cb539c1799f1709bf22c20ddcb281b508c462aa146db023f9801c' }) - depends_on 'itstool' + depends_on 'py3_itstool' gnome end diff --git a/tools/packages.yaml b/tools/packages.yaml index b110a3191..20faa519c 100644 --- a/tools/packages.yaml +++ b/tools/packages.yaml @@ -3435,11 +3435,6 @@ url: https://salsa.debian.org/iso-codes-team/iso-codes/-/tags activity: low --- kind: url -name: itstool -url: https://github.com/itstool/itstool/releases -activity: low ---- -kind: url name: iw url: https://git.kernel.org/pub/scm/linux/kernel/git/jberg/iw.git/ activity: low @@ -5761,11 +5756,6 @@ url: https://gitlab.freedesktop.org/mesa/demos/-/tags activity: none --- kind: url -name: mesonbuild -url: https://github.com/mesonbuild/meson/releases -activity: high ---- -kind: url name: metadata_cleaner url: https://gitlab.com/rmnvgr/metadata-cleaner/-/tags activity: low @@ -7396,6 +7386,11 @@ url: https://github.com/pre-commit/identify/tags activity: medium --- kind: url +name: py3_itstool +url: https://github.com/itstool/itstool/releases +activity: low +--- +kind: url name: py3_lxml url: https://github.com/lxml/lxml/releases activity: high @@ -7411,6 +7406,11 @@ url: https://www.mercurial-scm.org/release activity: high --- kind: url +name: py3_meson +url: https://github.com/mesonbuild/meson/releases +activity: high +--- +kind: url name: py3_mutagen url: https://github.com/quodlibet/mutagen/releases activity: medium