diff --git a/.github/workflows/Unit-Test.yml b/.github/workflows/Unit-Test.yml index 375d59754..ead85fe89 100644 --- a/.github/workflows/Unit-Test.yml +++ b/.github/workflows/Unit-Test.yml @@ -41,7 +41,7 @@ jobs: cd ~ && \ git clone --depth=1 https://github.com/chromebrew/chromebrew.git build_test && \ cd build_test && \ - yes | CREW_CACHE_ENABLED=1 crew build -f packages/hello_world_chromebrew.rb" + yes | CREW_CACHE_ENABLED=1 crew build -vf packages/hello_world_chromebrew.rb" - name: Set up QEMU uses: docker/setup-qemu-action@v3 # This is not the best way to do things, a matrix would certainly be better. diff --git a/.rubocop.yml b/.rubocop.yml index cd5f7e220..1498f23ff 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -20,6 +20,10 @@ AllCops: Lint/ShadowingOuterLocalVariable: Enabled: false +Lint/Debugger: + DebuggerMethods: + Pry: ~ + Lint/SuppressedException: Enabled: false diff --git a/bin/crew b/bin/crew index 365b62817..350d1c473 100755 --- a/bin/crew +++ b/bin/crew @@ -29,6 +29,20 @@ require_relative '../commands/sysinfo' require_relative '../commands/whatprovides' require_relative '../lib/color' require_relative '../lib/const' + +if CREW_DEBUG + begin + gem 'pry-byebug' + rescue Gem::LoadError + puts ' -> install gem pry-byebug for debugging...' + Gem.install('pry-byebug') + gem 'pry-byebug' + end + require 'pry-byebug' + # Debugging starts here when enabled. + binding.pry +end + require_relative '../lib/crewlog' require_relative '../lib/deb_utils' require_relative '../lib/docopt' @@ -655,6 +669,8 @@ def build_and_preconfigure(target_dir) load File.join(CREW_LIB_PATH, 'lib/musl.rb').to_s if @pkg.is_musl? end + build_start_time = Time.now.to_i + @pkg.in_build = true unless @pkg.cached_build @pkg.patch @@ -676,6 +692,26 @@ def build_and_preconfigure(target_dir) puts 'Preconfiguring package...' cache_build if CREW_CACHE_BUILD @pkg.install + + build_end_time = Time.now.to_i + build_time_elapsed = build_end_time - build_start_time + build_time_hours = build_time_elapsed / 3600 + build_time_minutes = build_time_elapsed / 60 % 60 + build_time_seconds = build_time_elapsed % 60 + build_time_hour_string = if build_time_hours.zero? + '' + else + "#{build_time_hours} hr#{build_time_hours > 1 ? 's, ' : ', '}" + end + build_time_minutes_string = if build_time_minutes.zero? + build_time_hour_string.empty? ? '' : "#{build_time_minutes} min, " + else + "#{build_time_minutes} min, " + end + build_time_seconds_string = "#{build_time_seconds} second#{build_time_seconds > 1 ? 's' : ''}" + build_time_elapsed_string = build_time_hour_string + build_time_minutes_string + build_time_seconds_string + crewlog "Build & install for #{@pkg.name} took #{build_time_elapsed_string}." + puts "Build & install for #{@pkg.name} took #{build_time_elapsed_string}. Please ask for #{ARCH} binaries to be generated for #{@pkg.name}.".lightpurple if build_time_elapsed > 60 end end @@ -1456,21 +1492,13 @@ def print_deps_tree(args) puts tree_view end -def upload(pkg_name = nil, pkg_version = nil) - abort "\nGITLAB_TOKEN environment variable not set.\n".lightred if ENV.fetch('GITLAB_TOKEN', nil).nil? +def upload(pkg_name = nil, pkg_version = nil, gitlab_token = nil, binary_compression = nil) + abort "\nPackage to be uploaded was not specified.\n".lightred if pkg_name.nil? + abort "\nGITLAB_TOKEN environment variable not set.\n".lightred if gitlab_token.nil? packages = pkg_name - binary_compression_set = nil - gitlab_token = ENV.fetch('GITLAB_TOKEN', nil) - base_url = 'https://gitlab.com/api/v4/projects/26210301/packages/generic' - if pkg_name.nil? - %w[.tar.xz .tar.zst].each do |ext| - packages += `find #{CREW_LOCAL_REPO_ROOT}/release/*/*#{ext} -exec basename -s #{ext} {} + | cut -d- -f1 | LC_ALL=C sort | uniq | xargs` - packages += ' ' - end - abort 'No package binaries found.'.lightred if packages.empty? - end + base_url = 'https://gitlab.com/api/v4/projects/26210301/packages/generic' packages.strip! @@ -1478,12 +1506,16 @@ def upload(pkg_name = nil, pkg_version = nil) %w[x86_64 i686 armv7l].each do |arch| release_dir = "#{CREW_LOCAL_REPO_ROOT}/release/#{arch}" pkg_file = "#{CREW_LOCAL_REPO_ROOT}/packages/#{package}.rb" - new_tarfile = Dir["#{release_dir}/#{package}-#{pkg_version}-chromeos-#{arch}.{tar.xz,tar.zst}"].max_by { |f| File.mtime(f) } - if new_tarfile.nil? + new_tarfile = if binary_compression.nil? + Dir["#{release_dir}/#{package}-#{pkg_version}-chromeos-#{arch}.{tar.xz,tar.zst}"].max_by { |f| File.mtime(f) } + else + "#{release_dir}/#{package}-#{pkg_version}-chromeos-#{arch}.#{binary_compression}" + end + if new_tarfile.nil? || !File.file?(new_tarfile) puts "#{release_dir}/#{package}-#{pkg_version}-chromeos-#{arch}.(tar.xz|tar.zst) not found.\n".lightred next end - if binary_compression_set.nil? + if binary_compression.nil? ext = File.extname(new_tarfile) puts "Setting binary compression in #{pkg_file}..." # Add binary compression setting, and add the line if it doesn't exist. @@ -1499,7 +1531,6 @@ def upload(pkg_name = nil, pkg_version = nil) else puts "Unable to tell where to add \"binary_compression 'tar#{ext}'\" to #{pkg_file}. Please add it and manually.".lightblue end - binary_compression_set = 1 end puts "Package: #{package}, Arch: #{arch}".yellow puts 'Generating sha256sum ...' @@ -1509,25 +1540,38 @@ def upload(pkg_name = nil, pkg_version = nil) new_version = noname.split('-chromeos').first new_url = "#{base_url}/#{package}/#{new_version}_#{arch}/#{new_tarfile}".gsub("#{release_dir}/", '') token_label = gitlab_token.split('-').first == 'glpat' ? 'PRIVATE-TOKEN' : 'DEPLOY-TOKEN' - puts "curl -# --header \"#{token_label}: #{gitlab_token}\" --upload-file \"#{new_tarfile}\" \"#{new_url}\" | cat" if CREW_VERBOSE - output = `curl -# --header "#{token_label}: #{gitlab_token}" --upload-file "#{new_tarfile}" "#{new_url}" | cat`.chomp - if output.include?('201 Created') - puts "curl -Ls #{new_url} | sha256sum" if CREW_VERBOSE - upstream_sha256 = `curl -Ls #{new_url} | sha256sum`.chomp.split.first - if upstream_sha256 == new_sha256 - puts output.lightgreen - else - if CREW_VERBOSE - puts "expected sha256 hash=#{new_sha256}" - puts "upstream sha256 hash=#{upstream_sha256}" + if `curl -sI #{new_url}`.lines.first.split[1] == '200' + begin + gem 'highline' + rescue Gem::LoadError + puts ' -> install gem highline...' + Gem.install('highline') + gem 'highline' + end + require 'highline/import' + puts "#{new_tarfile} has already been uploaded.\nPlease change the #{package} package version from #{new_version} and try agaim.".lightred + abort 'Will NOT overwite the existing upload.'.lightred unless agree('Do you want to overwrite the existing upload instead? ').lightpurple + else + puts "curl -# --header \"#{token_label}: #{gitlab_token}\" --upload-file \"#{new_tarfile}\" \"#{new_url}\" | cat" if CREW_VERBOSE + output = `curl -# --header "#{token_label}: #{gitlab_token}" --upload-file "#{new_tarfile}" "#{new_url}" | cat`.chomp + if output.include?('201 Created') + puts "curl -Ls #{new_url} | sha256sum" if CREW_VERBOSE + upstream_sha256 = `curl -Ls #{new_url} | sha256sum`.chomp.split.first + if upstream_sha256 == new_sha256 + puts output.lightgreen + else + if CREW_VERBOSE + puts "expected sha256 hash=#{new_sha256}" + puts "upstream sha256 hash=#{upstream_sha256}" + end + puts "#{output}. Checksum mismatch. Skipping binary_sha256 update in #{pkg_file}...".lightred + next end - puts "#{output}. Checksum mismatch. Skipping binary_sha256 update in #{pkg_file}...".lightred + else + puts output.lightred + puts "#{output}. Unable to upload. Skipping binary_sha256 update in #{pkg_file}...".lightred next end - else - puts output.lightred - puts "#{output}. Unable to upload. Skipping binary_sha256 update in #{pkg_file}...".lightred - next end old_sha256 = `grep -m 1 #{arch}: #{pkg_file} 2> /dev/null`.chomp if old_sha256.empty? @@ -1851,10 +1895,11 @@ end def upgrade_command(args) = upgrade(*args[''], build_from_source: @opt_source) def upload_command(args) + gitlab_token = ENV.fetch('GITLAB_TOKEN', nil) upload if args[''].empty? args[''].each do |name| search name - upload(name, @pkg.version) if @pkg.name + upload(name, @pkg.version, gitlab_token, @pkg.binary_compression) end end diff --git a/lib/const.rb b/lib/const.rb index 3b0b531ba..d47694985 100644 --- a/lib/const.rb +++ b/lib/const.rb @@ -2,7 +2,7 @@ # Defines common constants used in different parts of crew require 'etc' -CREW_VERSION = '1.50.0' +CREW_VERSION = '1.50.1' # Kernel architecture. KERN_ARCH = Etc.uname[:machine] @@ -91,6 +91,8 @@ CREW_CACHE_DIR = ENV.fetch('CREW_CACHE_DIR', "#{HOME}/.cache/crewcache" CREW_CACHE_BUILD = ENV.fetch('CREW_CACHE_BUILD', '0').eql?('1') CREW_CACHE_FAILED_BUILD = ENV.fetch('CREW_CACHE_FAILED_BUILD', '0').eql?('1') +CREW_DEBUG = ARGV.intersect?(%w[-D --debug]) +CREW_FORCE = ARGV.intersect?(%w[-f --force]) CREW_VERBOSE = ARGV.intersect?(%w[-v --verbose]) # Set CREW_NPROC from environment variable, `distcc -j`, or `nproc`. @@ -334,6 +336,7 @@ CREW_DOCOPT = <<~DOCOPT -v --verbose Show extra information. -V --version Display the crew version. -h --help Show this screen. + -D --debug Enable debugging. version #{CREW_VERSION} DOCOPT diff --git a/lib/downloader.rb b/lib/downloader.rb index 199a9ac56..efefcdb1b 100644 --- a/lib/downloader.rb +++ b/lib/downloader.rb @@ -59,9 +59,12 @@ def downloader(url, sha256sum, filename = File.basename(url), verbose = false) calc_sha256sum = Digest::SHA256.hexdigest(File.read(filename)) unless (sha256sum =~ /^SKIP$/i) || (calc_sha256sum == sha256sum) - if @opt_force - puts "Updating checksum for #{filename} from #{sha256sum} to #{calc_sha256sum} in #{CREW_LOCAL_REPO_ROOT}/packages/#{@pkg_name}.rb .".lightblue - system "sed -i 's/#{sha256sum}/#{calc_sha256sum}/' #{CREW_LOCAL_REPO_ROOT}/packages/#{@pkg_name}.rb" + if CREW_FORCE + pkg_name = @pkg_name.empty? ? name : @pkg_name + puts "Updating checksum for #{filename}".lightblue + puts "from #{sha256sum} to #{calc_sha256sum}".lightblue + puts "in #{CREW_LOCAL_REPO_ROOT}/packages/#{pkg_name}.rb .".lightblue + system "sed -i 's/#{sha256sum}/#{calc_sha256sum}/' #{CREW_LOCAL_REPO_ROOT}/packages/#{pkg_name}.rb" else FileUtils.rm_f filename diff --git a/lib/fixup.rb b/lib/fixup.rb index 4c8004ddf..8da449386 100644 --- a/lib/fixup.rb +++ b/lib/fixup.rb @@ -82,6 +82,8 @@ pkg_update_arr = [ { pkg_name: 'qtwebsockets', pkg_rename: 'qt5_websockets', pkg_deprecated: nil, comments: nil }, { pkg_name: 'qtx11extras', pkg_rename: 'qt5_x11extras', pkg_deprecated: nil, comments: nil }, { pkg_name: 'ruby_debug', pkg_rename: nil, pkg_deprecated: true, comments: 'Integrated into ruby package.' }, + { pkg_name: 'tracker3', pkg_rename: 'tinysparql', pkg_deprecated: nil, comments: 'Renamed upstream.' }, + { pkg_name: 'tracker3_miners', pkg_rename: 'localsearch', pkg_deprecated: nil, comments: 'Renamed upstream.' }, { pkg_name: 'util_macros', pkg_rename: 'xorg_macros', pkg_deprecated: nil, comments: 'Renamed to better match upstream.' }, { pkg_name: 'wget', pkg_rename: 'wget2', pkg_deprecated: nil, comments: 'Renamed to better match upstream.' }, { pkg_name: 'zlibpkg', pkg_rename: 'zlib', pkg_deprecated: nil, comments: 'Renamed to better match upstream.' } diff --git a/lib/package_utils.rb b/lib/package_utils.rb index 64a8ef6fe..184f0e26b 100644 --- a/lib/package_utils.rb +++ b/lib/package_utils.rb @@ -44,6 +44,8 @@ class PackageUtils pkg_version.delete_suffix!("-glibc#{LIBC_VERSION}") # Delete git version tags (1.2.4-qnd73k6), avoiding overmatching and hitting things that arent git hashtags. pkg_version.gsub!(/-[\w]{7}$/, '') + # Delete -icu75.1, futureproofed until icu 100 + pkg_version.gsub!(/-icu\d{2}\.\d/, '') return pkg_version end diff --git a/manifest/armv7l/a/appstream.filelist b/manifest/armv7l/a/appstream.filelist index 7bc35d281..7d9b94d76 100644 --- a/manifest/armv7l/a/appstream.filelist +++ b/manifest/armv7l/a/appstream.filelist @@ -55,9 +55,9 @@ /usr/local/lib/girepository-1.0/AppStreamCompose-1.0.typelib /usr/local/lib/libappstream-compose.so /usr/local/lib/libappstream-compose.so.0 -/usr/local/lib/libappstream-compose.so.1.0.2 +/usr/local/lib/libappstream-compose.so.1.0.3 /usr/local/lib/libappstream.so -/usr/local/lib/libappstream.so.1.0.2 +/usr/local/lib/libappstream.so.1.0.3 /usr/local/lib/libappstream.so.5 /usr/local/lib/pkgconfig/appstream-compose.pc /usr/local/lib/pkgconfig/appstream.pc @@ -1201,6 +1201,7 @@ /usr/local/share/locale/hi/LC_MESSAGES/appstream.mo /usr/local/share/locale/hr/LC_MESSAGES/appstream.mo /usr/local/share/locale/hu/LC_MESSAGES/appstream.mo +/usr/local/share/locale/ia/LC_MESSAGES/appstream.mo /usr/local/share/locale/id/LC_MESSAGES/appstream.mo /usr/local/share/locale/it/LC_MESSAGES/appstream.mo /usr/local/share/locale/ja/LC_MESSAGES/appstream.mo diff --git a/manifest/armv7l/d/dehtml.filelist b/manifest/armv7l/d/dehtml.filelist index cd0d8f24e..987f0a8bd 100644 --- a/manifest/armv7l/d/dehtml.filelist +++ b/manifest/armv7l/d/dehtml.filelist @@ -1,5 +1,5 @@ /usr/local/bin/dehtml /usr/local/share/locale/de/LC_MESSAGES/dehtml.mo /usr/local/share/locale/nl/LC_MESSAGES/dehtml.mo -/usr/local/share/man/de/man1/dehtml.1.gz -/usr/local/share/man/man1/dehtml.1.gz +/usr/local/share/man/de/man1/dehtml.1.zst +/usr/local/share/man/man1/dehtml.1.zst diff --git a/manifest/armv7l/g/geany_plugins.filelist b/manifest/armv7l/g/geany_plugins.filelist index f313af574..da27e636c 100644 --- a/manifest/armv7l/g/geany_plugins.filelist +++ b/manifest/armv7l/g/geany_plugins.filelist @@ -52,8 +52,6 @@ /usr/local/lib/geany/pohelper.so /usr/local/lib/geany/pretty-printer.la /usr/local/lib/geany/pretty-printer.so -/usr/local/lib/geany/projectorganizer.la -/usr/local/lib/geany/projectorganizer.so /usr/local/lib/geany/scope.la /usr/local/lib/geany/scope.so /usr/local/lib/geany/sendmail.la @@ -237,11 +235,6 @@ /usr/local/share/doc/geany-plugins/pohelper/ChangeLog /usr/local/share/doc/geany-plugins/pohelper/NEWS /usr/local/share/doc/geany-plugins/pohelper/README -/usr/local/share/doc/geany-plugins/projectorganizer/AUTHORS -/usr/local/share/doc/geany-plugins/projectorganizer/COPYING -/usr/local/share/doc/geany-plugins/projectorganizer/ChangeLog -/usr/local/share/doc/geany-plugins/projectorganizer/NEWS -/usr/local/share/doc/geany-plugins/projectorganizer/README /usr/local/share/doc/geany-plugins/scope/AUTHORS /usr/local/share/doc/geany-plugins/scope/COPYING /usr/local/share/doc/geany-plugins/scope/ChangeLog diff --git a/manifest/armv7l/g/glib.filelist b/manifest/armv7l/g/glib.filelist index e0a52674b..2a811d345 100644 --- a/manifest/armv7l/g/glib.filelist +++ b/manifest/armv7l/g/glib.filelist @@ -331,23 +331,23 @@ /usr/local/lib/glib-2.0/include/glibconfig.h /usr/local/lib/libgio-2.0.so /usr/local/lib/libgio-2.0.so.0 -/usr/local/lib/libgio-2.0.so.0.8000.0 +/usr/local/lib/libgio-2.0.so.0.8101.0 /usr/local/lib/libgirepository-2.0.so /usr/local/lib/libgirepository-2.0.so.0 -/usr/local/lib/libgirepository-2.0.so.0.8000.0 +/usr/local/lib/libgirepository-2.0.so.0.8101.0 /usr/local/lib/libglib-2.0.la /usr/local/lib/libglib-2.0.so /usr/local/lib/libglib-2.0.so.0 -/usr/local/lib/libglib-2.0.so.0.8000.0 +/usr/local/lib/libglib-2.0.so.0.8101.0 /usr/local/lib/libgmodule-2.0.so /usr/local/lib/libgmodule-2.0.so.0 -/usr/local/lib/libgmodule-2.0.so.0.8000.0 +/usr/local/lib/libgmodule-2.0.so.0.8101.0 /usr/local/lib/libgobject-2.0.so /usr/local/lib/libgobject-2.0.so.0 -/usr/local/lib/libgobject-2.0.so.0.8000.0 +/usr/local/lib/libgobject-2.0.so.0.8101.0 /usr/local/lib/libgthread-2.0.so /usr/local/lib/libgthread-2.0.so.0 -/usr/local/lib/libgthread-2.0.so.0.8000.0 +/usr/local/lib/libgthread-2.0.so.0.8101.0 /usr/local/lib/pkgconfig/gio-2.0.pc /usr/local/lib/pkgconfig/gio-unix-2.0.pc /usr/local/lib/pkgconfig/girepository-2.0.pc @@ -366,8 +366,8 @@ /usr/local/share/bash-completion/completions/gio /usr/local/share/bash-completion/completions/gresource /usr/local/share/bash-completion/completions/gsettings -/usr/local/share/gdb/auto-load/usr/local/lib/libglib-2.0.so.0.8000.0-gdb.py -/usr/local/share/gdb/auto-load/usr/local/lib/libgobject-2.0.so.0.8000.0-gdb.py +/usr/local/share/gdb/auto-load/usr/local/lib/libglib-2.0.so.0.8101.0-gdb.py +/usr/local/share/gdb/auto-load/usr/local/lib/libgobject-2.0.so.0.8101.0-gdb.py /usr/local/share/gettext/its/gschema.its /usr/local/share/gettext/its/gschema.loc /usr/local/share/gir-1.0/GIRepository-3.0.gir @@ -441,6 +441,7 @@ /usr/local/share/locale/it/LC_MESSAGES/glib20.mo /usr/local/share/locale/ja/LC_MESSAGES/glib20.mo /usr/local/share/locale/ka/LC_MESSAGES/glib20.mo +/usr/local/share/locale/kab/LC_MESSAGES/glib20.mo /usr/local/share/locale/kk/LC_MESSAGES/glib20.mo /usr/local/share/locale/kn/LC_MESSAGES/glib20.mo /usr/local/share/locale/ko/LC_MESSAGES/glib20.mo diff --git a/manifest/armv7l/g/gnome_text_editor.filelist b/manifest/armv7l/g/gnome_text_editor.filelist index d530cd6d2..1ada2c588 100644 --- a/manifest/armv7l/g/gnome_text_editor.filelist +++ b/manifest/armv7l/g/gnome_text_editor.filelist @@ -1,266 +1,12 @@ /usr/local/bin/gnome-text-editor -/usr/local/include/gtksourceview-5/gtksourceview/completion-providers/snippets/gtksourcecompletionsnippets.h -/usr/local/include/gtksourceview-5/gtksourceview/completion-providers/words/gtksourcecompletionwords.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksource-enumtypes.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksource.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcebuffer.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcecompletion.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcecompletioncell.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcecompletioncontext.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcecompletionproposal.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcecompletionprovider.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourceencoding.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcefile.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcefileloader.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcefilesaver.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcegutter.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcegutterlines.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcegutterrenderer.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcegutterrendererpixbuf.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcegutterrenderertext.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcehover.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcehovercontext.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcehoverdisplay.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcehoverprovider.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourceindenter.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourceinit.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcelanguage.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcelanguagemanager.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcemap.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcemark.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcemarkattributes.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourceprintcompositor.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourceregion.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcescheduler.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcesearchcontext.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcesearchsettings.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcesnippet.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcesnippetchunk.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcesnippetcontext.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcesnippetmanager.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcespacedrawer.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcestyle.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcestylescheme.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcestyleschemechooser.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcestyleschemechooserbutton.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcestyleschemechooserwidget.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcestyleschememanager.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcestyleschemepreview.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcetag.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcetypes.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourceutils.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourceversion.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourceview.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcevimimcontext.h -/usr/local/lib/girepository-1.0/GtkSource-5.typelib -/usr/local/lib/libgtksourceview-5.so -/usr/local/lib/libgtksourceview-5.so.0 -/usr/local/lib/libgtksourceview-5.so.0.0.0 -/usr/local/lib/pkgconfig/gtksourceview-5.pc /usr/local/share/applications/org.gnome.TextEditor.desktop /usr/local/share/dbus-1/services/org.gnome.TextEditor.service -/usr/local/share/gir-1.0/GtkSource-5.gir /usr/local/share/glib-2.0/schemas/org.gnome.TextEditor.gschema.xml /usr/local/share/gnome-text-editor/styles/builder-dark.xml /usr/local/share/gnome-text-editor/styles/builder.xml /usr/local/share/gnome-text-editor/styles/peninsula-dark.xml /usr/local/share/gnome-text-editor/styles/peninsula.xml /usr/local/share/gnome-text-editor/styles/printing.xml -/usr/local/share/gtksourceview-5/fonts/BuilderBlocks.ttf -/usr/local/share/gtksourceview-5/language-specs/R.lang -/usr/local/share/gtksourceview-5/language-specs/abnf.lang -/usr/local/share/gtksourceview-5/language-specs/actionscript.lang -/usr/local/share/gtksourceview-5/language-specs/ada.lang -/usr/local/share/gtksourceview-5/language-specs/ansforth94.lang -/usr/local/share/gtksourceview-5/language-specs/asciidoc.lang -/usr/local/share/gtksourceview-5/language-specs/asp.lang -/usr/local/share/gtksourceview-5/language-specs/automake.lang -/usr/local/share/gtksourceview-5/language-specs/awk.lang -/usr/local/share/gtksourceview-5/language-specs/bennugd.lang -/usr/local/share/gtksourceview-5/language-specs/bibtex.lang -/usr/local/share/gtksourceview-5/language-specs/blueprint.lang -/usr/local/share/gtksourceview-5/language-specs/bluespec.lang -/usr/local/share/gtksourceview-5/language-specs/boo.lang -/usr/local/share/gtksourceview-5/language-specs/c.lang -/usr/local/share/gtksourceview-5/language-specs/cg.lang -/usr/local/share/gtksourceview-5/language-specs/changelog.lang -/usr/local/share/gtksourceview-5/language-specs/chdr.lang -/usr/local/share/gtksourceview-5/language-specs/cmake.lang -/usr/local/share/gtksourceview-5/language-specs/cobol.lang -/usr/local/share/gtksourceview-5/language-specs/commonlisp.lang -/usr/local/share/gtksourceview-5/language-specs/cpp.lang -/usr/local/share/gtksourceview-5/language-specs/cpphdr.lang -/usr/local/share/gtksourceview-5/language-specs/csharp.lang -/usr/local/share/gtksourceview-5/language-specs/css.lang -/usr/local/share/gtksourceview-5/language-specs/csv.lang -/usr/local/share/gtksourceview-5/language-specs/cuda.lang -/usr/local/share/gtksourceview-5/language-specs/d.lang -/usr/local/share/gtksourceview-5/language-specs/dart.lang -/usr/local/share/gtksourceview-5/language-specs/def.lang -/usr/local/share/gtksourceview-5/language-specs/desktop.lang -/usr/local/share/gtksourceview-5/language-specs/diff.lang -/usr/local/share/gtksourceview-5/language-specs/docbook.lang -/usr/local/share/gtksourceview-5/language-specs/docker.lang -/usr/local/share/gtksourceview-5/language-specs/dosbatch.lang -/usr/local/share/gtksourceview-5/language-specs/dot.lang -/usr/local/share/gtksourceview-5/language-specs/dpatch.lang -/usr/local/share/gtksourceview-5/language-specs/dtd.lang -/usr/local/share/gtksourceview-5/language-specs/dtl.lang -/usr/local/share/gtksourceview-5/language-specs/eiffel.lang -/usr/local/share/gtksourceview-5/language-specs/elixir.lang -/usr/local/share/gtksourceview-5/language-specs/erb-html.lang -/usr/local/share/gtksourceview-5/language-specs/erb-js.lang -/usr/local/share/gtksourceview-5/language-specs/erb.lang -/usr/local/share/gtksourceview-5/language-specs/erlang.lang -/usr/local/share/gtksourceview-5/language-specs/fcl.lang -/usr/local/share/gtksourceview-5/language-specs/fish.lang -/usr/local/share/gtksourceview-5/language-specs/forth.lang -/usr/local/share/gtksourceview-5/language-specs/fortran.lang -/usr/local/share/gtksourceview-5/language-specs/fsharp.lang -/usr/local/share/gtksourceview-5/language-specs/ftl.lang -/usr/local/share/gtksourceview-5/language-specs/gap.lang -/usr/local/share/gtksourceview-5/language-specs/gdb-log.lang -/usr/local/share/gtksourceview-5/language-specs/gdscript.lang -/usr/local/share/gtksourceview-5/language-specs/genie.lang -/usr/local/share/gtksourceview-5/language-specs/glsl.lang -/usr/local/share/gtksourceview-5/language-specs/go.lang -/usr/local/share/gtksourceview-5/language-specs/gradle.lang -/usr/local/share/gtksourceview-5/language-specs/groovy.lang -/usr/local/share/gtksourceview-5/language-specs/gtk-doc.lang -/usr/local/share/gtksourceview-5/language-specs/gtkrc.lang -/usr/local/share/gtksourceview-5/language-specs/haddock.lang -/usr/local/share/gtksourceview-5/language-specs/haskell-literate.lang -/usr/local/share/gtksourceview-5/language-specs/haskell.lang -/usr/local/share/gtksourceview-5/language-specs/haxe.lang -/usr/local/share/gtksourceview-5/language-specs/html.lang -/usr/local/share/gtksourceview-5/language-specs/idl-exelis.lang -/usr/local/share/gtksourceview-5/language-specs/idl.lang -/usr/local/share/gtksourceview-5/language-specs/imagej.lang -/usr/local/share/gtksourceview-5/language-specs/ini.lang -/usr/local/share/gtksourceview-5/language-specs/j.lang -/usr/local/share/gtksourceview-5/language-specs/jade.lang -/usr/local/share/gtksourceview-5/language-specs/java.lang -/usr/local/share/gtksourceview-5/language-specs/javascript-expressions.lang -/usr/local/share/gtksourceview-5/language-specs/javascript-functions-classes.lang -/usr/local/share/gtksourceview-5/language-specs/javascript-literals.lang -/usr/local/share/gtksourceview-5/language-specs/javascript-modules.lang -/usr/local/share/gtksourceview-5/language-specs/javascript-statements.lang -/usr/local/share/gtksourceview-5/language-specs/javascript-values.lang -/usr/local/share/gtksourceview-5/language-specs/javascript.lang -/usr/local/share/gtksourceview-5/language-specs/jsdoc.lang -/usr/local/share/gtksourceview-5/language-specs/json.lang -/usr/local/share/gtksourceview-5/language-specs/jsx.lang -/usr/local/share/gtksourceview-5/language-specs/julia.lang -/usr/local/share/gtksourceview-5/language-specs/kotlin.lang -/usr/local/share/gtksourceview-5/language-specs/language.dtd -/usr/local/share/gtksourceview-5/language-specs/language.rng -/usr/local/share/gtksourceview-5/language-specs/language2.rng -/usr/local/share/gtksourceview-5/language-specs/latex.lang -/usr/local/share/gtksourceview-5/language-specs/lean.lang -/usr/local/share/gtksourceview-5/language-specs/less.lang -/usr/local/share/gtksourceview-5/language-specs/lex.lang -/usr/local/share/gtksourceview-5/language-specs/libtool.lang -/usr/local/share/gtksourceview-5/language-specs/llvm.lang -/usr/local/share/gtksourceview-5/language-specs/logcat.lang -/usr/local/share/gtksourceview-5/language-specs/logtalk.lang -/usr/local/share/gtksourceview-5/language-specs/lua.lang -/usr/local/share/gtksourceview-5/language-specs/m4.lang -/usr/local/share/gtksourceview-5/language-specs/makefile.lang -/usr/local/share/gtksourceview-5/language-specs/mallard.lang -/usr/local/share/gtksourceview-5/language-specs/markdown.lang -/usr/local/share/gtksourceview-5/language-specs/matlab.lang -/usr/local/share/gtksourceview-5/language-specs/maxima.lang -/usr/local/share/gtksourceview-5/language-specs/mediawiki.lang -/usr/local/share/gtksourceview-5/language-specs/meson.lang -/usr/local/share/gtksourceview-5/language-specs/modelica.lang -/usr/local/share/gtksourceview-5/language-specs/mxml.lang -/usr/local/share/gtksourceview-5/language-specs/nemerle.lang -/usr/local/share/gtksourceview-5/language-specs/netrexx.lang -/usr/local/share/gtksourceview-5/language-specs/nix.lang -/usr/local/share/gtksourceview-5/language-specs/nsis.lang -/usr/local/share/gtksourceview-5/language-specs/objc.lang -/usr/local/share/gtksourceview-5/language-specs/objj.lang -/usr/local/share/gtksourceview-5/language-specs/ocaml.lang -/usr/local/share/gtksourceview-5/language-specs/ocl.lang -/usr/local/share/gtksourceview-5/language-specs/octave.lang -/usr/local/share/gtksourceview-5/language-specs/ooc.lang -/usr/local/share/gtksourceview-5/language-specs/opal.lang -/usr/local/share/gtksourceview-5/language-specs/opencl.lang -/usr/local/share/gtksourceview-5/language-specs/pascal.lang -/usr/local/share/gtksourceview-5/language-specs/perl.lang -/usr/local/share/gtksourceview-5/language-specs/php.lang -/usr/local/share/gtksourceview-5/language-specs/pig.lang -/usr/local/share/gtksourceview-5/language-specs/pkgconfig.lang -/usr/local/share/gtksourceview-5/language-specs/po.lang -/usr/local/share/gtksourceview-5/language-specs/powershell.lang -/usr/local/share/gtksourceview-5/language-specs/prolog.lang -/usr/local/share/gtksourceview-5/language-specs/protobuf.lang -/usr/local/share/gtksourceview-5/language-specs/puppet.lang -/usr/local/share/gtksourceview-5/language-specs/python.lang -/usr/local/share/gtksourceview-5/language-specs/python3.lang -/usr/local/share/gtksourceview-5/language-specs/reasonml.lang -/usr/local/share/gtksourceview-5/language-specs/rpmspec.lang -/usr/local/share/gtksourceview-5/language-specs/rst.lang -/usr/local/share/gtksourceview-5/language-specs/ruby.lang -/usr/local/share/gtksourceview-5/language-specs/rust.lang -/usr/local/share/gtksourceview-5/language-specs/scala.lang -/usr/local/share/gtksourceview-5/language-specs/scheme.lang -/usr/local/share/gtksourceview-5/language-specs/scilab.lang -/usr/local/share/gtksourceview-5/language-specs/scss.lang -/usr/local/share/gtksourceview-5/language-specs/sh.lang -/usr/local/share/gtksourceview-5/language-specs/sml.lang -/usr/local/share/gtksourceview-5/language-specs/solidity.lang -/usr/local/share/gtksourceview-5/language-specs/sparql.lang -/usr/local/share/gtksourceview-5/language-specs/spice.lang -/usr/local/share/gtksourceview-5/language-specs/sql.lang -/usr/local/share/gtksourceview-5/language-specs/star.lang -/usr/local/share/gtksourceview-5/language-specs/sweave.lang -/usr/local/share/gtksourceview-5/language-specs/swift.lang -/usr/local/share/gtksourceview-5/language-specs/systemverilog.lang -/usr/local/share/gtksourceview-5/language-specs/t2t.lang -/usr/local/share/gtksourceview-5/language-specs/tcl.lang -/usr/local/share/gtksourceview-5/language-specs/tera.lang -/usr/local/share/gtksourceview-5/language-specs/terraform.lang -/usr/local/share/gtksourceview-5/language-specs/texinfo.lang -/usr/local/share/gtksourceview-5/language-specs/thrift.lang -/usr/local/share/gtksourceview-5/language-specs/todotxt.lang -/usr/local/share/gtksourceview-5/language-specs/toml.lang -/usr/local/share/gtksourceview-5/language-specs/twig.lang -/usr/local/share/gtksourceview-5/language-specs/typescript-js-expressions.lang -/usr/local/share/gtksourceview-5/language-specs/typescript-js-functions-classes.lang -/usr/local/share/gtksourceview-5/language-specs/typescript-js-literals.lang -/usr/local/share/gtksourceview-5/language-specs/typescript-js-modules.lang -/usr/local/share/gtksourceview-5/language-specs/typescript-js-statements.lang -/usr/local/share/gtksourceview-5/language-specs/typescript-jsx.lang -/usr/local/share/gtksourceview-5/language-specs/typescript-type-expressions.lang -/usr/local/share/gtksourceview-5/language-specs/typescript-type-generics.lang -/usr/local/share/gtksourceview-5/language-specs/typescript-type-literals.lang -/usr/local/share/gtksourceview-5/language-specs/typescript.lang -/usr/local/share/gtksourceview-5/language-specs/vala.lang -/usr/local/share/gtksourceview-5/language-specs/vbnet.lang -/usr/local/share/gtksourceview-5/language-specs/verilog.lang -/usr/local/share/gtksourceview-5/language-specs/vhdl.lang -/usr/local/share/gtksourceview-5/language-specs/wren.lang -/usr/local/share/gtksourceview-5/language-specs/xml.lang -/usr/local/share/gtksourceview-5/language-specs/xslt.lang -/usr/local/share/gtksourceview-5/language-specs/yacc.lang -/usr/local/share/gtksourceview-5/language-specs/yaml.lang -/usr/local/share/gtksourceview-5/language-specs/yara.lang -/usr/local/share/gtksourceview-5/snippets/licenses.snippets -/usr/local/share/gtksourceview-5/snippets/snippets.rng -/usr/local/share/gtksourceview-5/styles/Adwaita-dark.xml -/usr/local/share/gtksourceview-5/styles/Adwaita.xml -/usr/local/share/gtksourceview-5/styles/classic-dark.xml -/usr/local/share/gtksourceview-5/styles/classic.xml -/usr/local/share/gtksourceview-5/styles/cobalt-light.xml -/usr/local/share/gtksourceview-5/styles/cobalt.xml -/usr/local/share/gtksourceview-5/styles/kate-dark.xml -/usr/local/share/gtksourceview-5/styles/kate.xml -/usr/local/share/gtksourceview-5/styles/oblivion.xml -/usr/local/share/gtksourceview-5/styles/solarized-dark.xml -/usr/local/share/gtksourceview-5/styles/solarized-light.xml -/usr/local/share/gtksourceview-5/styles/styles.rng -/usr/local/share/gtksourceview-5/styles/tango.xml /usr/local/share/help/C/gnome-text-editor/basics-create-new-file.page /usr/local/share/help/C/gnome-text-editor/basics-draft-folder.page /usr/local/share/help/C/gnome-text-editor/basics-open-file.page @@ -459,159 +205,58 @@ /usr/local/share/help/zh_CN/gnome-text-editor/legal.xml /usr/local/share/help/zh_CN/gnome-text-editor/media/org.gnome.TextEditor.svg /usr/local/share/help/zh_CN/gnome-text-editor/media/search-recent.png -/usr/local/share/icons/hicolor/scalable/actions/completion-snippet-symbolic.svg -/usr/local/share/icons/hicolor/scalable/actions/completion-word-symbolic.svg -/usr/local/share/icons/hicolor/scalable/actions/lang-class-symbolic.svg -/usr/local/share/icons/hicolor/scalable/actions/lang-define-symbolic.svg -/usr/local/share/icons/hicolor/scalable/actions/lang-enum-symbolic.svg -/usr/local/share/icons/hicolor/scalable/actions/lang-enum-value-symbolic.svg -/usr/local/share/icons/hicolor/scalable/actions/lang-function-symbolic.svg -/usr/local/share/icons/hicolor/scalable/actions/lang-include-symbolic.svg -/usr/local/share/icons/hicolor/scalable/actions/lang-method-symbolic.svg -/usr/local/share/icons/hicolor/scalable/actions/lang-namespace-symbolic.svg -/usr/local/share/icons/hicolor/scalable/actions/lang-struct-field-symbolic.svg -/usr/local/share/icons/hicolor/scalable/actions/lang-struct-symbolic.svg -/usr/local/share/icons/hicolor/scalable/actions/lang-typedef-symbolic.svg -/usr/local/share/icons/hicolor/scalable/actions/lang-union-symbolic.svg -/usr/local/share/icons/hicolor/scalable/actions/lang-variable-symbolic.svg /usr/local/share/icons/hicolor/scalable/apps/org.gnome.TextEditor.svg /usr/local/share/icons/hicolor/symbolic/apps/org.gnome.TextEditor-symbolic.svg /usr/local/share/locale/ab/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/ab/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/ar/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/as/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/ast/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/az/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/be/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/be/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/bg/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/bg/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/bn/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/bn_IN/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/bs/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/ca/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/ca/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/ca@valencia/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/cs/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/cs/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/cy/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/da/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/da/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/de/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/de/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/dz/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/el/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/el/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/en@shaw/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/en_CA/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/en_GB/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/en_GB/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/eo/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/eo/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/es/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/es/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/et/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/eu/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/eu/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/fa/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/fa/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/fi/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/fi/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/fr/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/fr/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/fur/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/fur/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/ga/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/gl/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/gl/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/gu/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/he/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/he/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/hi/LC_MESSAGES/gtksourceview-5.mo +/usr/local/share/locale/hi/LC_MESSAGES/gnome-text-editor.mo /usr/local/share/locale/hr/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/hr/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/hu/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/hu/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/id/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/id/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/ie/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/ie/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/is/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/is/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/it/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/it/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/ja/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/ja/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/ka/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/ka/LC_MESSAGES/gtksourceview-5.mo +/usr/local/share/locale/kab/LC_MESSAGES/gnome-text-editor.mo /usr/local/share/locale/kk/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/kk/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/kn/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/ko/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/ko/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/lt/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/lt/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/lv/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/lv/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/mai/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/mg/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/mk/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/ml/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/mn/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/mr/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/ms/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/nb/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/nb/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/ne/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/ne/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/nl/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/nl/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/nn/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/oc/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/oc/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/or/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/pa/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/pa/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/pl/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/pl/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/pt/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/pt/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/pt_BR/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/pt_BR/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/ro/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/ro/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/ru/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/ru/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/rw/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/si/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/sk/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/sk/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/sl/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/sl/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/sq/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/sr/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/sr/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/sr@latin/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/sv/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/sv/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/ta/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/te/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/tg/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/th/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/th/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/tr/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/tr/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/ug/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/uk/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/uk/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/vi/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/vi/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/xh/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/zh_CN/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/zh_CN/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/zh_HK/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/zh_TW/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/zh_TW/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/metainfo/org.gnome.TextEditor.appdata.xml -/usr/local/share/vala/vapi/gtksourceview-5.deps -/usr/local/share/vala/vapi/gtksourceview-5.vapi diff --git a/manifest/armv7l/g/graphicsmagick.filelist b/manifest/armv7l/g/graphicsmagick.filelist index 7d557706d..15fff4c70 100644 --- a/manifest/armv7l/g/graphicsmagick.filelist +++ b/manifest/armv7l/g/graphicsmagick.filelist @@ -95,227 +95,227 @@ /usr/local/include/GraphicsMagick/wand/pixel_wand.h /usr/local/include/GraphicsMagick/wand/wand_api.h /usr/local/include/GraphicsMagick/wand/wand_symbols.h -/usr/local/lib/GraphicsMagick-1.3.40/config/delegates.mgk -/usr/local/lib/GraphicsMagick-1.3.40/config/type-ghostscript.mgk -/usr/local/lib/GraphicsMagick-1.3.40/config/type-solaris.mgk -/usr/local/lib/GraphicsMagick-1.3.40/config/type-windows.mgk -/usr/local/lib/GraphicsMagick-1.3.40/config/type.mgk -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/art.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/art.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/avs.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/avs.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/bmp.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/bmp.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/braille.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/braille.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/cals.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/cals.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/caption.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/caption.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/cineon.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/cineon.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/cmyk.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/cmyk.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/cut.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/cut.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/dcm.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/dcm.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/dcraw.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/dcraw.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/dib.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/dib.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/dpx.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/dpx.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/ept.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/ept.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/fax.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/fax.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/fits.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/fits.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/gif.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/gif.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/gradient.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/gradient.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/gray.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/gray.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/heif.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/heif.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/histogram.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/histogram.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/hrz.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/hrz.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/html.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/html.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/icon.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/icon.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/identity.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/identity.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/info.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/info.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/jbig.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/jbig.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/jnx.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/jnx.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/jp2.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/jp2.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/jpeg.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/jpeg.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/jxl.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/jxl.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/label.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/label.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/locale.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/locale.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/logo.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/logo.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/mac.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/mac.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/map.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/map.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/mat.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/mat.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/matte.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/matte.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/meta.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/meta.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/miff.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/miff.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/mono.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/mono.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/mpc.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/mpc.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/mpeg.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/mpeg.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/mpr.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/mpr.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/msl.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/msl.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/mtv.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/mtv.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/mvg.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/mvg.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/null.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/null.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/otb.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/otb.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/palm.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/palm.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/pcd.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/pcd.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/pcl.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/pcl.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/pcx.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/pcx.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/pdb.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/pdb.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/pdf.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/pdf.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/pict.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/pict.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/pix.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/pix.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/plasma.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/plasma.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/png.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/png.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/pnm.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/pnm.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/preview.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/preview.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/ps.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/ps.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/ps2.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/ps2.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/ps3.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/ps3.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/pwp.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/pwp.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/rgb.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/rgb.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/rla.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/rla.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/rle.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/rle.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/sct.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/sct.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/sfw.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/sfw.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/sgi.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/sgi.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/stegano.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/stegano.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/sun.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/sun.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/svg.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/svg.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/tga.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/tga.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/tiff.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/tiff.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/tile.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/tile.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/tim.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/tim.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/topol.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/topol.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/ttf.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/ttf.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/txt.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/txt.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/uil.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/uil.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/url.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/url.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/uyvy.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/uyvy.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/vicar.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/vicar.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/vid.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/vid.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/viff.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/viff.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/wbmp.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/wbmp.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/webp.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/webp.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/wmf.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/wmf.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/wpg.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/wpg.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/x.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/x.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/xbm.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/xbm.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/xc.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/xc.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/xcf.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/xcf.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/xpm.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/xpm.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/xwd.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/xwd.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/yuv.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/coders/yuv.so -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/filters/analyze.la -/usr/local/lib/GraphicsMagick-1.3.40/modules-Q8/filters/analyze.so +/usr/local/lib/GraphicsMagick-1.3.43/config/delegates.mgk +/usr/local/lib/GraphicsMagick-1.3.43/config/type-ghostscript.mgk +/usr/local/lib/GraphicsMagick-1.3.43/config/type-solaris.mgk +/usr/local/lib/GraphicsMagick-1.3.43/config/type-windows.mgk +/usr/local/lib/GraphicsMagick-1.3.43/config/type.mgk +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/art.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/art.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/avs.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/avs.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/bmp.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/bmp.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/braille.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/braille.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/cals.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/cals.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/caption.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/caption.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/cineon.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/cineon.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/cmyk.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/cmyk.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/cut.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/cut.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/dcm.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/dcm.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/dcraw.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/dcraw.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/dib.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/dib.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/dpx.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/dpx.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/ept.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/ept.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/fax.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/fax.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/fits.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/fits.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/gif.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/gif.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/gradient.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/gradient.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/gray.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/gray.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/heif.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/heif.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/histogram.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/histogram.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/hrz.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/hrz.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/html.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/html.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/icon.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/icon.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/identity.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/identity.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/info.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/info.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/jbig.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/jbig.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/jnx.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/jnx.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/jp2.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/jp2.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/jpeg.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/jpeg.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/jxl.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/jxl.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/label.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/label.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/locale.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/locale.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/logo.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/logo.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/mac.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/mac.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/map.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/map.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/mat.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/mat.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/matte.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/matte.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/meta.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/meta.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/miff.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/miff.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/mono.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/mono.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/mpc.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/mpc.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/mpeg.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/mpeg.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/mpr.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/mpr.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/msl.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/msl.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/mtv.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/mtv.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/mvg.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/mvg.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/null.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/null.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/otb.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/otb.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/palm.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/palm.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/pcd.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/pcd.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/pcl.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/pcl.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/pcx.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/pcx.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/pdb.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/pdb.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/pdf.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/pdf.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/pict.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/pict.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/pix.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/pix.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/plasma.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/plasma.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/png.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/png.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/pnm.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/pnm.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/preview.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/preview.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/ps.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/ps.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/ps2.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/ps2.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/ps3.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/ps3.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/pwp.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/pwp.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/rgb.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/rgb.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/rla.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/rla.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/rle.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/rle.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/sct.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/sct.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/sfw.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/sfw.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/sgi.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/sgi.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/stegano.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/stegano.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/sun.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/sun.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/svg.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/svg.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/tga.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/tga.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/tiff.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/tiff.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/tile.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/tile.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/tim.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/tim.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/topol.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/topol.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/ttf.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/ttf.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/txt.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/txt.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/uil.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/uil.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/url.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/url.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/uyvy.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/uyvy.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/vicar.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/vicar.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/vid.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/vid.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/viff.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/viff.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/wbmp.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/wbmp.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/webp.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/webp.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/wmf.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/wmf.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/wpg.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/wpg.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/x.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/x.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/xbm.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/xbm.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/xc.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/xc.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/xcf.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/xcf.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/xpm.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/xpm.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/xwd.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/xwd.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/yuv.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/coders/yuv.so +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/filters/analyze.la +/usr/local/lib/GraphicsMagick-1.3.43/modules-Q8/filters/analyze.so /usr/local/lib/libGraphicsMagick++.la /usr/local/lib/libGraphicsMagick++.so /usr/local/lib/libGraphicsMagick++.so.12 -/usr/local/lib/libGraphicsMagick++.so.12.7.0 +/usr/local/lib/libGraphicsMagick++.so.12.8.0 /usr/local/lib/libGraphicsMagick.la /usr/local/lib/libGraphicsMagick.so /usr/local/lib/libGraphicsMagick.so.3 -/usr/local/lib/libGraphicsMagick.so.3.24.2 +/usr/local/lib/libGraphicsMagick.so.3.25.0 /usr/local/lib/libGraphicsMagickWand.la /usr/local/lib/libGraphicsMagickWand.so /usr/local/lib/libGraphicsMagickWand.so.2 -/usr/local/lib/libGraphicsMagickWand.so.2.9.8 +/usr/local/lib/libGraphicsMagickWand.so.2.10.0 /usr/local/lib/pkgconfig/GraphicsMagick++.pc /usr/local/lib/pkgconfig/GraphicsMagick.pc /usr/local/lib/pkgconfig/GraphicsMagickWand.pc -/usr/local/share/GraphicsMagick-1.3.40/config/colors.mgk -/usr/local/share/GraphicsMagick-1.3.40/config/log.mgk -/usr/local/share/GraphicsMagick-1.3.40/config/modules.mgk +/usr/local/share/GraphicsMagick-1.3.43/config/colors.mgk +/usr/local/share/GraphicsMagick-1.3.43/config/log.mgk +/usr/local/share/GraphicsMagick-1.3.43/config/modules.mgk /usr/local/share/doc/GraphicsMagick/ChangeLog /usr/local/share/doc/GraphicsMagick/ChangeLog.2001 /usr/local/share/doc/GraphicsMagick/ChangeLog.2002 @@ -337,6 +337,8 @@ /usr/local/share/doc/GraphicsMagick/ChangeLog.2018 /usr/local/share/doc/GraphicsMagick/ChangeLog.2019 /usr/local/share/doc/GraphicsMagick/ChangeLog.2020 +/usr/local/share/doc/GraphicsMagick/ChangeLog.2021 +/usr/local/share/doc/GraphicsMagick/ChangeLog.2022 /usr/local/share/doc/GraphicsMagick/Copyright.txt /usr/local/share/doc/GraphicsMagick/NEWS.txt /usr/local/share/doc/GraphicsMagick/www/ChangeLog-2001.html @@ -361,7 +363,8 @@ /usr/local/share/doc/GraphicsMagick/www/ChangeLog-2020.html /usr/local/share/doc/GraphicsMagick/www/ChangeLog-2021.html /usr/local/share/doc/GraphicsMagick/www/ChangeLog-2022.html -/usr/local/share/doc/GraphicsMagick/www/Changelog.html +/usr/local/share/doc/GraphicsMagick/www/ChangeLog-2023.html +/usr/local/share/doc/GraphicsMagick/www/ChangeLog.html /usr/local/share/doc/GraphicsMagick/www/Changes.html /usr/local/share/doc/GraphicsMagick/www/Copyright.html /usr/local/share/doc/GraphicsMagick/www/FAQ.html diff --git a/manifest/armv7l/g/gspell.filelist b/manifest/armv7l/g/gspell.filelist index e86dc312d..5bd4d1c0f 100644 --- a/manifest/armv7l/g/gspell.filelist +++ b/manifest/armv7l/g/gspell.filelist @@ -14,10 +14,8 @@ /usr/local/include/gspell-1/gspell/gspell-text-view.h /usr/local/include/gspell-1/gspell/gspell.h /usr/local/lib/girepository-1.0/Gspell-1.typelib -/usr/local/lib/libgspell-1.la /usr/local/lib/libgspell-1.so -/usr/local/lib/libgspell-1.so.2 -/usr/local/lib/libgspell-1.so.2.3.2 +/usr/local/lib/libgspell-1.so.3 /usr/local/lib/pkgconfig/gspell-1.pc /usr/local/share/gir-1.0/Gspell-1.gir /usr/local/share/locale/ab/LC_MESSAGES/gspell-1.mo diff --git a/manifest/armv7l/g/gtk3.filelist b/manifest/armv7l/g/gtk3.filelist index d45035838..c0380dcad 100644 --- a/manifest/armv7l/g/gtk3.filelist +++ b/manifest/armv7l/g/gtk3.filelist @@ -439,10 +439,10 @@ /usr/local/lib/libgailutil-3.so.0.0.0 /usr/local/lib/libgdk-3.so /usr/local/lib/libgdk-3.so.0 -/usr/local/lib/libgdk-3.so.0.2409.32 +/usr/local/lib/libgdk-3.so.0.2410.32 /usr/local/lib/libgtk-3.so /usr/local/lib/libgtk-3.so.0 -/usr/local/lib/libgtk-3.so.0.2409.32 +/usr/local/lib/libgtk-3.so.0.2410.32 /usr/local/lib/pkgconfig/gail-3.0.pc /usr/local/lib/pkgconfig/gdk-3.0.pc /usr/local/lib/pkgconfig/gdk-broadway-3.0.pc @@ -600,6 +600,8 @@ /usr/local/share/locale/ja/LC_MESSAGES/gtk30.mo /usr/local/share/locale/ka/LC_MESSAGES/gtk30-properties.mo /usr/local/share/locale/ka/LC_MESSAGES/gtk30.mo +/usr/local/share/locale/kab/LC_MESSAGES/gtk30-properties.mo +/usr/local/share/locale/kab/LC_MESSAGES/gtk30.mo /usr/local/share/locale/kg/LC_MESSAGES/gtk30-properties.mo /usr/local/share/locale/kg/LC_MESSAGES/gtk30.mo /usr/local/share/locale/kk/LC_MESSAGES/gtk30-properties.mo diff --git a/manifest/armv7l/g/gtk4.filelist b/manifest/armv7l/g/gtk4.filelist index fe844faec..c21a5e3f6 100644 --- a/manifest/armv7l/g/gtk4.filelist +++ b/manifest/armv7l/g/gtk4.filelist @@ -2,6 +2,7 @@ /usr/local/bin/gtk4-broadwayd /usr/local/bin/gtk4-builder-tool /usr/local/bin/gtk4-encode-symbolic-svg +/usr/local/bin/gtk4-image-tool /usr/local/bin/gtk4-launch /usr/local/bin/gtk4-path-tool /usr/local/bin/gtk4-query-settings @@ -17,7 +18,9 @@ /usr/local/include/gtk-4.0/gdk/gdkapplaunchcontext.h /usr/local/include/gtk-4.0/gdk/gdkcairo.h /usr/local/include/gtk-4.0/gdk/gdkcairocontext.h +/usr/local/include/gtk-4.0/gdk/gdkcicpparams.h /usr/local/include/gtk-4.0/gdk/gdkclipboard.h +/usr/local/include/gtk-4.0/gdk/gdkcolorstate.h /usr/local/include/gtk-4.0/gdk/gdkconfig.h /usr/local/include/gtk-4.0/gdk/gdkcontentdeserializer.h /usr/local/include/gtk-4.0/gdk/gdkcontentformats.h @@ -49,6 +52,7 @@ /usr/local/include/gtk-4.0/gdk/gdkkeys.h /usr/local/include/gtk-4.0/gdk/gdkkeysyms.h /usr/local/include/gtk-4.0/gdk/gdkmemorytexture.h +/usr/local/include/gtk-4.0/gdk/gdkmemorytexturebuilder.h /usr/local/include/gtk-4.0/gdk/gdkmonitor.h /usr/local/include/gtk-4.0/gdk/gdkpaintable.h /usr/local/include/gtk-4.0/gdk/gdkpango.h @@ -411,7 +415,7 @@ /usr/local/lib/gtk-4.0/4.0.0/printbackends/libprintbackend-file.so /usr/local/lib/libgtk-4.so /usr/local/lib/libgtk-4.so.1 -/usr/local/lib/libgtk-4.so.1.1502.0 +/usr/local/lib/libgtk-4.so.1.1504.0 /usr/local/lib/pkgconfig/gtk4-atspi.pc /usr/local/lib/pkgconfig/gtk4-broadway.pc /usr/local/lib/pkgconfig/gtk4-unix-print.pc diff --git a/manifest/armv7l/g/gtksourceview_5.filelist b/manifest/armv7l/g/gtksourceview_5.filelist index c4c7d7f86..8cd2b6a00 100644 --- a/manifest/armv7l/g/gtksourceview_5.filelist +++ b/manifest/armv7l/g/gtksourceview_5.filelist @@ -69,6 +69,7 @@ /usr/local/share/gtksourceview-5/language-specs/awk.lang /usr/local/share/gtksourceview-5/language-specs/bennugd.lang /usr/local/share/gtksourceview-5/language-specs/bibtex.lang +/usr/local/share/gtksourceview-5/language-specs/blueprint.lang /usr/local/share/gtksourceview-5/language-specs/bluespec.lang /usr/local/share/gtksourceview-5/language-specs/boo.lang /usr/local/share/gtksourceview-5/language-specs/c.lang @@ -97,6 +98,7 @@ /usr/local/share/gtksourceview-5/language-specs/dtd.lang /usr/local/share/gtksourceview-5/language-specs/dtl.lang /usr/local/share/gtksourceview-5/language-specs/eiffel.lang +/usr/local/share/gtksourceview-5/language-specs/elixir.lang /usr/local/share/gtksourceview-5/language-specs/erb-html.lang /usr/local/share/gtksourceview-5/language-specs/erb-js.lang /usr/local/share/gtksourceview-5/language-specs/erb.lang @@ -165,6 +167,7 @@ /usr/local/share/gtksourceview-5/language-specs/mxml.lang /usr/local/share/gtksourceview-5/language-specs/nemerle.lang /usr/local/share/gtksourceview-5/language-specs/netrexx.lang +/usr/local/share/gtksourceview-5/language-specs/nix.lang /usr/local/share/gtksourceview-5/language-specs/nsis.lang /usr/local/share/gtksourceview-5/language-specs/objc.lang /usr/local/share/gtksourceview-5/language-specs/objj.lang @@ -186,6 +189,7 @@ /usr/local/share/gtksourceview-5/language-specs/puppet.lang /usr/local/share/gtksourceview-5/language-specs/python.lang /usr/local/share/gtksourceview-5/language-specs/python3.lang +/usr/local/share/gtksourceview-5/language-specs/reasonml.lang /usr/local/share/gtksourceview-5/language-specs/rpmspec.lang /usr/local/share/gtksourceview-5/language-specs/rst.lang /usr/local/share/gtksourceview-5/language-specs/ruby.lang @@ -210,6 +214,7 @@ /usr/local/share/gtksourceview-5/language-specs/terraform.lang /usr/local/share/gtksourceview-5/language-specs/texinfo.lang /usr/local/share/gtksourceview-5/language-specs/thrift.lang +/usr/local/share/gtksourceview-5/language-specs/todotxt.lang /usr/local/share/gtksourceview-5/language-specs/toml.lang /usr/local/share/gtksourceview-5/language-specs/twig.lang /usr/local/share/gtksourceview-5/language-specs/typescript-js-expressions.lang @@ -226,6 +231,7 @@ /usr/local/share/gtksourceview-5/language-specs/vbnet.lang /usr/local/share/gtksourceview-5/language-specs/verilog.lang /usr/local/share/gtksourceview-5/language-specs/vhdl.lang +/usr/local/share/gtksourceview-5/language-specs/wren.lang /usr/local/share/gtksourceview-5/language-specs/xml.lang /usr/local/share/gtksourceview-5/language-specs/xslt.lang /usr/local/share/gtksourceview-5/language-specs/yacc.lang @@ -298,10 +304,12 @@ /usr/local/share/locale/hr/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/hu/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/id/LC_MESSAGES/gtksourceview-5.mo +/usr/local/share/locale/ie/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/is/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/it/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/ja/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/ka/LC_MESSAGES/gtksourceview-5.mo +/usr/local/share/locale/kab/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/kk/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/kn/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/ko/LC_MESSAGES/gtksourceview-5.mo diff --git a/manifest/armv7l/h/harfbuzz.filelist b/manifest/armv7l/h/harfbuzz.filelist index 1f50725e5..0d73b8e44 100644 --- a/manifest/armv7l/h/harfbuzz.filelist +++ b/manifest/armv7l/h/harfbuzz.filelist @@ -134,7 +134,7 @@ /usr/local/lib/libharfbuzz-cairo.a /usr/local/lib/libharfbuzz-cairo.so /usr/local/lib/libharfbuzz-cairo.so.0 -/usr/local/lib/libharfbuzz-cairo.so.0.60850.0 +/usr/local/lib/libharfbuzz-cairo.so.0.60900.0 /usr/local/lib/libharfbuzz-freetype.a /usr/local/lib/libharfbuzz-freetype.so /usr/local/lib/libharfbuzz-freetype.so.6 @@ -142,20 +142,20 @@ /usr/local/lib/libharfbuzz-gobject.a /usr/local/lib/libharfbuzz-gobject.so /usr/local/lib/libharfbuzz-gobject.so.0 -/usr/local/lib/libharfbuzz-gobject.so.0.60850.0 +/usr/local/lib/libharfbuzz-gobject.so.0.60900.0 /usr/local/lib/libharfbuzz-icu.a /usr/local/lib/libharfbuzz-icu.so /usr/local/lib/libharfbuzz-icu.so.0 -/usr/local/lib/libharfbuzz-icu.so.0.60850.0 +/usr/local/lib/libharfbuzz-icu.so.0.60900.0 /usr/local/lib/libharfbuzz-subset.a /usr/local/lib/libharfbuzz-subset.so /usr/local/lib/libharfbuzz-subset.so.0 -/usr/local/lib/libharfbuzz-subset.so.0.60850.0 +/usr/local/lib/libharfbuzz-subset.so.0.60900.0 /usr/local/lib/libharfbuzz.a /usr/local/lib/libharfbuzz.la /usr/local/lib/libharfbuzz.so /usr/local/lib/libharfbuzz.so.0 -/usr/local/lib/libharfbuzz.so.0.60850.0 +/usr/local/lib/libharfbuzz.so.0.60900.0 /usr/local/lib/pkgconfig/cairo.pc /usr/local/lib/pkgconfig/freetype2.pc /usr/local/lib/pkgconfig/harfbuzz-cairo.pc diff --git a/manifest/armv7l/i/icu4c.filelist b/manifest/armv7l/i/icu4c.filelist index 2d035f6ac..c69a9fcbe 100644 --- a/manifest/armv7l/i/icu4c.filelist +++ b/manifest/armv7l/i/icu4c.filelist @@ -65,6 +65,12 @@ /usr/local/include/unicode/measfmt.h /usr/local/include/unicode/measunit.h /usr/local/include/unicode/measure.h +/usr/local/include/unicode/messageformat2.h +/usr/local/include/unicode/messageformat2_arguments.h +/usr/local/include/unicode/messageformat2_data_model.h +/usr/local/include/unicode/messageformat2_data_model_names.h +/usr/local/include/unicode/messageformat2_formattable.h +/usr/local/include/unicode/messageformat2_function_registry.h /usr/local/include/unicode/messagepattern.h /usr/local/include/unicode/msgfmt.h /usr/local/include/unicode/normalizer2.h @@ -207,41 +213,35 @@ /usr/local/include/unicode/uvernum.h /usr/local/include/unicode/uversion.h /usr/local/include/unicode/vtzone.h -/usr/local/lib/icu/74.2/Makefile.inc -/usr/local/lib/icu/74.2/pkgdata.inc +/usr/local/lib/icu/75.1/Makefile.inc +/usr/local/lib/icu/75.1/pkgdata.inc /usr/local/lib/icu/Makefile.inc /usr/local/lib/icu/current /usr/local/lib/icu/pkgdata.inc -/usr/local/lib/libicudata.a /usr/local/lib/libicudata.so -/usr/local/lib/libicudata.so.73 /usr/local/lib/libicudata.so.74 -/usr/local/lib/libicudata.so.74.2 -/usr/local/lib/libicui18n.a +/usr/local/lib/libicudata.so.75 +/usr/local/lib/libicudata.so.75.1 /usr/local/lib/libicui18n.so -/usr/local/lib/libicui18n.so.73 /usr/local/lib/libicui18n.so.74 -/usr/local/lib/libicui18n.so.74.2 -/usr/local/lib/libicuio.a +/usr/local/lib/libicui18n.so.75 +/usr/local/lib/libicui18n.so.75.1 /usr/local/lib/libicuio.so -/usr/local/lib/libicuio.so.73 /usr/local/lib/libicuio.so.74 -/usr/local/lib/libicuio.so.74.2 -/usr/local/lib/libicutest.a +/usr/local/lib/libicuio.so.75 +/usr/local/lib/libicuio.so.75.1 /usr/local/lib/libicutest.so -/usr/local/lib/libicutest.so.73 /usr/local/lib/libicutest.so.74 -/usr/local/lib/libicutest.so.74.2 -/usr/local/lib/libicutu.a +/usr/local/lib/libicutest.so.75 +/usr/local/lib/libicutest.so.75.1 /usr/local/lib/libicutu.so -/usr/local/lib/libicutu.so.73 /usr/local/lib/libicutu.so.74 -/usr/local/lib/libicutu.so.74.2 -/usr/local/lib/libicuuc.a +/usr/local/lib/libicutu.so.75 +/usr/local/lib/libicutu.so.75.1 /usr/local/lib/libicuuc.so -/usr/local/lib/libicuuc.so.73 /usr/local/lib/libicuuc.so.74 -/usr/local/lib/libicuuc.so.74.2 +/usr/local/lib/libicuuc.so.75 +/usr/local/lib/libicuuc.so.75.1 /usr/local/lib/pkgconfig/icu-i18n.pc /usr/local/lib/pkgconfig/icu-io.pc /usr/local/lib/pkgconfig/icu-uc.pc @@ -251,10 +251,10 @@ /usr/local/sbin/gennorm2 /usr/local/sbin/gensprep /usr/local/sbin/icupkg -/usr/local/share/icu/74.2/LICENSE -/usr/local/share/icu/74.2/config/mh-linux -/usr/local/share/icu/74.2/install-sh -/usr/local/share/icu/74.2/mkinstalldirs +/usr/local/share/icu/75.1/LICENSE +/usr/local/share/icu/75.1/config/mh-linux +/usr/local/share/icu/75.1/install-sh +/usr/local/share/icu/75.1/mkinstalldirs /usr/local/share/man/man1/derb.1.zst /usr/local/share/man/man1/genbrk.1.zst /usr/local/share/man/man1/gencfu.1.zst diff --git a/manifest/armv7l/i/imlib2.filelist b/manifest/armv7l/i/imlib2.filelist index ddcd25bc0..9b7907791 100644 --- a/manifest/armv7l/i/imlib2.filelist +++ b/manifest/armv7l/i/imlib2.filelist @@ -8,12 +8,15 @@ /usr/local/bin/imlib2_test /usr/local/bin/imlib2_view /usr/local/include/Imlib2.h +/usr/local/include/Imlib2_Loader.h /usr/local/lib/imlib2/filters/bumpmap.la /usr/local/lib/imlib2/filters/bumpmap.so /usr/local/lib/imlib2/filters/colormod.la /usr/local/lib/imlib2/filters/colormod.so /usr/local/lib/imlib2/filters/testfilter.la /usr/local/lib/imlib2/filters/testfilter.so +/usr/local/lib/imlib2/loaders/ani.la +/usr/local/lib/imlib2/loaders/ani.so /usr/local/lib/imlib2/loaders/argb.la /usr/local/lib/imlib2/loaders/argb.so /usr/local/lib/imlib2/loaders/bmp.la @@ -24,6 +27,8 @@ /usr/local/lib/imlib2/loaders/ff.so /usr/local/lib/imlib2/loaders/gif.la /usr/local/lib/imlib2/loaders/gif.so +/usr/local/lib/imlib2/loaders/heif.la +/usr/local/lib/imlib2/loaders/heif.so /usr/local/lib/imlib2/loaders/ico.la /usr/local/lib/imlib2/loaders/ico.so /usr/local/lib/imlib2/loaders/j2k.la @@ -40,6 +45,8 @@ /usr/local/lib/imlib2/loaders/png.so /usr/local/lib/imlib2/loaders/pnm.la /usr/local/lib/imlib2/loaders/pnm.so +/usr/local/lib/imlib2/loaders/qoi.la +/usr/local/lib/imlib2/loaders/qoi.so /usr/local/lib/imlib2/loaders/svg.la /usr/local/lib/imlib2/loaders/svg.so /usr/local/lib/imlib2/loaders/tga.la @@ -58,7 +65,7 @@ /usr/local/lib/libImlib2.la /usr/local/lib/libImlib2.so /usr/local/lib/libImlib2.so.1 -/usr/local/lib/libImlib2.so.1.9.1 +/usr/local/lib/libImlib2.so.1.12.3 /usr/local/lib/pkgconfig/imlib2.pc /usr/local/share/imlib2/data/fonts/cinema.ttf /usr/local/share/imlib2/data/fonts/grunge.ttf @@ -82,3 +89,4 @@ /usr/local/share/imlib2/data/images/sh3.png /usr/local/share/imlib2/data/images/stop.png /usr/local/share/imlib2/data/images/tnt.png +/usr/local/share/imlib2/rgb.txt diff --git a/manifest/armv7l/l/ldb.filelist b/manifest/armv7l/l/ldb.filelist index 15930301e..1e5395bfe 100644 --- a/manifest/armv7l/l/ldb.filelist +++ b/manifest/armv7l/l/ldb.filelist @@ -25,10 +25,10 @@ /usr/local/lib/ldb/modules/ldb/tdb.so /usr/local/lib/libldb.so /usr/local/lib/libldb.so.2 -/usr/local/lib/libldb.so.2.9.0 +/usr/local/lib/libldb.so.2.9.1 /usr/local/lib/libpyldb-util.cpython-312-arm-linux-gnueabihf.so /usr/local/lib/libpyldb-util.cpython-312-arm-linux-gnueabihf.so.2 -/usr/local/lib/libpyldb-util.cpython-312-arm-linux-gnueabihf.so.2.9.0 +/usr/local/lib/libpyldb-util.cpython-312-arm-linux-gnueabihf.so.2.9.1 /usr/local/lib/pkgconfig/ldb.pc /usr/local/lib/pkgconfig/pyldb-util.cpython-312-arm-linux-gnueabihf.pc /usr/local/lib/python3.12/site-packages/_ldb_text.py diff --git a/manifest/armv7l/l/libabigail.filelist b/manifest/armv7l/l/libabigail.filelist new file mode 100644 index 000000000..50ddbbee7 --- /dev/null +++ b/manifest/armv7l/l/libabigail.filelist @@ -0,0 +1,43 @@ +/usr/local/bin/abicompat +/usr/local/bin/abidiff +/usr/local/bin/abidw +/usr/local/bin/abilint +/usr/local/bin/abipkgdiff +/usr/local/bin/kmidiff +/usr/local/include/libabigail/abg-comp-filter.h +/usr/local/include/libabigail/abg-comparison.h +/usr/local/include/libabigail/abg-config.h +/usr/local/include/libabigail/abg-corpus.h +/usr/local/include/libabigail/abg-ctf-reader.h +/usr/local/include/libabigail/abg-cxx-compat.h +/usr/local/include/libabigail/abg-diff-utils.h +/usr/local/include/libabigail/abg-dwarf-reader.h +/usr/local/include/libabigail/abg-elf-based-reader.h +/usr/local/include/libabigail/abg-elf-reader.h +/usr/local/include/libabigail/abg-fe-iface.h +/usr/local/include/libabigail/abg-fwd.h +/usr/local/include/libabigail/abg-hash.h +/usr/local/include/libabigail/abg-ini.h +/usr/local/include/libabigail/abg-interned-str.h +/usr/local/include/libabigail/abg-ir.h +/usr/local/include/libabigail/abg-libxml-utils.h +/usr/local/include/libabigail/abg-reader.h +/usr/local/include/libabigail/abg-regex.h +/usr/local/include/libabigail/abg-reporter.h +/usr/local/include/libabigail/abg-sptr-utils.h +/usr/local/include/libabigail/abg-suppression.h +/usr/local/include/libabigail/abg-tools-utils.h +/usr/local/include/libabigail/abg-traverse.h +/usr/local/include/libabigail/abg-version.h +/usr/local/include/libabigail/abg-viz-common.h +/usr/local/include/libabigail/abg-viz-dot.h +/usr/local/include/libabigail/abg-viz-svg.h +/usr/local/include/libabigail/abg-workers.h +/usr/local/include/libabigail/abg-writer.h +/usr/local/lib/libabigail.la +/usr/local/lib/libabigail.so +/usr/local/lib/libabigail.so.4 +/usr/local/lib/libabigail.so.4.0.0 +/usr/local/lib/libabigail/default.abignore +/usr/local/lib/pkgconfig/libabigail.pc +/usr/local/share/aclocal/abigail.m4 diff --git a/manifest/armv7l/l/libadwaita.filelist b/manifest/armv7l/l/libadwaita.filelist index d701ec798..4d00c1042 100644 --- a/manifest/armv7l/l/libadwaita.filelist +++ b/manifest/armv7l/l/libadwaita.filelist @@ -1,47 +1,6 @@ -/usr/local/bin/appstreamcli -/usr/local/bin/xb-tool -/usr/local/include/appstream/appstream.h -/usr/local/include/appstream/as-agreement-section.h -/usr/local/include/appstream/as-agreement.h -/usr/local/include/appstream/as-artifact.h -/usr/local/include/appstream/as-branding.h -/usr/local/include/appstream/as-bundle.h -/usr/local/include/appstream/as-category-gi.h -/usr/local/include/appstream/as-category.h -/usr/local/include/appstream/as-checksum.h -/usr/local/include/appstream/as-component-box.h -/usr/local/include/appstream/as-component.h -/usr/local/include/appstream/as-content-rating.h -/usr/local/include/appstream/as-context.h -/usr/local/include/appstream/as-developer.h -/usr/local/include/appstream/as-enum-types.h -/usr/local/include/appstream/as-icon.h -/usr/local/include/appstream/as-image.h -/usr/local/include/appstream/as-issue.h -/usr/local/include/appstream/as-launchable.h -/usr/local/include/appstream/as-macros.h -/usr/local/include/appstream/as-metadata.h -/usr/local/include/appstream/as-pool.h -/usr/local/include/appstream/as-provided.h -/usr/local/include/appstream/as-reference.h -/usr/local/include/appstream/as-relation-check-result.h -/usr/local/include/appstream/as-relation.h -/usr/local/include/appstream/as-release-list.h -/usr/local/include/appstream/as-release.h -/usr/local/include/appstream/as-review.h -/usr/local/include/appstream/as-screenshot.h -/usr/local/include/appstream/as-spdx.h -/usr/local/include/appstream/as-suggested.h -/usr/local/include/appstream/as-system-info.h -/usr/local/include/appstream/as-translation.h -/usr/local/include/appstream/as-utils.h -/usr/local/include/appstream/as-validator-issue.h -/usr/local/include/appstream/as-validator.h -/usr/local/include/appstream/as-vercmp.h -/usr/local/include/appstream/as-version.h -/usr/local/include/appstream/as-video.h /usr/local/include/libadwaita-1/adw-about-dialog.h /usr/local/include/libadwaita-1/adw-about-window.h +/usr/local/include/libadwaita-1/adw-accent-color.h /usr/local/include/libadwaita-1/adw-action-row.h /usr/local/include/libadwaita-1/adw-alert-dialog.h /usr/local/include/libadwaita-1/adw-animation-target.h @@ -52,9 +11,11 @@ /usr/local/include/libadwaita-1/adw-avatar.h /usr/local/include/libadwaita-1/adw-banner.h /usr/local/include/libadwaita-1/adw-bin.h +/usr/local/include/libadwaita-1/adw-bottom-sheet.h /usr/local/include/libadwaita-1/adw-breakpoint-bin.h /usr/local/include/libadwaita-1/adw-breakpoint.h /usr/local/include/libadwaita-1/adw-button-content.h +/usr/local/include/libadwaita-1/adw-button-row.h /usr/local/include/libadwaita-1/adw-carousel-indicator-dots.h /usr/local/include/libadwaita-1/adw-carousel-indicator-lines.h /usr/local/include/libadwaita-1/adw-carousel.h @@ -71,10 +32,13 @@ /usr/local/include/libadwaita-1/adw-flap.h /usr/local/include/libadwaita-1/adw-fold-threshold-policy.h /usr/local/include/libadwaita-1/adw-header-bar.h +/usr/local/include/libadwaita-1/adw-layout-slot.h +/usr/local/include/libadwaita-1/adw-layout.h /usr/local/include/libadwaita-1/adw-leaflet.h /usr/local/include/libadwaita-1/adw-length-unit.h /usr/local/include/libadwaita-1/adw-main.h /usr/local/include/libadwaita-1/adw-message-dialog.h +/usr/local/include/libadwaita-1/adw-multi-layout-view.h /usr/local/include/libadwaita-1/adw-navigation-direction.h /usr/local/include/libadwaita-1/adw-navigation-split-view.h /usr/local/include/libadwaita-1/adw-navigation-view.h @@ -86,6 +50,8 @@ /usr/local/include/libadwaita-1/adw-preferences-row.h /usr/local/include/libadwaita-1/adw-preferences-window.h /usr/local/include/libadwaita-1/adw-spin-row.h +/usr/local/include/libadwaita-1/adw-spinner-paintable.h +/usr/local/include/libadwaita-1/adw-spinner.h /usr/local/include/libadwaita-1/adw-split-button.h /usr/local/include/libadwaita-1/adw-spring-animation.h /usr/local/include/libadwaita-1/adw-spring-params.h @@ -111,149 +77,59 @@ /usr/local/include/libadwaita-1/adw-window-title.h /usr/local/include/libadwaita-1/adw-window.h /usr/local/include/libadwaita-1/adwaita.h -/usr/local/include/libxmlb-2/libxmlb/xb-builder-fixup.h -/usr/local/include/libxmlb-2/libxmlb/xb-builder-node.h -/usr/local/include/libxmlb-2/libxmlb/xb-builder-source-ctx.h -/usr/local/include/libxmlb-2/libxmlb/xb-builder-source.h -/usr/local/include/libxmlb-2/libxmlb/xb-builder.h -/usr/local/include/libxmlb-2/libxmlb/xb-compile.h -/usr/local/include/libxmlb-2/libxmlb/xb-machine.h -/usr/local/include/libxmlb-2/libxmlb/xb-node-query.h -/usr/local/include/libxmlb-2/libxmlb/xb-node-silo.h -/usr/local/include/libxmlb-2/libxmlb/xb-node.h -/usr/local/include/libxmlb-2/libxmlb/xb-opcode.h -/usr/local/include/libxmlb-2/libxmlb/xb-query-context.h -/usr/local/include/libxmlb-2/libxmlb/xb-query.h -/usr/local/include/libxmlb-2/libxmlb/xb-silo-export.h -/usr/local/include/libxmlb-2/libxmlb/xb-silo-query.h -/usr/local/include/libxmlb-2/libxmlb/xb-silo.h -/usr/local/include/libxmlb-2/libxmlb/xb-stack.h -/usr/local/include/libxmlb-2/libxmlb/xb-string.h -/usr/local/include/libxmlb-2/libxmlb/xb-value-bindings.h -/usr/local/include/libxmlb-2/libxmlb/xb-version.h -/usr/local/include/libxmlb-2/xmlb.h /usr/local/lib/girepository-1.0/Adw-1.typelib /usr/local/lib/libadwaita-1.so /usr/local/lib/libadwaita-1.so.0 -/usr/local/lib/libappstream.so -/usr/local/lib/libappstream.so.1.0.3 -/usr/local/lib/libappstream.so.5 -/usr/local/lib/libxmlb.so -/usr/local/lib/libxmlb.so.2 -/usr/local/lib/libxmlb.so.2.0.0 -/usr/local/lib/pkgconfig/appstream.pc /usr/local/lib/pkgconfig/libadwaita-1.pc -/usr/local/lib/pkgconfig/xmlb.pc -/usr/local/libexec/installed-tests/libxmlb/test.desktop -/usr/local/libexec/installed-tests/libxmlb/test.quirk -/usr/local/libexec/installed-tests/libxmlb/test.xml -/usr/local/libexec/installed-tests/libxmlb/test.xml.gz.gz.gz -/usr/local/libexec/installed-tests/libxmlb/test.xml.xz -/usr/local/libexec/installed-tests/libxmlb/test.xml.zstd -/usr/local/libexec/installed-tests/libxmlb/xb-self-test -/usr/local/share/appstream/appstream.conf -/usr/local/share/gettext/its/metainfo.its -/usr/local/share/gettext/its/metainfo.loc /usr/local/share/gir-1.0/Adw-1.gir -/usr/local/share/installed-tests/appstream/metainfo-validate.test -/usr/local/share/installed-tests/libxmlb/libxmlb.test /usr/local/share/locale/ab/LC_MESSAGES/libadwaita.mo -/usr/local/share/locale/ain/LC_MESSAGES/appstream.mo -/usr/local/share/locale/ar/LC_MESSAGES/appstream.mo /usr/local/share/locale/be/LC_MESSAGES/libadwaita.mo /usr/local/share/locale/bg/LC_MESSAGES/libadwaita.mo -/usr/local/share/locale/bn/LC_MESSAGES/appstream.mo -/usr/local/share/locale/bn_BD/LC_MESSAGES/appstream.mo -/usr/local/share/locale/ca/LC_MESSAGES/appstream.mo /usr/local/share/locale/ca/LC_MESSAGES/libadwaita.mo -/usr/local/share/locale/ckb/LC_MESSAGES/appstream.mo -/usr/local/share/locale/cs/LC_MESSAGES/appstream.mo /usr/local/share/locale/cs/LC_MESSAGES/libadwaita.mo -/usr/local/share/locale/da/LC_MESSAGES/appstream.mo /usr/local/share/locale/da/LC_MESSAGES/libadwaita.mo -/usr/local/share/locale/de/LC_MESSAGES/appstream.mo /usr/local/share/locale/de/LC_MESSAGES/libadwaita.mo /usr/local/share/locale/el/LC_MESSAGES/libadwaita.mo -/usr/local/share/locale/en_GB/LC_MESSAGES/appstream.mo /usr/local/share/locale/en_GB/LC_MESSAGES/libadwaita.mo -/usr/local/share/locale/eo/LC_MESSAGES/appstream.mo /usr/local/share/locale/eo/LC_MESSAGES/libadwaita.mo -/usr/local/share/locale/es/LC_MESSAGES/appstream.mo /usr/local/share/locale/es/LC_MESSAGES/libadwaita.mo -/usr/local/share/locale/et/LC_MESSAGES/appstream.mo -/usr/local/share/locale/eu/LC_MESSAGES/appstream.mo /usr/local/share/locale/eu/LC_MESSAGES/libadwaita.mo /usr/local/share/locale/fa/LC_MESSAGES/libadwaita.mo -/usr/local/share/locale/fi/LC_MESSAGES/appstream.mo /usr/local/share/locale/fi/LC_MESSAGES/libadwaita.mo -/usr/local/share/locale/fr/LC_MESSAGES/appstream.mo /usr/local/share/locale/fr/LC_MESSAGES/libadwaita.mo /usr/local/share/locale/fur/LC_MESSAGES/libadwaita.mo -/usr/local/share/locale/gd/LC_MESSAGES/appstream.mo -/usr/local/share/locale/gl/LC_MESSAGES/appstream.mo /usr/local/share/locale/gl/LC_MESSAGES/libadwaita.mo -/usr/local/share/locale/he/LC_MESSAGES/appstream.mo /usr/local/share/locale/he/LC_MESSAGES/libadwaita.mo -/usr/local/share/locale/hi/LC_MESSAGES/appstream.mo /usr/local/share/locale/hi/LC_MESSAGES/libadwaita.mo -/usr/local/share/locale/hr/LC_MESSAGES/appstream.mo /usr/local/share/locale/hr/LC_MESSAGES/libadwaita.mo -/usr/local/share/locale/hu/LC_MESSAGES/appstream.mo /usr/local/share/locale/hu/LC_MESSAGES/libadwaita.mo -/usr/local/share/locale/ia/LC_MESSAGES/appstream.mo -/usr/local/share/locale/id/LC_MESSAGES/appstream.mo /usr/local/share/locale/id/LC_MESSAGES/libadwaita.mo -/usr/local/share/locale/it/LC_MESSAGES/appstream.mo /usr/local/share/locale/it/LC_MESSAGES/libadwaita.mo -/usr/local/share/locale/ja/LC_MESSAGES/appstream.mo /usr/local/share/locale/ja/LC_MESSAGES/libadwaita.mo -/usr/local/share/locale/ka/LC_MESSAGES/appstream.mo /usr/local/share/locale/ka/LC_MESSAGES/libadwaita.mo /usr/local/share/locale/kab/LC_MESSAGES/libadwaita.mo /usr/local/share/locale/kk/LC_MESSAGES/libadwaita.mo -/usr/local/share/locale/ko/LC_MESSAGES/appstream.mo /usr/local/share/locale/ko/LC_MESSAGES/libadwaita.mo -/usr/local/share/locale/lt/LC_MESSAGES/appstream.mo /usr/local/share/locale/lt/LC_MESSAGES/libadwaita.mo /usr/local/share/locale/lv/LC_MESSAGES/libadwaita.mo -/usr/local/share/locale/nb/LC_MESSAGES/appstream.mo /usr/local/share/locale/nb/LC_MESSAGES/libadwaita.mo /usr/local/share/locale/ne/LC_MESSAGES/libadwaita.mo -/usr/local/share/locale/nl/LC_MESSAGES/appstream.mo /usr/local/share/locale/nl/LC_MESSAGES/libadwaita.mo -/usr/local/share/locale/oc/LC_MESSAGES/appstream.mo /usr/local/share/locale/oc/LC_MESSAGES/libadwaita.mo -/usr/local/share/locale/pl/LC_MESSAGES/appstream.mo +/usr/local/share/locale/pa/LC_MESSAGES/libadwaita.mo /usr/local/share/locale/pl/LC_MESSAGES/libadwaita.mo -/usr/local/share/locale/pt/LC_MESSAGES/appstream.mo /usr/local/share/locale/pt/LC_MESSAGES/libadwaita.mo -/usr/local/share/locale/pt_BR/LC_MESSAGES/appstream.mo /usr/local/share/locale/pt_BR/LC_MESSAGES/libadwaita.mo -/usr/local/share/locale/ro/LC_MESSAGES/appstream.mo /usr/local/share/locale/ro/LC_MESSAGES/libadwaita.mo -/usr/local/share/locale/rom/LC_MESSAGES/appstream.mo -/usr/local/share/locale/ru/LC_MESSAGES/appstream.mo /usr/local/share/locale/ru/LC_MESSAGES/libadwaita.mo -/usr/local/share/locale/sk/LC_MESSAGES/appstream.mo /usr/local/share/locale/sk/LC_MESSAGES/libadwaita.mo -/usr/local/share/locale/sl/LC_MESSAGES/appstream.mo /usr/local/share/locale/sl/LC_MESSAGES/libadwaita.mo -/usr/local/share/locale/sr/LC_MESSAGES/appstream.mo /usr/local/share/locale/sr/LC_MESSAGES/libadwaita.mo -/usr/local/share/locale/sr@latin/LC_MESSAGES/appstream.mo -/usr/local/share/locale/sv/LC_MESSAGES/appstream.mo /usr/local/share/locale/sv/LC_MESSAGES/libadwaita.mo -/usr/local/share/locale/tr/LC_MESSAGES/appstream.mo /usr/local/share/locale/tr/LC_MESSAGES/libadwaita.mo -/usr/local/share/locale/uk/LC_MESSAGES/appstream.mo /usr/local/share/locale/uk/LC_MESSAGES/libadwaita.mo /usr/local/share/locale/vi/LC_MESSAGES/libadwaita.mo -/usr/local/share/locale/zh_CN/LC_MESSAGES/appstream.mo /usr/local/share/locale/zh_CN/LC_MESSAGES/libadwaita.mo -/usr/local/share/locale/zh_TW/LC_MESSAGES/appstream.mo /usr/local/share/locale/zh_TW/LC_MESSAGES/libadwaita.mo -/usr/local/share/man/man1/appstreamcli.1.zst -/usr/local/share/man/man1/xb-tool.1.zst -/usr/local/share/metainfo/org.freedesktop.appstream.cli.metainfo.xml /usr/local/share/vala/vapi/libadwaita-1.deps /usr/local/share/vala/vapi/libadwaita-1.vapi diff --git a/manifest/armv7l/l/libarchive.filelist b/manifest/armv7l/l/libarchive.filelist index 9101ca184..3d2bbc4fd 100644 --- a/manifest/armv7l/l/libarchive.filelist +++ b/manifest/armv7l/l/libarchive.filelist @@ -8,7 +8,7 @@ /usr/local/lib/libarchive.la /usr/local/lib/libarchive.so /usr/local/lib/libarchive.so.13 -/usr/local/lib/libarchive.so.13.7.2 +/usr/local/lib/libarchive.so.13.7.4 /usr/local/lib/pkgconfig/libarchive.pc /usr/local/share/man/man1/bsdcat.1.zst /usr/local/share/man/man1/bsdcpio.1.zst diff --git a/manifest/armv7l/l/libcdr.filelist b/manifest/armv7l/l/libcdr.filelist index e5dc28932..b66adb1a1 100644 --- a/manifest/armv7l/l/libcdr.filelist +++ b/manifest/armv7l/l/libcdr.filelist @@ -173,6 +173,7 @@ /usr/local/share/doc/libcdr/html/dir_bfccd401955b95cf8c75461437045ac0.html /usr/local/share/doc/libcdr/html/dir_c85d3e3c5052e9ad9ce18c6863244a25.html /usr/local/share/doc/libcdr/html/doxygen.css +/usr/local/share/doc/libcdr/html/doxygen_crawl.html /usr/local/share/doc/libcdr/html/files.html /usr/local/share/doc/libcdr/html/functions.html /usr/local/share/doc/libcdr/html/functions_a.html diff --git a/manifest/armv7l/l/libdbusmenu_gtk3.filelist b/manifest/armv7l/l/libdbusmenu_gtk3.filelist index ae28c08f1..8bb16f2b8 100644 --- a/manifest/armv7l/l/libdbusmenu_gtk3.filelist +++ b/manifest/armv7l/l/libdbusmenu_gtk3.filelist @@ -32,7 +32,6 @@ /usr/local/lib/pkgconfig/dbusmenu-gtk3-0.4.pc /usr/local/lib/pkgconfig/dbusmenu-jsonloader-0.4.pc /usr/local/libexec/dbusmenu-bench -/usr/local/libexec/dbusmenu-dumper /usr/local/libexec/dbusmenu-testapp /usr/local/share/doc/libdbusmenu/README.dbusmenu-bench /usr/local/share/doc/libdbusmenu/examples/glib-server-nomenu.c diff --git a/manifest/armv7l/l/libgedit_gfls.filelist b/manifest/armv7l/l/libgedit_gfls.filelist new file mode 100644 index 000000000..e549a6126 --- /dev/null +++ b/manifest/armv7l/l/libgedit_gfls.filelist @@ -0,0 +1,12 @@ +/usr/local/include/libgedit-gfls-1/gfls/gfls-enum-types.h +/usr/local/include/libgedit-gfls-1/gfls/gfls-init.h +/usr/local/include/libgedit-gfls-1/gfls/gfls-input-stream.h +/usr/local/include/libgedit-gfls-1/gfls/gfls-loader-basic.h +/usr/local/include/libgedit-gfls-1/gfls/gfls-unsaved-document-titles.h +/usr/local/include/libgedit-gfls-1/gfls/gfls-utf8.h +/usr/local/include/libgedit-gfls-1/gfls/gfls.h +/usr/local/lib/girepository-1.0/Gfls-1.typelib +/usr/local/lib/libgedit-gfls-1.so +/usr/local/lib/libgedit-gfls-1.so.0 +/usr/local/lib/pkgconfig/libgedit-gfls-1.pc +/usr/local/share/gir-1.0/Gfls-1.gir diff --git a/manifest/armv7l/l/libgedit_gtksourceview.filelist b/manifest/armv7l/l/libgedit_gtksourceview.filelist index 9be1fd57c..09c1eb022 100644 --- a/manifest/armv7l/l/libgedit_gtksourceview.filelist +++ b/manifest/armv7l/l/libgedit_gtksourceview.filelist @@ -38,7 +38,7 @@ /usr/local/include/libgedit-gtksourceview-300/gtksourceview/gtksourceview.h /usr/local/lib/girepository-1.0/GtkSource-300.typelib /usr/local/lib/libgedit-gtksourceview-300.so -/usr/local/lib/libgedit-gtksourceview-300.so.0 +/usr/local/lib/libgedit-gtksourceview-300.so.1 /usr/local/lib/pkgconfig/libgedit-gtksourceview-300.pc /usr/local/share/gir-1.0/GtkSource-300.gir /usr/local/share/libgedit-gtksourceview-300/language-specs/R.lang @@ -221,6 +221,7 @@ /usr/local/share/locale/id/LC_MESSAGES/libgedit-gtksourceview-300.mo /usr/local/share/locale/it/LC_MESSAGES/libgedit-gtksourceview-300.mo /usr/local/share/locale/ja/LC_MESSAGES/libgedit-gtksourceview-300.mo +/usr/local/share/locale/ka/LC_MESSAGES/libgedit-gtksourceview-300.mo /usr/local/share/locale/kk/LC_MESSAGES/libgedit-gtksourceview-300.mo /usr/local/share/locale/kn/LC_MESSAGES/libgedit-gtksourceview-300.mo /usr/local/share/locale/ko/LC_MESSAGES/libgedit-gtksourceview-300.mo diff --git a/manifest/armv7l/l/libgsf.filelist b/manifest/armv7l/l/libgsf.filelist index 7c9d2fb88..554a85f2e 100644 --- a/manifest/armv7l/l/libgsf.filelist +++ b/manifest/armv7l/l/libgsf.filelist @@ -55,7 +55,7 @@ /usr/local/lib/libgsf-1.la /usr/local/lib/libgsf-1.so /usr/local/lib/libgsf-1.so.114 -/usr/local/lib/libgsf-1.so.114.0.52 +/usr/local/lib/libgsf-1.so.114.0.53 /usr/local/lib/pkgconfig/libgsf-1.pc /usr/local/share/gir-1.0/Gsf-1.gir /usr/local/share/locale/as/LC_MESSAGES/libgsf.mo @@ -74,6 +74,7 @@ /usr/local/share/locale/fr/LC_MESSAGES/libgsf.mo /usr/local/share/locale/gl/LC_MESSAGES/libgsf.mo /usr/local/share/locale/he/LC_MESSAGES/libgsf.mo +/usr/local/share/locale/hi/LC_MESSAGES/libgsf.mo /usr/local/share/locale/hr/LC_MESSAGES/libgsf.mo /usr/local/share/locale/hu/LC_MESSAGES/libgsf.mo /usr/local/share/locale/id/LC_MESSAGES/libgsf.mo diff --git a/manifest/armv7l/l/libical.filelist b/manifest/armv7l/l/libical.filelist index 7ac139d75..8c27c01b4 100644 --- a/manifest/armv7l/l/libical.filelist +++ b/manifest/armv7l/l/libical.filelist @@ -95,27 +95,27 @@ /usr/local/lib/libical-glib.a /usr/local/lib/libical-glib.so /usr/local/lib/libical-glib.so.3 -/usr/local/lib/libical-glib.so.3.0.10 +/usr/local/lib/libical-glib.so.3.0.18 /usr/local/lib/libical.a /usr/local/lib/libical.so /usr/local/lib/libical.so.3 -/usr/local/lib/libical.so.3.0.10 +/usr/local/lib/libical.so.3.0.18 /usr/local/lib/libical_cxx.a /usr/local/lib/libical_cxx.so /usr/local/lib/libical_cxx.so.3 -/usr/local/lib/libical_cxx.so.3.0.10 +/usr/local/lib/libical_cxx.so.3.0.18 /usr/local/lib/libicalss.a /usr/local/lib/libicalss.so /usr/local/lib/libicalss.so.3 -/usr/local/lib/libicalss.so.3.0.10 +/usr/local/lib/libicalss.so.3.0.18 /usr/local/lib/libicalss_cxx.a /usr/local/lib/libicalss_cxx.so /usr/local/lib/libicalss_cxx.so.3 -/usr/local/lib/libicalss_cxx.so.3.0.10 +/usr/local/lib/libicalss_cxx.so.3.0.18 /usr/local/lib/libicalvcal.a /usr/local/lib/libicalvcal.so /usr/local/lib/libicalvcal.so.3 -/usr/local/lib/libicalvcal.so.3.0.10 +/usr/local/lib/libicalvcal.so.3.0.18 /usr/local/lib/pkgconfig/libical-glib.pc /usr/local/lib/pkgconfig/libical.pc /usr/local/libexec/libical/ical-glib-src-generator diff --git a/manifest/armv7l/l/libmbedtls.filelist b/manifest/armv7l/l/libmbedtls.filelist index 568a3889a..040302cb3 100644 --- a/manifest/armv7l/l/libmbedtls.filelist +++ b/manifest/armv7l/l/libmbedtls.filelist @@ -26,6 +26,7 @@ /usr/local/bin/key_ladder_demo.sh /usr/local/bin/load_roots /usr/local/bin/md_hmac_demo +/usr/local/bin/metatest /usr/local/bin/mini_client /usr/local/bin/mpi_demo /usr/local/bin/pem2der @@ -34,6 +35,7 @@ /usr/local/bin/pk_sign /usr/local/bin/pk_verify /usr/local/bin/psa_constant_names +/usr/local/bin/psa_hash /usr/local/bin/query_compile_time_config /usr/local/bin/query_included_headers /usr/local/bin/req_app @@ -56,12 +58,30 @@ /usr/local/bin/strerror /usr/local/bin/udp_proxy /usr/local/bin/zeroize +/usr/local/include/everest/Hacl_Curve25519.h +/usr/local/include/everest/everest.h +/usr/local/include/everest/kremlib.h +/usr/local/include/everest/kremlib/FStar_UInt128.h +/usr/local/include/everest/kremlib/FStar_UInt64_FStar_UInt32_FStar_UInt16_FStar_UInt8.h +/usr/local/include/everest/kremlin/c_endianness.h +/usr/local/include/everest/kremlin/internal/builtin.h +/usr/local/include/everest/kremlin/internal/callconv.h +/usr/local/include/everest/kremlin/internal/compat.h +/usr/local/include/everest/kremlin/internal/debug.h +/usr/local/include/everest/kremlin/internal/target.h +/usr/local/include/everest/kremlin/internal/types.h +/usr/local/include/everest/kremlin/internal/wasmsupport.h +/usr/local/include/everest/vs2013/Hacl_Curve25519.h +/usr/local/include/everest/vs2013/inttypes.h +/usr/local/include/everest/vs2013/stdbool.h +/usr/local/include/everest/x25519.h /usr/local/include/mbedtls/aes.h /usr/local/include/mbedtls/aria.h /usr/local/include/mbedtls/asn1.h /usr/local/include/mbedtls/asn1write.h /usr/local/include/mbedtls/base64.h /usr/local/include/mbedtls/bignum.h +/usr/local/include/mbedtls/block_cipher.h /usr/local/include/mbedtls/build_info.h /usr/local/include/mbedtls/camellia.h /usr/local/include/mbedtls/ccm.h @@ -71,6 +91,12 @@ /usr/local/include/mbedtls/cipher.h /usr/local/include/mbedtls/cmac.h /usr/local/include/mbedtls/compat-2.x.h +/usr/local/include/mbedtls/config_adjust_legacy_crypto.h +/usr/local/include/mbedtls/config_adjust_legacy_from_psa.h +/usr/local/include/mbedtls/config_adjust_psa_from_legacy.h +/usr/local/include/mbedtls/config_adjust_psa_superset_legacy.h +/usr/local/include/mbedtls/config_adjust_ssl.h +/usr/local/include/mbedtls/config_adjust_x509.h /usr/local/include/mbedtls/config_psa.h /usr/local/include/mbedtls/constant_time.h /usr/local/include/mbedtls/ctr_drbg.h @@ -86,7 +112,6 @@ /usr/local/include/mbedtls/gcm.h /usr/local/include/mbedtls/hkdf.h /usr/local/include/mbedtls/hmac_drbg.h -/usr/local/include/mbedtls/legacy_or_psa.h /usr/local/include/mbedtls/lms.h /usr/local/include/mbedtls/mbedtls_config.h /usr/local/include/mbedtls/md.h @@ -110,6 +135,7 @@ /usr/local/include/mbedtls/rsa.h /usr/local/include/mbedtls/sha1.h /usr/local/include/mbedtls/sha256.h +/usr/local/include/mbedtls/sha3.h /usr/local/include/mbedtls/sha512.h /usr/local/include/mbedtls/ssl.h /usr/local/include/mbedtls/ssl_cache.h @@ -123,15 +149,22 @@ /usr/local/include/mbedtls/x509_crl.h /usr/local/include/mbedtls/x509_crt.h /usr/local/include/mbedtls/x509_csr.h +/usr/local/include/psa/build_info.h /usr/local/include/psa/crypto.h +/usr/local/include/psa/crypto_adjust_auto_enabled.h +/usr/local/include/psa/crypto_adjust_config_key_pair_types.h +/usr/local/include/psa/crypto_adjust_config_synonyms.h /usr/local/include/psa/crypto_builtin_composites.h +/usr/local/include/psa/crypto_builtin_key_derivation.h /usr/local/include/psa/crypto_builtin_primitives.h /usr/local/include/psa/crypto_compat.h /usr/local/include/psa/crypto_config.h /usr/local/include/psa/crypto_driver_common.h /usr/local/include/psa/crypto_driver_contexts_composites.h +/usr/local/include/psa/crypto_driver_contexts_key_derivation.h /usr/local/include/psa/crypto_driver_contexts_primitives.h /usr/local/include/psa/crypto_extra.h +/usr/local/include/psa/crypto_legacy.h /usr/local/include/psa/crypto_platform.h /usr/local/include/psa/crypto_se_driver.h /usr/local/include/psa/crypto_sizes.h @@ -142,15 +175,20 @@ /usr/local/lib/cmake/MbedTLS/MbedTLSConfigVersion.cmake /usr/local/lib/cmake/MbedTLS/MbedTLSTargets-release.cmake /usr/local/lib/cmake/MbedTLS/MbedTLSTargets.cmake +/usr/local/lib/libeverest.a /usr/local/lib/libmbedcrypto.a /usr/local/lib/libmbedcrypto.so -/usr/local/lib/libmbedcrypto.so.14 -/usr/local/lib/libmbedcrypto.so.3.4.1 +/usr/local/lib/libmbedcrypto.so.16 +/usr/local/lib/libmbedcrypto.so.3.6.0 /usr/local/lib/libmbedtls.a /usr/local/lib/libmbedtls.so -/usr/local/lib/libmbedtls.so.19 -/usr/local/lib/libmbedtls.so.3.4.1 +/usr/local/lib/libmbedtls.so.21 +/usr/local/lib/libmbedtls.so.3.6.0 /usr/local/lib/libmbedx509.a /usr/local/lib/libmbedx509.so -/usr/local/lib/libmbedx509.so.3.4.1 -/usr/local/lib/libmbedx509.so.5 +/usr/local/lib/libmbedx509.so.3.6.0 +/usr/local/lib/libmbedx509.so.7 +/usr/local/lib/libp256m.a +/usr/local/lib/pkgconfig/mbedcrypto.pc +/usr/local/lib/pkgconfig/mbedtls.pc +/usr/local/lib/pkgconfig/mbedx509.pc diff --git a/manifest/armv7l/l/librsvg.filelist b/manifest/armv7l/l/librsvg.filelist index 6fb6c6a31..13a967708 100644 --- a/manifest/armv7l/l/librsvg.filelist +++ b/manifest/armv7l/l/librsvg.filelist @@ -11,7 +11,7 @@ /usr/local/lib/librsvg-2.la /usr/local/lib/librsvg-2.so /usr/local/lib/librsvg-2.so.2 -/usr/local/lib/librsvg-2.so.2.48.0 +/usr/local/lib/librsvg-2.so.2.50.0 /usr/local/lib/pkgconfig/librsvg-2.0.pc /usr/local/share/doc/librsvg/README.md /usr/local/share/doc/librsvg/code-of-conduct.md diff --git a/manifest/armv7l/l/libvisio.filelist b/manifest/armv7l/l/libvisio.filelist index b80be6f9c..5a83dc0c3 100644 --- a/manifest/armv7l/l/libvisio.filelist +++ b/manifest/armv7l/l/libvisio.filelist @@ -9,7 +9,7 @@ /usr/local/lib/libvisio-0.1.la /usr/local/lib/libvisio-0.1.so /usr/local/lib/libvisio-0.1.so.1 -/usr/local/lib/libvisio-0.1.so.1.0.7 +/usr/local/lib/libvisio-0.1.so.1.0.8 /usr/local/lib/pkgconfig/libvisio-0.1.pc /usr/local/share/doc/libvisio/html/VDXParser_8cpp.html /usr/local/share/doc/libvisio/html/VDXParser_8h.html @@ -325,6 +325,7 @@ /usr/local/share/doc/libvisio/html/dir_c85d3e3c5052e9ad9ce18c6863244a25.html /usr/local/share/doc/libvisio/html/dir_dbd43e63c223a2e9a266a1fcf5cbb056.html /usr/local/share/doc/libvisio/html/doxygen.css +/usr/local/share/doc/libvisio/html/doxygen_crawl.html /usr/local/share/doc/libvisio/html/files.html /usr/local/share/doc/libvisio/html/functions.html /usr/local/share/doc/libvisio/html/functions_a.html diff --git a/manifest/armv7l/l/libxml2.filelist b/manifest/armv7l/l/libxml2.filelist index a02eb4490..4a1c63dc7 100644 --- a/manifest/armv7l/l/libxml2.filelist +++ b/manifest/armv7l/l/libxml2.filelist @@ -47,14 +47,14 @@ /usr/local/include/libxml2/libxml/xpath.h /usr/local/include/libxml2/libxml/xpathInternals.h /usr/local/include/libxml2/libxml/xpointer.h -/usr/local/lib/cmake/libxml2-2.13.2/libxml2-config-version.cmake -/usr/local/lib/cmake/libxml2-2.13.2/libxml2-config.cmake -/usr/local/lib/cmake/libxml2-2.13.2/libxml2-export-release.cmake -/usr/local/lib/cmake/libxml2-2.13.2/libxml2-export.cmake +/usr/local/lib/cmake/libxml2-2.13.3/libxml2-config-version.cmake +/usr/local/lib/cmake/libxml2-2.13.3/libxml2-config.cmake +/usr/local/lib/cmake/libxml2-2.13.3/libxml2-export-release.cmake +/usr/local/lib/cmake/libxml2-2.13.3/libxml2-export.cmake /usr/local/lib/libxml2.la /usr/local/lib/libxml2.so /usr/local/lib/libxml2.so.2 -/usr/local/lib/libxml2.so.2.13.2 +/usr/local/lib/libxml2.so.2.13.3 /usr/local/lib/pkgconfig/libxml-2.0.pc /usr/local/share/aclocal/libxml.m4 /usr/local/share/doc/libxml2/devhelp/general.html diff --git a/manifest/armv7l/l/libxml2_autotools.filelist b/manifest/armv7l/l/libxml2_autotools.filelist new file mode 100644 index 000000000..334e2b345 --- /dev/null +++ b/manifest/armv7l/l/libxml2_autotools.filelist @@ -0,0 +1,115 @@ +/usr/local/bin/xml2-config +/usr/local/bin/xmlcatalog +/usr/local/bin/xmllint +/usr/local/include/libxml2/libxml/HTMLparser.h +/usr/local/include/libxml2/libxml/HTMLtree.h +/usr/local/include/libxml2/libxml/SAX.h +/usr/local/include/libxml2/libxml/SAX2.h +/usr/local/include/libxml2/libxml/c14n.h +/usr/local/include/libxml2/libxml/catalog.h +/usr/local/include/libxml2/libxml/chvalid.h +/usr/local/include/libxml2/libxml/debugXML.h +/usr/local/include/libxml2/libxml/dict.h +/usr/local/include/libxml2/libxml/encoding.h +/usr/local/include/libxml2/libxml/entities.h +/usr/local/include/libxml2/libxml/globals.h +/usr/local/include/libxml2/libxml/hash.h +/usr/local/include/libxml2/libxml/list.h +/usr/local/include/libxml2/libxml/nanoftp.h +/usr/local/include/libxml2/libxml/nanohttp.h +/usr/local/include/libxml2/libxml/parser.h +/usr/local/include/libxml2/libxml/parserInternals.h +/usr/local/include/libxml2/libxml/pattern.h +/usr/local/include/libxml2/libxml/relaxng.h +/usr/local/include/libxml2/libxml/schemasInternals.h +/usr/local/include/libxml2/libxml/schematron.h +/usr/local/include/libxml2/libxml/threads.h +/usr/local/include/libxml2/libxml/tree.h +/usr/local/include/libxml2/libxml/uri.h +/usr/local/include/libxml2/libxml/valid.h +/usr/local/include/libxml2/libxml/xinclude.h +/usr/local/include/libxml2/libxml/xlink.h +/usr/local/include/libxml2/libxml/xmlIO.h +/usr/local/include/libxml2/libxml/xmlautomata.h +/usr/local/include/libxml2/libxml/xmlerror.h +/usr/local/include/libxml2/libxml/xmlexports.h +/usr/local/include/libxml2/libxml/xmlmemory.h +/usr/local/include/libxml2/libxml/xmlmodule.h +/usr/local/include/libxml2/libxml/xmlreader.h +/usr/local/include/libxml2/libxml/xmlregexp.h +/usr/local/include/libxml2/libxml/xmlsave.h +/usr/local/include/libxml2/libxml/xmlschemas.h +/usr/local/include/libxml2/libxml/xmlschemastypes.h +/usr/local/include/libxml2/libxml/xmlstring.h +/usr/local/include/libxml2/libxml/xmlunicode.h +/usr/local/include/libxml2/libxml/xmlversion.h +/usr/local/include/libxml2/libxml/xmlwriter.h +/usr/local/include/libxml2/libxml/xpath.h +/usr/local/include/libxml2/libxml/xpathInternals.h +/usr/local/include/libxml2/libxml/xpointer.h +/usr/local/lib/cmake/libxml2/libxml2-config.cmake +/usr/local/lib/libxml2.la +/usr/local/lib/libxml2.so +/usr/local/lib/libxml2.so.2 +/usr/local/lib/libxml2.so.2.13.3 +/usr/local/lib/pkgconfig/libxml-2.0.pc +/usr/local/share/aclocal/libxml.m4 +/usr/local/share/doc/libxml2/xmlcatalog.html +/usr/local/share/doc/libxml2/xmllint.html +/usr/local/share/gtk-doc/html/libxml2/general.html +/usr/local/share/gtk-doc/html/libxml2/home.png +/usr/local/share/gtk-doc/html/libxml2/index.html +/usr/local/share/gtk-doc/html/libxml2/left.png +/usr/local/share/gtk-doc/html/libxml2/libxml2-HTMLparser.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-HTMLtree.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-SAX.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-SAX2.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-c14n.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-catalog.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-chvalid.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-debugXML.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-dict.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-encoding.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-entities.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-globals.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-hash.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-list.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-nanoftp.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-nanohttp.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-parser.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-parserInternals.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-pattern.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-relaxng.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-schemasInternals.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-schematron.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-threads.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-tree.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-uri.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-valid.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xinclude.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xlink.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlIO.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlautomata.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlerror.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlexports.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlmemory.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlmodule.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlreader.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlregexp.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlsave.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlschemas.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlschemastypes.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlstring.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlunicode.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlversion.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlwriter.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xpath.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xpathInternals.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xpointer.html +/usr/local/share/gtk-doc/html/libxml2/libxml2.devhelp2 +/usr/local/share/gtk-doc/html/libxml2/right.png +/usr/local/share/gtk-doc/html/libxml2/style.css +/usr/local/share/gtk-doc/html/libxml2/up.png +/usr/local/share/man/man1/xml2-config.1.zst +/usr/local/share/man/man1/xmlcatalog.1.zst +/usr/local/share/man/man1/xmllint.1.zst diff --git a/manifest/armv7l/l/libxslt.filelist b/manifest/armv7l/l/libxslt.filelist index a589b70df..e76ef4c9b 100644 --- a/manifest/armv7l/l/libxslt.filelist +++ b/manifest/armv7l/l/libxslt.filelist @@ -24,117 +24,83 @@ /usr/local/include/libxslt/xsltexports.h /usr/local/include/libxslt/xsltlocale.h /usr/local/include/libxslt/xsltutils.h -/usr/local/lib/libexslt.la +/usr/local/lib/cmake/libxslt-1.1.42/libxslt-config-version.cmake +/usr/local/lib/cmake/libxslt-1.1.42/libxslt-config.cmake +/usr/local/lib/cmake/libxslt-1.1.42/libxslt-export-release.cmake +/usr/local/lib/cmake/libxslt-1.1.42/libxslt-export.cmake /usr/local/lib/libexslt.so /usr/local/lib/libexslt.so.0 -/usr/local/lib/libexslt.so.0.8.20 -/usr/local/lib/libxslt.la +/usr/local/lib/libexslt.so.0.8.23 /usr/local/lib/libxslt.so /usr/local/lib/libxslt.so.1 -/usr/local/lib/libxslt.so.1.1.34 +/usr/local/lib/libxslt.so.1.1.42 /usr/local/lib/pkgconfig/libexslt.pc /usr/local/lib/pkgconfig/libxslt.pc -/usr/local/lib/python2.7/site-packages/libxslt.py -/usr/local/lib/python2.7/site-packages/libxsltmod.la -/usr/local/lib/python2.7/site-packages/libxsltmod.so /usr/local/lib/xsltConf.sh -/usr/local/share/aclocal/libxslt.m4 -/usr/local/share/doc/libxslt-1.1.34/html/API.html -/usr/local/share/doc/libxslt-1.1.34/html/APIchunk0.html -/usr/local/share/doc/libxslt-1.1.34/html/APIchunk1.html -/usr/local/share/doc/libxslt-1.1.34/html/APIchunk10.html -/usr/local/share/doc/libxslt-1.1.34/html/APIchunk11.html -/usr/local/share/doc/libxslt-1.1.34/html/APIchunk12.html -/usr/local/share/doc/libxslt-1.1.34/html/APIchunk2.html -/usr/local/share/doc/libxslt-1.1.34/html/APIchunk3.html -/usr/local/share/doc/libxslt-1.1.34/html/APIchunk4.html -/usr/local/share/doc/libxslt-1.1.34/html/APIchunk5.html -/usr/local/share/doc/libxslt-1.1.34/html/APIchunk6.html -/usr/local/share/doc/libxslt-1.1.34/html/APIchunk7.html -/usr/local/share/doc/libxslt-1.1.34/html/APIchunk8.html -/usr/local/share/doc/libxslt-1.1.34/html/APIchunk9.html -/usr/local/share/doc/libxslt-1.1.34/html/APIconstructors.html -/usr/local/share/doc/libxslt-1.1.34/html/APIfiles.html -/usr/local/share/doc/libxslt-1.1.34/html/APIfunctions.html -/usr/local/share/doc/libxslt-1.1.34/html/APIsymbols.html -/usr/local/share/doc/libxslt-1.1.34/html/EXSLT/APIchunk0.html -/usr/local/share/doc/libxslt-1.1.34/html/EXSLT/APIconstructors.html -/usr/local/share/doc/libxslt-1.1.34/html/EXSLT/APIfiles.html -/usr/local/share/doc/libxslt-1.1.34/html/EXSLT/APIfunctions.html -/usr/local/share/doc/libxslt-1.1.34/html/EXSLT/APIsymbols.html -/usr/local/share/doc/libxslt-1.1.34/html/EXSLT/bugs.html -/usr/local/share/doc/libxslt-1.1.34/html/EXSLT/docs.html -/usr/local/share/doc/libxslt-1.1.34/html/EXSLT/downloads.html -/usr/local/share/doc/libxslt-1.1.34/html/EXSLT/exslt.html -/usr/local/share/doc/libxslt-1.1.34/html/EXSLT/help.html -/usr/local/share/doc/libxslt-1.1.34/html/EXSLT/index.html -/usr/local/share/doc/libxslt-1.1.34/html/EXSLT/intro.html -/usr/local/share/doc/libxslt-1.1.34/html/FAQ.html -/usr/local/share/doc/libxslt-1.1.34/html/Libxslt-Logo-180x168.gif -/usr/local/share/doc/libxslt-1.1.34/html/Libxslt-Logo-90x34.gif -/usr/local/share/doc/libxslt-1.1.34/html/bugs.html -/usr/local/share/doc/libxslt-1.1.34/html/contexts.gif -/usr/local/share/doc/libxslt-1.1.34/html/contribs.html -/usr/local/share/doc/libxslt-1.1.34/html/docbook.html -/usr/local/share/doc/libxslt-1.1.34/html/docs.html -/usr/local/share/doc/libxslt-1.1.34/html/downloads.html -/usr/local/share/doc/libxslt-1.1.34/html/extensions.html -/usr/local/share/doc/libxslt-1.1.34/html/help.html -/usr/local/share/doc/libxslt-1.1.34/html/html/book1.html -/usr/local/share/doc/libxslt-1.1.34/html/html/home.png -/usr/local/share/doc/libxslt-1.1.34/html/html/index.html -/usr/local/share/doc/libxslt-1.1.34/html/html/left.png -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-attributes.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-documents.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-extensions.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-extra.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-functions.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-imports.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-keys.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-lib.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-namespaces.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-numbersInternals.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-pattern.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-preproc.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-security.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-templates.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-transform.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-variables.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-xslt.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-xsltInternals.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-xsltexports.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-xsltlocale.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-xsltutils.html -/usr/local/share/doc/libxslt-1.1.34/html/html/right.png -/usr/local/share/doc/libxslt-1.1.34/html/html/up.png -/usr/local/share/doc/libxslt-1.1.34/html/index.html -/usr/local/share/doc/libxslt-1.1.34/html/internals.html -/usr/local/share/doc/libxslt-1.1.34/html/intro.html -/usr/local/share/doc/libxslt-1.1.34/html/news.html -/usr/local/share/doc/libxslt-1.1.34/html/node.gif -/usr/local/share/doc/libxslt-1.1.34/html/object.gif -/usr/local/share/doc/libxslt-1.1.34/html/processing.gif -/usr/local/share/doc/libxslt-1.1.34/html/python.html -/usr/local/share/doc/libxslt-1.1.34/html/redhat.gif -/usr/local/share/doc/libxslt-1.1.34/html/smallfootonly.gif -/usr/local/share/doc/libxslt-1.1.34/html/stylesheet.gif -/usr/local/share/doc/libxslt-1.1.34/html/templates.gif -/usr/local/share/doc/libxslt-1.1.34/html/tutorial/libxslt_tutorial.c -/usr/local/share/doc/libxslt-1.1.34/html/tutorial/libxslttutorial.html -/usr/local/share/doc/libxslt-1.1.34/html/tutorial/libxslttutorial.xml -/usr/local/share/doc/libxslt-1.1.34/html/tutorial2/libxslt_pipes.c -/usr/local/share/doc/libxslt-1.1.34/html/tutorial2/libxslt_pipes.html -/usr/local/share/doc/libxslt-1.1.34/html/tutorial2/libxslt_pipes.xml -/usr/local/share/doc/libxslt-1.1.34/html/xslt.html -/usr/local/share/doc/libxslt-1.1.34/html/xsltproc.html -/usr/local/share/doc/libxslt-1.1.34/html/xsltproc2.html -/usr/local/share/doc/libxslt-python-1.1.34/examples/basic.py -/usr/local/share/doc/libxslt-python-1.1.34/examples/exslt.py -/usr/local/share/doc/libxslt-python-1.1.34/examples/extelem.py -/usr/local/share/doc/libxslt-python-1.1.34/examples/extfunc.py -/usr/local/share/doc/libxslt-python-1.1.34/examples/pyxsltproc.py -/usr/local/share/doc/libxslt-python-1.1.34/examples/test.xml -/usr/local/share/doc/libxslt-python-1.1.34/examples/test.xsl -/usr/local/share/man/man1/xsltproc.1.gz -/usr/local/share/man/man3/libexslt.3.gz -/usr/local/share/man/man3/libxslt.3.gz +/usr/local/share/doc/libxslt/EXSLT/devhelp/devhelp2.xsl +/usr/local/share/doc/libxslt/EXSLT/devhelp/general.html +/usr/local/share/doc/libxslt/EXSLT/devhelp/home.png +/usr/local/share/doc/libxslt/EXSLT/devhelp/html.xsl +/usr/local/share/doc/libxslt/EXSLT/devhelp/index.html +/usr/local/share/doc/libxslt/EXSLT/devhelp/left.png +/usr/local/share/doc/libxslt/EXSLT/devhelp/libexslt-exslt.html +/usr/local/share/doc/libxslt/EXSLT/devhelp/libexslt-exsltexports.html +/usr/local/share/doc/libxslt/EXSLT/devhelp/libexslt.devhelp2 +/usr/local/share/doc/libxslt/EXSLT/devhelp/right.png +/usr/local/share/doc/libxslt/EXSLT/devhelp/style.css +/usr/local/share/doc/libxslt/EXSLT/devhelp/up.png +/usr/local/share/doc/libxslt/EXSLT/libexslt-api.xml +/usr/local/share/doc/libxslt/apibuild.py +/usr/local/share/doc/libxslt/devhelp/devhelp2.xsl +/usr/local/share/doc/libxslt/devhelp/general.html +/usr/local/share/doc/libxslt/devhelp/home.png +/usr/local/share/doc/libxslt/devhelp/html.xsl +/usr/local/share/doc/libxslt/devhelp/index.html +/usr/local/share/doc/libxslt/devhelp/left.png +/usr/local/share/doc/libxslt/devhelp/libxslt-attributes.html +/usr/local/share/doc/libxslt/devhelp/libxslt-documents.html +/usr/local/share/doc/libxslt/devhelp/libxslt-extensions.html +/usr/local/share/doc/libxslt/devhelp/libxslt-extra.html +/usr/local/share/doc/libxslt/devhelp/libxslt-functions.html +/usr/local/share/doc/libxslt/devhelp/libxslt-imports.html +/usr/local/share/doc/libxslt/devhelp/libxslt-keys.html +/usr/local/share/doc/libxslt/devhelp/libxslt-namespaces.html +/usr/local/share/doc/libxslt/devhelp/libxslt-numbersInternals.html +/usr/local/share/doc/libxslt/devhelp/libxslt-pattern.html +/usr/local/share/doc/libxslt/devhelp/libxslt-preproc.html +/usr/local/share/doc/libxslt/devhelp/libxslt-security.html +/usr/local/share/doc/libxslt/devhelp/libxslt-templates.html +/usr/local/share/doc/libxslt/devhelp/libxslt-transform.html +/usr/local/share/doc/libxslt/devhelp/libxslt-variables.html +/usr/local/share/doc/libxslt/devhelp/libxslt-xslt.html +/usr/local/share/doc/libxslt/devhelp/libxslt-xsltInternals.html +/usr/local/share/doc/libxslt/devhelp/libxslt-xsltexports.html +/usr/local/share/doc/libxslt/devhelp/libxslt-xsltlocale.html +/usr/local/share/doc/libxslt/devhelp/libxslt-xsltutils.html +/usr/local/share/doc/libxslt/devhelp/libxslt.devhelp2 +/usr/local/share/doc/libxslt/devhelp/right.png +/usr/local/share/doc/libxslt/devhelp/style.css +/usr/local/share/doc/libxslt/devhelp/up.png +/usr/local/share/doc/libxslt/libxslt-api.xml +/usr/local/share/doc/libxslt/tutorial/images/callouts/1.png +/usr/local/share/doc/libxslt/tutorial/images/callouts/10.png +/usr/local/share/doc/libxslt/tutorial/images/callouts/2.png +/usr/local/share/doc/libxslt/tutorial/images/callouts/3.png +/usr/local/share/doc/libxslt/tutorial/images/callouts/4.png +/usr/local/share/doc/libxslt/tutorial/images/callouts/5.png +/usr/local/share/doc/libxslt/tutorial/images/callouts/6.png +/usr/local/share/doc/libxslt/tutorial/images/callouts/7.png +/usr/local/share/doc/libxslt/tutorial/images/callouts/8.png +/usr/local/share/doc/libxslt/tutorial/images/callouts/9.png +/usr/local/share/doc/libxslt/tutorial/libxslt_tutorial.c +/usr/local/share/doc/libxslt/tutorial/libxslttutorial.html +/usr/local/share/doc/libxslt/tutorial/libxslttutorial.xml +/usr/local/share/doc/libxslt/tutorial2/libxslt_pipes.c +/usr/local/share/doc/libxslt/tutorial2/libxslt_pipes.html +/usr/local/share/doc/libxslt/tutorial2/libxslt_pipes.xml +/usr/local/share/doc/libxslt/xsltproc.1 +/usr/local/share/doc/libxslt/xsltproc.html +/usr/local/share/doc/libxslt/xsltproc.xml +/usr/local/share/man/man1/xsltproc.1.zst +/usr/local/share/man/man3/libexslt.3.zst +/usr/local/share/man/man3/libxslt.3.zst diff --git a/manifest/armv7l/t/tracker3_miners.filelist b/manifest/armv7l/l/localsearch.filelist similarity index 91% rename from manifest/armv7l/t/tracker3_miners.filelist rename to manifest/armv7l/l/localsearch.filelist index 8e50acb39..af75f89c3 100644 --- a/manifest/armv7l/t/tracker3_miners.filelist +++ b/manifest/armv7l/l/localsearch.filelist @@ -1,3 +1,11 @@ +/usr/local/bin/tracker3-daemon +/usr/local/bin/tracker3-extract +/usr/local/bin/tracker3-index +/usr/local/bin/tracker3-info +/usr/local/bin/tracker3-reset +/usr/local/bin/tracker3-search +/usr/local/bin/tracker3-status +/usr/local/bin/tracker3-tag /usr/local/etc/xdg/autostart/tracker-miner-fs-3.desktop /usr/local/etc/xdg/autostart/tracker-miner-rss-3.desktop /usr/local/lib/tracker-miners-3.0/extract-modules/libextract-abw.so @@ -29,17 +37,8 @@ /usr/local/libexec/tracker-miner-fs-control-3 /usr/local/libexec/tracker-miner-rss-3 /usr/local/libexec/tracker-writeback-3 -/usr/local/libexec/tracker3/daemon -/usr/local/libexec/tracker3/extract -/usr/local/libexec/tracker3/index -/usr/local/libexec/tracker3/info -/usr/local/libexec/tracker3/reset -/usr/local/libexec/tracker3/search -/usr/local/libexec/tracker3/status -/usr/local/libexec/tracker3/tag /usr/local/share/dbus-1/interfaces/org.freedesktop.Tracker3.Miner.Files.Index.xml /usr/local/share/dbus-1/interfaces/org.freedesktop.Tracker3.Miner.xml -/usr/local/share/dbus-1/services/org.freedesktop.Tracker3.Miner.Extract.service /usr/local/share/dbus-1/services/org.freedesktop.Tracker3.Miner.Files.Control.service /usr/local/share/dbus-1/services/org.freedesktop.Tracker3.Miner.Files.service /usr/local/share/dbus-1/services/org.freedesktop.Tracker3.Miner.RSS.service @@ -79,6 +78,7 @@ /usr/local/share/locale/it/LC_MESSAGES/tracker3-miners.mo /usr/local/share/locale/ja/LC_MESSAGES/tracker3-miners.mo /usr/local/share/locale/ka/LC_MESSAGES/tracker3-miners.mo +/usr/local/share/locale/kab/LC_MESSAGES/tracker3-miners.mo /usr/local/share/locale/kk/LC_MESSAGES/tracker3-miners.mo /usr/local/share/locale/ko/LC_MESSAGES/tracker3-miners.mo /usr/local/share/locale/lt/LC_MESSAGES/tracker3-miners.mo @@ -142,3 +142,11 @@ /usr/local/share/tracker3-miners/extract-rules/90-gstreamer-video-generic.rule /usr/local/share/tracker3-miners/miners/org.freedesktop.Tracker3.Miner.Files.service /usr/local/share/tracker3-miners/miners/org.freedesktop.Tracker3.Miner.RSS.service +/usr/local/share/tracker3/commands/tracker-daemon.desktop +/usr/local/share/tracker3/commands/tracker-extract.desktop +/usr/local/share/tracker3/commands/tracker-index.desktop +/usr/local/share/tracker3/commands/tracker-info.desktop +/usr/local/share/tracker3/commands/tracker-reset.desktop +/usr/local/share/tracker3/commands/tracker-search.desktop +/usr/local/share/tracker3/commands/tracker-status.desktop +/usr/local/share/tracker3/commands/tracker-tag.desktop diff --git a/manifest/armv7l/p/pango.filelist b/manifest/armv7l/p/pango.filelist index 5d5ab4854..b172529f0 100644 --- a/manifest/armv7l/p/pango.filelist +++ b/manifest/armv7l/p/pango.filelist @@ -47,16 +47,16 @@ /usr/local/lib/girepository-1.0/PangoXft-1.0.typelib /usr/local/lib/libpango-1.0.so /usr/local/lib/libpango-1.0.so.0 -/usr/local/lib/libpango-1.0.so.0.5200.2 +/usr/local/lib/libpango-1.0.so.0.5400.0 /usr/local/lib/libpangocairo-1.0.so /usr/local/lib/libpangocairo-1.0.so.0 -/usr/local/lib/libpangocairo-1.0.so.0.5200.2 +/usr/local/lib/libpangocairo-1.0.so.0.5400.0 /usr/local/lib/libpangoft2-1.0.so /usr/local/lib/libpangoft2-1.0.so.0 -/usr/local/lib/libpangoft2-1.0.so.0.5200.2 +/usr/local/lib/libpangoft2-1.0.so.0.5400.0 /usr/local/lib/libpangoxft-1.0.so /usr/local/lib/libpangoxft-1.0.so.0 -/usr/local/lib/libpangoxft-1.0.so.0.5200.2 +/usr/local/lib/libpangoxft-1.0.so.0.5400.0 /usr/local/lib/pkgconfig/pango.pc /usr/local/lib/pkgconfig/pangocairo.pc /usr/local/lib/pkgconfig/pangofc.pc diff --git a/manifest/armv7l/p/postgresql.filelist b/manifest/armv7l/p/postgresql.filelist index 9c66b953b..52c924150 100644 --- a/manifest/armv7l/p/postgresql.filelist +++ b/manifest/armv7l/p/postgresql.filelist @@ -2716,6 +2716,8 @@ /usr/local/share/doc/postgresql/html/regress.html /usr/local/share/doc/postgresql/html/release-16-1.html /usr/local/share/doc/postgresql/html/release-16-2.html +/usr/local/share/doc/postgresql/html/release-16-3.html +/usr/local/share/doc/postgresql/html/release-16-4.html /usr/local/share/doc/postgresql/html/release-16.html /usr/local/share/doc/postgresql/html/release-prior.html /usr/local/share/doc/postgresql/html/release.html @@ -3692,6 +3694,7 @@ /usr/local/share/postgresql/extension/xml2--1.0--1.1.sql /usr/local/share/postgresql/extension/xml2--1.1.sql /usr/local/share/postgresql/extension/xml2.control +/usr/local/share/postgresql/fix-CVE-2024-4317.sql /usr/local/share/postgresql/information_schema.sql /usr/local/share/postgresql/pg_hba.conf.sample /usr/local/share/postgresql/pg_ident.conf.sample diff --git a/manifest/armv7l/p/py3_cfgv.filelist b/manifest/armv7l/p/py3_cfgv.filelist new file mode 100644 index 000000000..c39dd2594 --- /dev/null +++ b/manifest/armv7l/p/py3_cfgv.filelist @@ -0,0 +1,8 @@ +/usr/local/lib/python3.12/site-packages/__pycache__/cfgv.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/cfgv-3.4.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/cfgv-3.4.0.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/cfgv-3.4.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/cfgv-3.4.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/cfgv-3.4.0.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/cfgv-3.4.0.dist-info/top_level.txt +/usr/local/lib/python3.12/site-packages/cfgv.py diff --git a/manifest/armv7l/p/py3_distlib.filelist b/manifest/armv7l/p/py3_distlib.filelist index d88c05d1b..d7b7efe1a 100644 --- a/manifest/armv7l/p/py3_distlib.filelist +++ b/manifest/armv7l/p/py3_distlib.filelist @@ -2,7 +2,6 @@ /usr/local/lib/python3.12/site-packages/distlib-0.3.8.dist-info/LICENSE.txt /usr/local/lib/python3.12/site-packages/distlib-0.3.8.dist-info/METADATA /usr/local/lib/python3.12/site-packages/distlib-0.3.8.dist-info/RECORD -/usr/local/lib/python3.12/site-packages/distlib-0.3.8.dist-info/REQUESTED /usr/local/lib/python3.12/site-packages/distlib-0.3.8.dist-info/WHEEL /usr/local/lib/python3.12/site-packages/distlib-0.3.8.dist-info/top_level.txt /usr/local/lib/python3.12/site-packages/distlib/__init__.py diff --git a/manifest/armv7l/p/py3_identify.filelist b/manifest/armv7l/p/py3_identify.filelist new file mode 100644 index 000000000..d0c650f50 --- /dev/null +++ b/manifest/armv7l/p/py3_identify.filelist @@ -0,0 +1,23 @@ +/usr/local/bin/identify-cli +/usr/local/lib/python3.12/site-packages/identify-2.6.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/identify-2.6.0.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/identify-2.6.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/identify-2.6.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/identify-2.6.0.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/identify-2.6.0.dist-info/entry_points.txt +/usr/local/lib/python3.12/site-packages/identify-2.6.0.dist-info/top_level.txt +/usr/local/lib/python3.12/site-packages/identify/__init__.py +/usr/local/lib/python3.12/site-packages/identify/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/identify/__pycache__/cli.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/identify/__pycache__/extensions.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/identify/__pycache__/identify.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/identify/__pycache__/interpreters.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/identify/cli.py +/usr/local/lib/python3.12/site-packages/identify/extensions.py +/usr/local/lib/python3.12/site-packages/identify/identify.py +/usr/local/lib/python3.12/site-packages/identify/interpreters.py +/usr/local/lib/python3.12/site-packages/identify/py.typed +/usr/local/lib/python3.12/site-packages/identify/vendor/__init__.py +/usr/local/lib/python3.12/site-packages/identify/vendor/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/identify/vendor/__pycache__/licenses.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/identify/vendor/licenses.py diff --git a/manifest/armv7l/p/py3_libxml2.filelist b/manifest/armv7l/p/py3_libxml2.filelist index ccebd3834..292375f64 100644 --- a/manifest/armv7l/p/py3_libxml2.filelist +++ b/manifest/armv7l/p/py3_libxml2.filelist @@ -4,8 +4,8 @@ /usr/local/lib/python3.12/site-packages/__pycache__/libxml2.cpython-312.pyc /usr/local/lib/python3.12/site-packages/drv_libxml2.py /usr/local/lib/python3.12/site-packages/libxml2.py -/usr/local/lib/python3.12/site-packages/libxml2_python-2.13.2-py3.12.egg-info/PKG-INFO -/usr/local/lib/python3.12/site-packages/libxml2_python-2.13.2-py3.12.egg-info/SOURCES.txt -/usr/local/lib/python3.12/site-packages/libxml2_python-2.13.2-py3.12.egg-info/dependency_links.txt -/usr/local/lib/python3.12/site-packages/libxml2_python-2.13.2-py3.12.egg-info/top_level.txt +/usr/local/lib/python3.12/site-packages/libxml2_python-2.13.3-py3.12.egg-info/PKG-INFO +/usr/local/lib/python3.12/site-packages/libxml2_python-2.13.3-py3.12.egg-info/SOURCES.txt +/usr/local/lib/python3.12/site-packages/libxml2_python-2.13.3-py3.12.egg-info/dependency_links.txt +/usr/local/lib/python3.12/site-packages/libxml2_python-2.13.3-py3.12.egg-info/top_level.txt /usr/local/lib/python3.12/site-packages/libxml2mod.cpython-312-arm-linux-gnueabihf.so diff --git a/manifest/armv7l/p/py3_nodeenv.filelist b/manifest/armv7l/p/py3_nodeenv.filelist index 5569def3c..bc18bf3eb 100644 --- a/manifest/armv7l/p/py3_nodeenv.filelist +++ b/manifest/armv7l/p/py3_nodeenv.filelist @@ -1,11 +1,11 @@ /usr/local/bin/nodeenv -/usr/local/lib/python3.12/site-packages/__pycache__/nodeenv.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/__pycache__/nodeenv.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/nodeenv-1.8.0-py3.12.egg-info/PKG-INFO -/usr/local/lib/python3.12/site-packages/nodeenv-1.8.0-py3.12.egg-info/SOURCES.txt -/usr/local/lib/python3.12/site-packages/nodeenv-1.8.0-py3.12.egg-info/dependency_links.txt -/usr/local/lib/python3.12/site-packages/nodeenv-1.8.0-py3.12.egg-info/entry_points.txt -/usr/local/lib/python3.12/site-packages/nodeenv-1.8.0-py3.12.egg-info/not-zip-safe -/usr/local/lib/python3.12/site-packages/nodeenv-1.8.0-py3.12.egg-info/requires.txt -/usr/local/lib/python3.12/site-packages/nodeenv-1.8.0-py3.12.egg-info/top_level.txt +/usr/local/lib/python3.12/site-packages/nodeenv-1.9.1.dist-info/AUTHORS +/usr/local/lib/python3.12/site-packages/nodeenv-1.9.1.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/nodeenv-1.9.1.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/nodeenv-1.9.1.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/nodeenv-1.9.1.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/nodeenv-1.9.1.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/nodeenv-1.9.1.dist-info/entry_points.txt +/usr/local/lib/python3.12/site-packages/nodeenv-1.9.1.dist-info/top_level.txt /usr/local/lib/python3.12/site-packages/nodeenv.py diff --git a/manifest/armv7l/p/py3_pip.filelist b/manifest/armv7l/p/py3_pip.filelist index 3ed2af452..6db456e58 100644 --- a/manifest/armv7l/p/py3_pip.filelist +++ b/manifest/armv7l/p/py3_pip.filelist @@ -1,71 +1,49 @@ /usr/local/bin/pip /usr/local/bin/pip3 -/usr/local/bin/pip3.12 -/usr/local/lib/python3.12/site-packages/pip-23.3.1-py3.12.egg-info/PKG-INFO -/usr/local/lib/python3.12/site-packages/pip-23.3.1-py3.12.egg-info/SOURCES.txt -/usr/local/lib/python3.12/site-packages/pip-23.3.1-py3.12.egg-info/dependency_links.txt -/usr/local/lib/python3.12/site-packages/pip-23.3.1-py3.12.egg-info/entry_points.txt -/usr/local/lib/python3.12/site-packages/pip-23.3.1-py3.12.egg-info/not-zip-safe -/usr/local/lib/python3.12/site-packages/pip-23.3.1-py3.12.egg-info/top_level.txt +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/AUTHORS.txt +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/LICENSE.txt +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/entry_points.txt +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/top_level.txt /usr/local/lib/python3.12/site-packages/pip/__init__.py /usr/local/lib/python3.12/site-packages/pip/__main__.py /usr/local/lib/python3.12/site-packages/pip/__pip-runner__.py /usr/local/lib/python3.12/site-packages/pip/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/__pycache__/__main__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/__pycache__/__main__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/__pycache__/__pip-runner__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/build_env.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/cache.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/configuration.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/main.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/build_env.py /usr/local/lib/python3.12/site-packages/pip/_internal/cache.py /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py /usr/local/lib/python3.12/site-packages/pip/_internal/cli/base_command.py /usr/local/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py /usr/local/lib/python3.12/site-packages/pip/_internal/cli/command_context.py +/usr/local/lib/python3.12/site-packages/pip/_internal/cli/index_command.py /usr/local/lib/python3.12/site-packages/pip/_internal/cli/main.py /usr/local/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py /usr/local/lib/python3.12/site-packages/pip/_internal/cli/parser.py @@ -75,41 +53,23 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/cache.py /usr/local/lib/python3.12/site-packages/pip/_internal/commands/check.py /usr/local/lib/python3.12/site-packages/pip/_internal/commands/completion.py @@ -130,15 +90,10 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/configuration.py /usr/local/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/distributions/base.py /usr/local/lib/python3.12/site-packages/pip/_internal/distributions/installed.py /usr/local/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py @@ -146,78 +101,50 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/exceptions.py /usr/local/lib/python3.12/site-packages/pip/_internal/index/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/index/collector.py /usr/local/lib/python3.12/site-packages/pip/_internal/index/package_finder.py /usr/local/lib/python3.12/site-packages/pip/_internal/index/sources.py /usr/local/lib/python3.12/site-packages/pip/_internal/locations/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py /usr/local/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py /usr/local/lib/python3.12/site-packages/pip/_internal/locations/base.py /usr/local/lib/python3.12/site-packages/pip/_internal/main.py /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/_json.py /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/base.py /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py /usr/local/lib/python3.12/site-packages/pip/_internal/models/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/index.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/link.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/models/candidate.py /usr/local/lib/python3.12/site-packages/pip/_internal/models/direct_url.py /usr/local/lib/python3.12/site-packages/pip/_internal/models/format_control.py @@ -231,21 +158,13 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/models/wheel.py /usr/local/lib/python3.12/site-packages/pip/_internal/network/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/download.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/session.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/network/auth.py /usr/local/lib/python3.12/site-packages/pip/_internal/network/cache.py /usr/local/lib/python3.12/site-packages/pip/_internal/network/download.py @@ -255,30 +174,18 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py /usr/local/lib/python3.12/site-packages/pip/_internal/operations/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py /usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py /usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py @@ -290,28 +197,19 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/operations/freeze.py /usr/local/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/install/editable_legacy.py /usr/local/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py /usr/local/lib/python3.12/site-packages/pip/_internal/operations/prepare.py /usr/local/lib/python3.12/site-packages/pip/_internal/pyproject.py /usr/local/lib/python3.12/site-packages/pip/_internal/req/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/req/constructors.py /usr/local/lib/python3.12/site-packages/pip/_internal/req/req_file.py /usr/local/lib/python3.12/site-packages/pip/_internal/req/req_install.py @@ -319,35 +217,22 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/base.py /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py @@ -359,59 +244,32 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/models.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/models.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/retry.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/_log.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py @@ -429,8 +287,8 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/utils/hashes.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/logging.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/misc.py -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/models.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/packaging.py +/usr/local/lib/python3.12/site-packages/pip/_internal/utils/retry.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/setuptools_build.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py @@ -440,17 +298,11 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/utils/wheel.py /usr/local/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/vcs/bazaar.py /usr/local/lib/python3.12/site-packages/pip/_internal/vcs/git.py /usr/local/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py @@ -459,40 +311,24 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/wheel_builder.py /usr/local/lib/python3.12/site-packages/pip/_vendor/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/__pycache__/six.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/__pycache__/six.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py @@ -504,227 +340,26 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem /usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/core.py /usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/py.typed -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachinedict.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachinedict.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/macromanprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/macromanprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/resultdict.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/resultdict.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf1632prober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf1632prober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/big5freq.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/big5prober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/chardistribution.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/charsetgroupprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/charsetprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/cli/chardetect.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/codingstatemachine.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/codingstatemachinedict.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/cp949prober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/enums.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/escprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/escsm.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/eucjpprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/euckrfreq.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/euckrprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/euctwfreq.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/euctwprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/gb2312freq.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/gb2312prober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/hebrewprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/jisfreq.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/johabfreq.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/johabprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/jpcntx.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langbulgarianmodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langgreekmodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langhebrewmodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langhungarianmodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langrussianmodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langthaimodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langturkishmodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/latin1prober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/macromanprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/mbcharsetprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/mbcsgroupprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/mbcssm.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/languages.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/py.typed -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/resultdict.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/sbcharsetprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/sbcsgroupprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/sjisprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/universaldetector.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/utf1632prober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/utf8prober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/version.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama.pyi -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/ansi.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/ansitowin32.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/initialise.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/ansi_test.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/ansi_test.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/ansitowin32_test.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/ansitowin32_test.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/initialise_test.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/initialise_test.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/isatty_test.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/isatty_test.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/utils.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/utils.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/winterm_test.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/winterm_test.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/ansi_test.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/initialise_test.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/isatty_test.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/utils.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/winterm_test.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/win32.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/winterm.py /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib.pyi /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/database.py /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/index.py @@ -746,30 +381,19 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distro/distro.py /usr/local/lib/python3.12/site-packages/pip/_vendor/distro/py.typed /usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/idna/codec.py /usr/local/lib/python3.12/site-packages/pip/_vendor/idna/compat.py /usr/local/lib/python3.12/site-packages/pip/_vendor/idna/core.py @@ -781,44 +405,35 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack.pyi /usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py /usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py /usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__about__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/_elffile.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/_parser.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/metadata.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/py.typed /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py @@ -828,25 +443,16 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/pkg_resources.pyi /usr/local/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py /usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py /usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py @@ -858,73 +464,42 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/cmdline.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/console.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatter.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/_mapping.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/bbcode.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/groff.py @@ -941,11 +516,8 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/lexer.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/_mapping.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/python.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/modeline.py @@ -956,98 +528,42 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/style.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/styles/_mapping.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/token.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/unistring.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/util.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/actions.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/actions.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/common.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/common.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/core.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/core.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/exceptions.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/exceptions.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/helpers.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/helpers.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/results.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/results.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/testing.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/testing.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/unicode.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/unicode.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/util.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/util.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/actions.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/common.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/core.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/diagram/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/exceptions.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/helpers.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/py.typed -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/results.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/testing.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/unicode.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/util.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks.pyi /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_compat.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py /usr/local/lib/python3.12/site-packages/pip/_vendor/requests.pyi /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__version__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/adapters.py @@ -1068,20 +584,13 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.pyi /usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py /usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/collections_abc.pyi /usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/providers.py @@ -1096,159 +605,82 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__main__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/_cell_widths.py /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_codes.py /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_replace.py @@ -1325,67 +757,22 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/themes.py /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/traceback.py /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/tree.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/six.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/_asyncio.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/_utils.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/after.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/before.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/before_sleep.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/nap.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/py.typed -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/retry.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/stop.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/tornadoweb.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/wait.py /usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/_parser.py /usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/_re.py /usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/_types.py /usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/py.typed /usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/_api.py /usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/_macos.py /usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/_openssl.py @@ -1397,54 +784,33 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3.pyi /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/_collections.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/_version.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/connection.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/connectionpool.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/appengine.py @@ -1457,16 +823,11 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/filepost.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/six.py @@ -1475,31 +836,18 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/response.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/connection.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/proxy.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/queue.py @@ -1513,20 +861,4 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/url.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/wait.py /usr/local/lib/python3.12/site-packages/pip/_vendor/vendor.txt -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings.pyi -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/labels.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/mklabels.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/tests.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/x_user_defined.py /usr/local/lib/python3.12/site-packages/pip/py.typed diff --git a/manifest/armv7l/p/py3_pre_commit.filelist b/manifest/armv7l/p/py3_pre_commit.filelist index 18bc387c7..321535d9a 100644 --- a/manifest/armv7l/p/py3_pre_commit.filelist +++ b/manifest/armv7l/p/py3_pre_commit.filelist @@ -1,12 +1,12 @@ /usr/local/bin/pre-commit -/usr/local/lib/python3.12/site-packages/pre_commit-3.7.1.dist-info/INSTALLER -/usr/local/lib/python3.12/site-packages/pre_commit-3.7.1.dist-info/LICENSE -/usr/local/lib/python3.12/site-packages/pre_commit-3.7.1.dist-info/METADATA -/usr/local/lib/python3.12/site-packages/pre_commit-3.7.1.dist-info/RECORD -/usr/local/lib/python3.12/site-packages/pre_commit-3.7.1.dist-info/REQUESTED -/usr/local/lib/python3.12/site-packages/pre_commit-3.7.1.dist-info/WHEEL -/usr/local/lib/python3.12/site-packages/pre_commit-3.7.1.dist-info/entry_points.txt -/usr/local/lib/python3.12/site-packages/pre_commit-3.7.1.dist-info/top_level.txt +/usr/local/lib/python3.12/site-packages/pre_commit-3.8.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/pre_commit-3.8.0.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/pre_commit-3.8.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/pre_commit-3.8.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/pre_commit-3.8.0.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/pre_commit-3.8.0.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/pre_commit-3.8.0.dist-info/entry_points.txt +/usr/local/lib/python3.12/site-packages/pre_commit-3.8.0.dist-info/top_level.txt /usr/local/lib/python3.12/site-packages/pre_commit/__init__.py /usr/local/lib/python3.12/site-packages/pre_commit/__main__.py /usr/local/lib/python3.12/site-packages/pre_commit/__pycache__/__init__.cpython-312.pyc diff --git a/manifest/armv7l/p/py3_pyicu.filelist b/manifest/armv7l/p/py3_pyicu.filelist index ca4949732..c95ba88e5 100644 --- a/manifest/armv7l/p/py3_pyicu.filelist +++ b/manifest/armv7l/p/py3_pyicu.filelist @@ -1,8 +1,10 @@ -/usr/local/lib/python3.12/site-packages/PyICU-2.11-py3.12.egg-info/PKG-INFO -/usr/local/lib/python3.12/site-packages/PyICU-2.11-py3.12.egg-info/SOURCES.txt -/usr/local/lib/python3.12/site-packages/PyICU-2.11-py3.12.egg-info/dependency_links.txt -/usr/local/lib/python3.12/site-packages/PyICU-2.11-py3.12.egg-info/top_level.txt +/usr/local/lib/python3.12/site-packages/PyICU-2.13.1.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/PyICU-2.13.1.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/PyICU-2.13.1.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/PyICU-2.13.1.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/PyICU-2.13.1.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/PyICU-2.13.1.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/PyICU-2.13.1.dist-info/top_level.txt /usr/local/lib/python3.12/site-packages/icu/__init__.py -/usr/local/lib/python3.12/site-packages/icu/__pycache__/__init__.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/icu/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/icu/_icu_.cpython-312-arm-linux-gnueabihf.so diff --git a/manifest/armv7l/p/py3_pyyaml.filelist b/manifest/armv7l/p/py3_pyyaml.filelist index e91071898..0bbf4e5fc 100644 --- a/manifest/armv7l/p/py3_pyyaml.filelist +++ b/manifest/armv7l/p/py3_pyyaml.filelist @@ -1,45 +1,31 @@ -/usr/local/lib/python3.12/site-packages/PyYAML-6.0.1-py3.12.egg-info/PKG-INFO -/usr/local/lib/python3.12/site-packages/PyYAML-6.0.1-py3.12.egg-info/SOURCES.txt -/usr/local/lib/python3.12/site-packages/PyYAML-6.0.1-py3.12.egg-info/dependency_links.txt -/usr/local/lib/python3.12/site-packages/PyYAML-6.0.1-py3.12.egg-info/top_level.txt +/usr/local/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/top_level.txt /usr/local/lib/python3.12/site-packages/_yaml/__init__.py -/usr/local/lib/python3.12/site-packages/_yaml/__pycache__/__init__.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/_yaml/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/yaml/__init__.py -/usr/local/lib/python3.12/site-packages/yaml/__pycache__/__init__.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/yaml/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/yaml/__pycache__/composer.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/yaml/__pycache__/composer.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/yaml/__pycache__/constructor.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/yaml/__pycache__/constructor.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/yaml/__pycache__/cyaml.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/yaml/__pycache__/cyaml.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/yaml/__pycache__/dumper.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/yaml/__pycache__/dumper.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/yaml/__pycache__/emitter.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/yaml/__pycache__/emitter.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/yaml/__pycache__/error.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/yaml/__pycache__/error.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/yaml/__pycache__/events.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/yaml/__pycache__/events.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/yaml/__pycache__/loader.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/yaml/__pycache__/loader.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/yaml/__pycache__/nodes.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/yaml/__pycache__/nodes.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/yaml/__pycache__/parser.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/yaml/__pycache__/parser.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/yaml/__pycache__/reader.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/yaml/__pycache__/reader.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/yaml/__pycache__/representer.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/yaml/__pycache__/representer.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/yaml/__pycache__/resolver.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/yaml/__pycache__/resolver.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/yaml/__pycache__/scanner.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/yaml/__pycache__/scanner.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/yaml/__pycache__/serializer.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/yaml/__pycache__/serializer.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/yaml/__pycache__/tokens.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/yaml/__pycache__/tokens.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/yaml/_yaml.cpython-312-arm-linux-gnueabihf.so /usr/local/lib/python3.12/site-packages/yaml/composer.py /usr/local/lib/python3.12/site-packages/yaml/constructor.py /usr/local/lib/python3.12/site-packages/yaml/cyaml.py diff --git a/manifest/armv7l/p/py3_setuptools.filelist b/manifest/armv7l/p/py3_setuptools.filelist index 8a48cc76c..7dbbc1a9b 100644 --- a/manifest/armv7l/p/py3_setuptools.filelist +++ b/manifest/armv7l/p/py3_setuptools.filelist @@ -8,137 +8,46 @@ /usr/local/lib/python3.12/site-packages/pkg_resources/__init__.py /usr/local/lib/python3.12/site-packages/pkg_resources/__pycache__/__init__.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/pkg_resources/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/__init__.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/__pycache__/typing_extensions.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/__pycache__/typing_extensions.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/__pycache__/zipp.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/__pycache__/zipp.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__init__.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_adapters.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_adapters.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_common.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_common.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_compat.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_compat.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_itertools.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_itertools.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_legacy.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_legacy.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/abc.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/abc.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/readers.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/readers.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/simple.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/simple.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/_adapters.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/_common.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/_compat.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/_itertools.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/_legacy.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/abc.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/readers.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/simple.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/jaraco/__init__.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/jaraco/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/jaraco/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/jaraco/__pycache__/context.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/jaraco/__pycache__/context.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/jaraco/__pycache__/functools.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/jaraco/__pycache__/functools.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/jaraco/context.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/jaraco/functools.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/jaraco/text/__init__.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/jaraco/text/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/jaraco/text/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/more_itertools/__init__.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/more.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/more.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/recipes.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/recipes.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/more_itertools/more.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/more_itertools/recipes.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__init__.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/_elffile.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/_manylinux.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/_musllinux.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/_parser.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/_parser.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/_tokenizer.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/metadata.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/metadata.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/tags.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/tags.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/_elffile.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/_manylinux.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/_musllinux.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/_parser.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/_structures.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/_tokenizer.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/markers.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/metadata.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/requirements.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/specifiers.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/tags.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/utils.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/version.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__init__.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__main__.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/__main__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/android.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/android.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/api.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/api.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/macos.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/unix.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/version.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/version.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/windows.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/android.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/api.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/macos.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/unix.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/version.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/windows.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/typing_extensions.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/zipp.py -/usr/local/lib/python3.12/site-packages/pkg_resources/extern/__init__.py -/usr/local/lib/python3.12/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/setuptools-68.2.2.post20231003-py3.12.egg-info/PKG-INFO -/usr/local/lib/python3.12/site-packages/setuptools-68.2.2.post20231003-py3.12.egg-info/SOURCES.txt -/usr/local/lib/python3.12/site-packages/setuptools-68.2.2.post20231003-py3.12.egg-info/dependency_links.txt -/usr/local/lib/python3.12/site-packages/setuptools-68.2.2.post20231003-py3.12.egg-info/entry_points.txt -/usr/local/lib/python3.12/site-packages/setuptools-68.2.2.post20231003-py3.12.egg-info/requires.txt +/usr/local/lib/python3.12/site-packages/pkg_resources/api_tests.txt +/usr/local/lib/python3.12/site-packages/pkg_resources/py.typed +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__init__.py +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/test_find_distributions.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/test_find_distributions.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/test_integration_zope_interface.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/test_integration_zope_interface.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/test_markers.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/test_markers.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/test_pkg_resources.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/test_pkg_resources.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/test_resources.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/test_resources.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/test_working_set.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/test_working_set.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/data/my-test-package-source/__pycache__/setup.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/data/my-test-package-source/__pycache__/setup.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/data/my-test-package-source/setup.cfg +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/data/my-test-package-source/setup.py +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/data/my-test-package-zip/my-test-package.zip +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/data/my-test-package_unpacked-egg/my_test_package-1.0-py3.7.egg/EGG-INFO/PKG-INFO +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/data/my-test-package_unpacked-egg/my_test_package-1.0-py3.7.egg/EGG-INFO/SOURCES.txt +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/data/my-test-package_unpacked-egg/my_test_package-1.0-py3.7.egg/EGG-INFO/dependency_links.txt +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/data/my-test-package_unpacked-egg/my_test_package-1.0-py3.7.egg/EGG-INFO/top_level.txt +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/data/my-test-package_unpacked-egg/my_test_package-1.0-py3.7.egg/EGG-INFO/zip-safe +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/data/my-test-package_zipped-egg/my_test_package-1.0-py3.7.egg +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/test_find_distributions.py +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/test_integration_zope_interface.py +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/test_markers.py +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/test_pkg_resources.py +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/test_resources.py +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/test_working_set.py +/usr/local/lib/python3.12/site-packages/setuptools-72.1.0.post20240803-py3.12.egg-info/PKG-INFO +/usr/local/lib/python3.12/site-packages/setuptools-72.1.0.post20240803-py3.12.egg-info/SOURCES.txt +/usr/local/lib/python3.12/site-packages/setuptools-72.1.0.post20240803-py3.12.egg-info/dependency_links.txt +/usr/local/lib/python3.12/site-packages/setuptools-72.1.0.post20240803-py3.12.egg-info/entry_points.txt +/usr/local/lib/python3.12/site-packages/setuptools-72.1.0.post20240803-py3.12.egg-info/requires.txt +/usr/local/lib/python3.12/site-packages/setuptools-72.1.0.post20240803-py3.12.egg-info/top_level.txt /usr/local/lib/python3.12/site-packages/setuptools/__init__.py /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/__init__.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/__init__.cpython-312.pyc @@ -162,8 +71,6 @@ /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/archive_util.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/build_meta.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/build_meta.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/setuptools/__pycache__/dep_util.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/__pycache__/dep_util.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/depends.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/depends.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/discovery.cpython-312.opt-2.pyc @@ -182,6 +89,8 @@ /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/launch.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/logging.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/logging.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/__pycache__/modified.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/__pycache__/modified.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/monkey.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/monkey.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/msvc.cpython-312.opt-2.pyc @@ -190,8 +99,6 @@ /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/namespaces.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/package_index.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/package_index.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/setuptools/__pycache__/py312compat.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/__pycache__/py312compat.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/sandbox.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/sandbox.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/unicode_utils.cpython-312.opt-2.pyc @@ -212,10 +119,14 @@ /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_collections.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_functools.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_functools.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_itertools.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_itertools.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_log.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_log.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_macos_compat.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_macos_compat.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_modified.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_modified.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_msvccompiler.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_msvccompiler.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/archive_util.cpython-312.opt-2.pyc @@ -256,10 +167,6 @@ /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/msvc9compiler.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/msvccompiler.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/msvccompiler.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/py38compat.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/py38compat.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/py39compat.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/py39compat.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/spawn.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/spawn.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/sysconfig.cpython-312.opt-2.pyc @@ -274,11 +181,61 @@ /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/version.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/versionpredicate.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/versionpredicate.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/zosccompiler.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/zosccompiler.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/_collections.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/_functools.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_itertools.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/_log.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/_macos_compat.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_modified.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/_msvccompiler.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/_elffile.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/_manylinux.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/_musllinux.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/_parser.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/_parser.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/_structures.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/_structures.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/_tokenizer.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/markers.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/markers.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/metadata.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/metadata.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/requirements.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/requirements.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/specifiers.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/tags.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/tags.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/utils.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/utils.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/version.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/version.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/_elffile.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/_manylinux.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/_musllinux.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/_parser.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/_structures.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/_tokenizer.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/markers.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/metadata.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/py.typed +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/requirements.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/specifiers.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/tags.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/utils.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/version.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/archive_util.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/bcppcompiler.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/ccompiler.py @@ -322,8 +279,6 @@ /usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/install_lib.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/install_scripts.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/install_scripts.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/py37compat.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/py37compat.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/register.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/register.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/sdist.cpython-312.opt-2.pyc @@ -348,10 +303,27 @@ /usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/install_headers.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/install_lib.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/install_scripts.py -/usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/py37compat.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/register.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/sdist.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/upload.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/wininst-10.0-amd64.exe +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/wininst-10.0.exe +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/wininst-14.0-amd64.exe +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/wininst-14.0.exe +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/wininst-6.0.exe +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/wininst-7.1.exe +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/wininst-8.0.exe +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/wininst-9.0-amd64.exe +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/wininst-9.0.exe +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/compat/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/compat/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/compat/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/compat/__pycache__/py38.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/compat/__pycache__/py38.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/compat/__pycache__/py39.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/compat/__pycache__/py39.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/compat/py38.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/compat/py39.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/config.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/core.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/cygwinccompiler.py @@ -367,15 +339,155 @@ /usr/local/lib/python3.12/site-packages/setuptools/_distutils/log.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/msvc9compiler.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/msvccompiler.py -/usr/local/lib/python3.12/site-packages/setuptools/_distutils/py38compat.py -/usr/local/lib/python3.12/site-packages/setuptools/_distutils/py39compat.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/spawn.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/sysconfig.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/support.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/support.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_archive_util.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_archive_util.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_bdist.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_bdist.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_bdist_dumb.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_bdist_dumb.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_bdist_rpm.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_bdist_rpm.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_clib.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_clib.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_ext.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_ext.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_py.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_py.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_scripts.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_scripts.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_ccompiler.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_ccompiler.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_check.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_check.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_clean.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_clean.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_cmd.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_cmd.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_config.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_config.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_config_cmd.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_config_cmd.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_core.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_core.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_cygwinccompiler.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_cygwinccompiler.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_dir_util.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_dir_util.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_dist.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_dist.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_extension.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_extension.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_file_util.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_file_util.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_filelist.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_filelist.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_data.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_data.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_headers.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_headers.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_lib.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_lib.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_scripts.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_scripts.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_log.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_log.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_mingwccompiler.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_mingwccompiler.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_modified.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_modified.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_msvc9compiler.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_msvc9compiler.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_msvccompiler.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_msvccompiler.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_register.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_register.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_sdist.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_sdist.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_spawn.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_spawn.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_sysconfig.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_sysconfig.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_text_file.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_text_file.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_unixccompiler.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_unixccompiler.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_upload.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_upload.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_util.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_util.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_version.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_version.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_versionpredicate.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_versionpredicate.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/unix_compat.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/unix_compat.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/__pycache__/py38.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/__pycache__/py38.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/py38.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/support.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_archive_util.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_bdist.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_bdist_dumb.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_bdist_rpm.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_clib.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_ext.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_py.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_scripts.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_ccompiler.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_check.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_clean.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_cmd.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_config.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_config_cmd.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_core.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_cygwinccompiler.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_dir_util.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_dist.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_extension.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_file_util.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_filelist.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_data.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_headers.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_lib.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_scripts.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_log.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_mingwccompiler.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_modified.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_msvc9compiler.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_msvccompiler.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_register.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_sdist.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_spawn.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_sysconfig.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_text_file.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_unixccompiler.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_upload.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_util.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_version.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_versionpredicate.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/unix_compat.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/text_file.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/unixccompiler.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/util.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/version.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/versionpredicate.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/zosccompiler.py /usr/local/lib/python3.12/site-packages/setuptools/_entry_points.py /usr/local/lib/python3.12/site-packages/setuptools/_imp.py /usr/local/lib/python3.12/site-packages/setuptools/_importlib.py @@ -383,15 +495,61 @@ /usr/local/lib/python3.12/site-packages/setuptools/_normalization.py /usr/local/lib/python3.12/site-packages/setuptools/_path.py /usr/local/lib/python3.12/site-packages/setuptools/_reqs.py -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/__init__.py -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/__pycache__/ordered_set.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/__pycache__/ordered_set.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/__pycache__/typing_extensions.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/__pycache__/typing_extensions.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/__pycache__/zipp.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/__pycache__/zipp.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/top_level.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/autoasync.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/autoasync.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/autocommand.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/autocommand.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/automain.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/automain.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/autoparse.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/autoparse.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/errors.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/errors.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/autoasync.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/autocommand.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/automain.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/autoparse.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/errors.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/top_level.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__main__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__pycache__/__main__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__pycache__/__main__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/__pycache__/py38.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/__pycache__/py38.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/py38.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/top_level.txt /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__init__.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/__init__.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/__init__.cpython-312.pyc @@ -407,18 +565,35 @@ /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_itertools.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_meta.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_meta.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_py39compat.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_py39compat.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_text.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_text.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/diagnose.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/diagnose.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_adapters.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_collections.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_compat.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_functools.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_itertools.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_meta.py -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_py39compat.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_text.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__pycache__/py311.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__pycache__/py311.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__pycache__/py39.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__pycache__/py39.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/py311.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/py39.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/diagnose.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/py.typed +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources-6.4.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources-6.4.0.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources-6.4.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources-6.4.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources-6.4.0.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources-6.4.0.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources-6.4.0.dist-info/top_level.txt /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__init__.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/__init__.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/__init__.cpython-312.pyc @@ -426,39 +601,186 @@ /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_adapters.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_common.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_common.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_compat.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_compat.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_itertools.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_itertools.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_legacy.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_legacy.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/abc.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/abc.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/functional.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/functional.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/readers.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/readers.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/simple.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/simple.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/_adapters.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/_common.py -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/_compat.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/_itertools.py -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/_legacy.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/abc.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/compat/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/compat/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/compat/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/compat/__pycache__/py38.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/compat/__pycache__/py38.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/compat/__pycache__/py39.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/compat/__pycache__/py39.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/compat/py38.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/compat/py39.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/functional.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/future/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/future/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/future/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/future/__pycache__/adapters.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/future/__pycache__/adapters.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/future/adapters.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/py.typed /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/readers.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/simple.py -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/__init__.py -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/_path.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/_path.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_compatibilty_files.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_compatibilty_files.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_contents.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_contents.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_custom.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_custom.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_files.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_files.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_functional.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_functional.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_open.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_open.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_path.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_path.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_read.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_read.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_reader.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_reader.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_resource.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_resource.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/util.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/util.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/zip.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/zip.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/_path.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/compat/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/compat/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/compat/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/compat/__pycache__/py312.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/compat/__pycache__/py312.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/compat/__pycache__/py39.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/compat/__pycache__/py39.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/compat/py312.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/compat/py39.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data01/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data01/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data01/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data01/binary.file +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data01/subdirectory/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data01/subdirectory/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data01/subdirectory/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data01/subdirectory/binary.file +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data01/utf-16.file +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data01/utf-8.file +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data02/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data02/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data02/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data02/one/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data02/one/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data02/one/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data02/one/resource1.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data02/subdirectory/subsubdir/resource.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data02/two/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data02/two/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data02/two/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data02/two/resource2.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/namespacedata01/binary.file +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/namespacedata01/subdirectory/binary.file +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/namespacedata01/utf-16.file +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/namespacedata01/utf-8.file +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/test_compatibilty_files.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/test_contents.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/test_custom.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/test_files.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/test_functional.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/test_open.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/test_path.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/test_read.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/test_reader.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/test_resource.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/util.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/zip.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect-7.3.1.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect-7.3.1.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect-7.3.1.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect-7.3.1.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect-7.3.1.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect-7.3.1.dist-info/top_level.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect/compat/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect/compat/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect/compat/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect/compat/__pycache__/py38.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect/compat/__pycache__/py38.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect/compat/py38.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect/py.typed +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.context-5.3.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.context-5.3.0.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.context-5.3.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.context-5.3.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.context-5.3.0.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.context-5.3.0.dist-info/top_level.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.functools-4.0.1.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.functools-4.0.1.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.functools-4.0.1.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.functools-4.0.1.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.functools-4.0.1.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.functools-4.0.1.dist-info/top_level.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/top_level.txt /usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/__pycache__/context.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/__pycache__/context.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/__pycache__/functools.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/__pycache__/functools.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/context.py -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools/__init__.pyi +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools/py.typed +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/Lorem ipsum.txt /usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__init__.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/__init__.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/layouts.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/layouts.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/show-newlines.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/show-newlines.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/strip-prefix.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/strip-prefix.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/to-dvorak.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/to-dvorak.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/to-qwerty.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/to-qwerty.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/layouts.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/show-newlines.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/strip-prefix.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/to-dvorak.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/to-qwerty.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.3.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.3.0.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.3.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.3.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.3.0.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.3.0.dist-info/WHEEL /usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__init__.pyi /usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__pycache__/__init__.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__pycache__/more.cpython-312.opt-2.pyc @@ -466,8 +788,27 @@ /usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__pycache__/recipes.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__pycache__/recipes.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/more.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/more.pyi +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/py.typed /usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/recipes.py -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/ordered_set.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/recipes.pyi +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/ordered_set-4.1.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/ordered_set-4.1.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/ordered_set-4.1.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/ordered_set-4.1.0.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/ordered_set-4.1.0.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/ordered_set/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/ordered_set/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/ordered_set/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/ordered_set/py.typed +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging-24.1.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging-24.1.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging-24.1.dist-info/LICENSE.APACHE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging-24.1.dist-info/LICENSE.BSD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging-24.1.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging-24.1.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging-24.1.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging-24.1.dist-info/WHEEL /usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging/__init__.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-312.pyc @@ -505,11 +846,50 @@ /usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging/_tokenizer.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging/markers.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging/metadata.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging/py.typed /usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging/requirements.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging/specifiers.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging/tags.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging/utils.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging/version.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.2.2.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.2.2.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.2.2.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.2.2.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.2.2.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.2.2.dist-info/licenses/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__main__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/__main__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/android.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/android.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/api.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/api.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/macos.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/unix.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/version.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/version.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/windows.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/android.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/api.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/macos.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/py.typed +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/unix.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/version.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/windows.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/ruff.toml +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.0.1.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.0.1.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.0.1.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.0.1.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.0.1.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.0.1.dist-info/WHEEL /usr/local/lib/python3.12/site-packages/setuptools/_vendor/tomli/__init__.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/tomli/__pycache__/__init__.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/tomli/__pycache__/__init__.cpython-312.pyc @@ -522,8 +902,168 @@ /usr/local/lib/python3.12/site-packages/setuptools/_vendor/tomli/_parser.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/tomli/_re.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/tomli/_types.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/tomli/py.typed +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/entry_points.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/top_level.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_checkers.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_checkers.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_config.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_config.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_decorators.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_decorators.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_exceptions.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_exceptions.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_functions.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_functions.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_importhook.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_importhook.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_memo.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_memo.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_pytest_plugin.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_pytest_plugin.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_suppression.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_suppression.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_transformer.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_transformer.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_union_transformer.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_union_transformer.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_utils.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_utils.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_checkers.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_config.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_decorators.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_exceptions.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_functions.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_importhook.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_memo.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_pytest_plugin.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_suppression.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_transformer.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_union_transformer.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_utils.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/py.typed +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typing_extensions-4.12.2.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typing_extensions-4.12.2.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typing_extensions-4.12.2.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typing_extensions-4.12.2.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typing_extensions-4.12.2.dist-info/WHEEL /usr/local/lib/python3.12/site-packages/setuptools/_vendor/typing_extensions.py -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.43.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.43.0.dist-info/LICENSE.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.43.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.43.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.43.0.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.43.0.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.43.0.dist-info/entry_points.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__main__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/__main__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/__main__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/_setuptools_logging.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/_setuptools_logging.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/bdist_wheel.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/bdist_wheel.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/macosx_libfile.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/macosx_libfile.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/metadata.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/metadata.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/util.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/util.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/wheelfile.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/wheelfile.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/_setuptools_logging.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/bdist_wheel.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/__pycache__/convert.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/__pycache__/convert.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/__pycache__/pack.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/__pycache__/pack.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/__pycache__/tags.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/__pycache__/tags.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/__pycache__/unpack.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/__pycache__/unpack.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/convert.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/pack.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/tags.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/unpack.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/macosx_libfile.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/metadata.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/util.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_elffile.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_elffile.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_manylinux.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_manylinux.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_musllinux.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_musllinux.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_parser.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_parser.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_structures.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_structures.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_tokenizer.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_tokenizer.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/markers.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/markers.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/requirements.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/requirements.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/specifiers.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/specifiers.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/tags.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/tags.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/utils.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/utils.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/version.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/version.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/_elffile.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/_manylinux.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/_musllinux.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/_parser.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/_structures.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/_tokenizer.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/markers.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/requirements.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/specifiers.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/tags.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/utils.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/version.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/vendor.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/wheelfile.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/top_level.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp/__pycache__/glob.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp/__pycache__/glob.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__pycache__/py310.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__pycache__/py310.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/py310.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp/glob.py /usr/local/lib/python3.12/site-packages/setuptools/archive_util.py /usr/local/lib/python3.12/site-packages/setuptools/build_meta.py /usr/local/lib/python3.12/site-packages/setuptools/cli-32.exe @@ -541,6 +1081,8 @@ /usr/local/lib/python3.12/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/command/__pycache__/bdist_wheel.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/command/__pycache__/bdist_wheel.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/command/__pycache__/build.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/command/__pycache__/build.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/command/__pycache__/build_clib.cpython-312.opt-2.pyc @@ -587,6 +1129,7 @@ /usr/local/lib/python3.12/site-packages/setuptools/command/alias.py /usr/local/lib/python3.12/site-packages/setuptools/command/bdist_egg.py /usr/local/lib/python3.12/site-packages/setuptools/command/bdist_rpm.py +/usr/local/lib/python3.12/site-packages/setuptools/command/bdist_wheel.py /usr/local/lib/python3.12/site-packages/setuptools/command/build.py /usr/local/lib/python3.12/site-packages/setuptools/command/build_clib.py /usr/local/lib/python3.12/site-packages/setuptools/command/build_ext.py @@ -609,6 +1152,18 @@ /usr/local/lib/python3.12/site-packages/setuptools/command/test.py /usr/local/lib/python3.12/site-packages/setuptools/command/upload.py /usr/local/lib/python3.12/site-packages/setuptools/command/upload_docs.py +/usr/local/lib/python3.12/site-packages/setuptools/compat/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/compat/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/compat/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/compat/__pycache__/py310.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/compat/__pycache__/py310.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/compat/__pycache__/py311.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/compat/__pycache__/py311.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/compat/__pycache__/py39.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/compat/__pycache__/py39.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/compat/py310.py +/usr/local/lib/python3.12/site-packages/setuptools/compat/py311.py +/usr/local/lib/python3.12/site-packages/setuptools/compat/py39.py /usr/local/lib/python3.12/site-packages/setuptools/config/__init__.py /usr/local/lib/python3.12/site-packages/setuptools/config/__pycache__/__init__.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/config/__pycache__/__init__.cpython-312.pyc @@ -642,15 +1197,11 @@ /usr/local/lib/python3.12/site-packages/setuptools/config/expand.py /usr/local/lib/python3.12/site-packages/setuptools/config/pyprojecttoml.py /usr/local/lib/python3.12/site-packages/setuptools/config/setupcfg.py -/usr/local/lib/python3.12/site-packages/setuptools/dep_util.py /usr/local/lib/python3.12/site-packages/setuptools/depends.py /usr/local/lib/python3.12/site-packages/setuptools/discovery.py /usr/local/lib/python3.12/site-packages/setuptools/dist.py /usr/local/lib/python3.12/site-packages/setuptools/errors.py /usr/local/lib/python3.12/site-packages/setuptools/extension.py -/usr/local/lib/python3.12/site-packages/setuptools/extern/__init__.py -/usr/local/lib/python3.12/site-packages/setuptools/extern/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/extern/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/glob.py /usr/local/lib/python3.12/site-packages/setuptools/gui-32.exe /usr/local/lib/python3.12/site-packages/setuptools/gui-64.exe @@ -659,14 +1210,209 @@ /usr/local/lib/python3.12/site-packages/setuptools/installer.py /usr/local/lib/python3.12/site-packages/setuptools/launch.py /usr/local/lib/python3.12/site-packages/setuptools/logging.py +/usr/local/lib/python3.12/site-packages/setuptools/modified.py /usr/local/lib/python3.12/site-packages/setuptools/monkey.py /usr/local/lib/python3.12/site-packages/setuptools/msvc.py /usr/local/lib/python3.12/site-packages/setuptools/namespaces.py /usr/local/lib/python3.12/site-packages/setuptools/package_index.py -/usr/local/lib/python3.12/site-packages/setuptools/py312compat.py /usr/local/lib/python3.12/site-packages/setuptools/sandbox.py /usr/local/lib/python3.12/site-packages/setuptools/script (dev).tmpl /usr/local/lib/python3.12/site-packages/setuptools/script.tmpl +/usr/local/lib/python3.12/site-packages/setuptools/tests/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/contexts.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/contexts.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/environment.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/environment.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/fixtures.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/fixtures.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/mod_with_constant.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/mod_with_constant.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/namespaces.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/namespaces.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/script-with-bom.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/script-with-bom.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/server.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/server.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_archive_util.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_archive_util.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_bdist_deprecations.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_bdist_deprecations.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_bdist_egg.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_bdist_egg.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_bdist_wheel.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_bdist_wheel.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_clib.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_clib.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_ext.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_ext.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_meta.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_meta.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_py.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_py.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_config_discovery.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_config_discovery.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_core_metadata.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_core_metadata.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_depends.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_depends.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_develop.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_develop.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_dist.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_dist.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_dist_info.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_dist_info.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_distutils_adoption.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_distutils_adoption.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_easy_install.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_easy_install.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_editable_install.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_editable_install.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_egg_info.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_egg_info.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_extern.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_extern.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_find_packages.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_find_packages.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_find_py_modules.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_find_py_modules.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_glob.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_glob.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_install_scripts.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_install_scripts.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_integration.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_integration.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_logging.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_logging.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_manifest.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_manifest.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_msvc14.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_msvc14.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_namespaces.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_namespaces.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_packageindex.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_packageindex.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_register.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_register.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_sandbox.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_sandbox.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_sdist.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_sdist.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_setopt.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_setopt.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_setuptools.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_setuptools.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_unicode_utils.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_unicode_utils.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_upload.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_upload.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_virtualenv.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_virtualenv.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_warnings.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_warnings.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_wheel.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_wheel.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_windows_wrappers.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_windows_wrappers.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/text.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/text.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/textwrap.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/textwrap.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/compat/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/compat/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/compat/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/compat/__pycache__/py39.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/compat/__pycache__/py39.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/compat/py39.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_apply_pyprojecttoml.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_apply_pyprojecttoml.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_expand.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_expand.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_pyprojecttoml.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_pyprojecttoml.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_pyprojecttoml_dynamic_deps.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_pyprojecttoml_dynamic_deps.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_setupcfg.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_setupcfg.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/downloads/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/downloads/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/downloads/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/downloads/__pycache__/preload.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/downloads/__pycache__/preload.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/downloads/preload.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/setupcfg_examples.txt +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/test_apply_pyprojecttoml.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/test_expand.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/test_pyprojecttoml.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/test_pyprojecttoml_dynamic_deps.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/test_setupcfg.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/contexts.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/environment.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/fixtures.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/indexes/test_links_priority/external.html +/usr/local/lib/python3.12/site-packages/setuptools/tests/indexes/test_links_priority/simple/foobar/index.html +/usr/local/lib/python3.12/site-packages/setuptools/tests/integration/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/integration/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/integration/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/integration/__pycache__/helpers.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/integration/__pycache__/helpers.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/integration/__pycache__/test_pip_install_sdist.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/integration/__pycache__/test_pip_install_sdist.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/integration/helpers.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/integration/test_pip_install_sdist.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/mod_with_constant.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/namespaces.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/script-with-bom.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/server.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_archive_util.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_bdist_deprecations.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_bdist_egg.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_bdist_wheel.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_build.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_build_clib.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_build_ext.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_build_meta.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_build_py.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_config_discovery.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_core_metadata.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_depends.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_develop.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_dist.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_dist_info.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_distutils_adoption.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_easy_install.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_editable_install.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_egg_info.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_extern.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_find_packages.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_find_py_modules.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_glob.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_install_scripts.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_integration.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_logging.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_manifest.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_msvc14.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_namespaces.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_packageindex.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_register.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_sandbox.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_sdist.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_setopt.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_setuptools.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_unicode_utils.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_upload.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_virtualenv.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_warnings.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_wheel.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_windows_wrappers.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/text.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/textwrap.py /usr/local/lib/python3.12/site-packages/setuptools/unicode_utils.py /usr/local/lib/python3.12/site-packages/setuptools/version.py /usr/local/lib/python3.12/site-packages/setuptools/warnings.py diff --git a/manifest/armv7l/p/py3_sphinxcontrib_applehelp.filelist b/manifest/armv7l/p/py3_sphinxcontrib_applehelp.filelist index 31a2b09e7..345f8e8aa 100644 --- a/manifest/armv7l/p/py3_sphinxcontrib_applehelp.filelist +++ b/manifest/armv7l/p/py3_sphinxcontrib_applehelp.filelist @@ -102,10 +102,10 @@ /usr/local/lib/python3.12/site-packages/sphinxcontrib/applehelp/locales/zh_CN/LC_MESSAGES/sphinxcontrib.applehelp.po /usr/local/lib/python3.12/site-packages/sphinxcontrib/applehelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.applehelp.mo /usr/local/lib/python3.12/site-packages/sphinxcontrib/applehelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.applehelp.po +/usr/local/lib/python3.12/site-packages/sphinxcontrib/applehelp/py.typed /usr/local/lib/python3.12/site-packages/sphinxcontrib/applehelp/templates/_access.html_t -/usr/local/lib/python3.12/site-packages/sphinxcontrib_applehelp-1.0.8.dist-info/INSTALLER -/usr/local/lib/python3.12/site-packages/sphinxcontrib_applehelp-1.0.8.dist-info/LICENSE -/usr/local/lib/python3.12/site-packages/sphinxcontrib_applehelp-1.0.8.dist-info/METADATA -/usr/local/lib/python3.12/site-packages/sphinxcontrib_applehelp-1.0.8.dist-info/RECORD -/usr/local/lib/python3.12/site-packages/sphinxcontrib_applehelp-1.0.8.dist-info/REQUESTED -/usr/local/lib/python3.12/site-packages/sphinxcontrib_applehelp-1.0.8.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/sphinxcontrib_applehelp-2.0.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/sphinxcontrib_applehelp-2.0.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/sphinxcontrib_applehelp-2.0.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/sphinxcontrib_applehelp-2.0.0.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/sphinxcontrib_applehelp-2.0.0.dist-info/WHEEL diff --git a/manifest/armv7l/p/py3_sphinxcontrib_devhelp.filelist b/manifest/armv7l/p/py3_sphinxcontrib_devhelp.filelist index a43abe000..a08953ef6 100644 --- a/manifest/armv7l/p/py3_sphinxcontrib_devhelp.filelist +++ b/manifest/armv7l/p/py3_sphinxcontrib_devhelp.filelist @@ -98,9 +98,8 @@ /usr/local/lib/python3.12/site-packages/sphinxcontrib/devhelp/locales/zh_CN/LC_MESSAGES/sphinxcontrib.devhelp.po /usr/local/lib/python3.12/site-packages/sphinxcontrib/devhelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.devhelp.mo /usr/local/lib/python3.12/site-packages/sphinxcontrib/devhelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.devhelp.po -/usr/local/lib/python3.12/site-packages/sphinxcontrib_devhelp-1.0.6.dist-info/INSTALLER -/usr/local/lib/python3.12/site-packages/sphinxcontrib_devhelp-1.0.6.dist-info/LICENSE -/usr/local/lib/python3.12/site-packages/sphinxcontrib_devhelp-1.0.6.dist-info/METADATA -/usr/local/lib/python3.12/site-packages/sphinxcontrib_devhelp-1.0.6.dist-info/RECORD -/usr/local/lib/python3.12/site-packages/sphinxcontrib_devhelp-1.0.6.dist-info/REQUESTED -/usr/local/lib/python3.12/site-packages/sphinxcontrib_devhelp-1.0.6.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/sphinxcontrib_devhelp-2.0.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/sphinxcontrib_devhelp-2.0.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/sphinxcontrib_devhelp-2.0.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/sphinxcontrib_devhelp-2.0.0.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/sphinxcontrib_devhelp-2.0.0.dist-info/WHEEL diff --git a/manifest/armv7l/p/py3_sphinxcontrib_htmlhelp.filelist b/manifest/armv7l/p/py3_sphinxcontrib_htmlhelp.filelist index 83ee7cc79..db5fa521f 100644 --- a/manifest/armv7l/p/py3_sphinxcontrib_htmlhelp.filelist +++ b/manifest/armv7l/p/py3_sphinxcontrib_htmlhelp.filelist @@ -110,12 +110,12 @@ /usr/local/lib/python3.12/site-packages/sphinxcontrib/htmlhelp/locales/zh_CN/LC_MESSAGES/sphinxcontrib.htmlhelp.po /usr/local/lib/python3.12/site-packages/sphinxcontrib/htmlhelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.htmlhelp.mo /usr/local/lib/python3.12/site-packages/sphinxcontrib/htmlhelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.htmlhelp.po +/usr/local/lib/python3.12/site-packages/sphinxcontrib/htmlhelp/py.typed /usr/local/lib/python3.12/site-packages/sphinxcontrib/htmlhelp/templates/project.hhc /usr/local/lib/python3.12/site-packages/sphinxcontrib/htmlhelp/templates/project.hhp /usr/local/lib/python3.12/site-packages/sphinxcontrib/htmlhelp/templates/project.stp -/usr/local/lib/python3.12/site-packages/sphinxcontrib_htmlhelp-2.0.5.dist-info/INSTALLER -/usr/local/lib/python3.12/site-packages/sphinxcontrib_htmlhelp-2.0.5.dist-info/LICENSE -/usr/local/lib/python3.12/site-packages/sphinxcontrib_htmlhelp-2.0.5.dist-info/METADATA -/usr/local/lib/python3.12/site-packages/sphinxcontrib_htmlhelp-2.0.5.dist-info/RECORD -/usr/local/lib/python3.12/site-packages/sphinxcontrib_htmlhelp-2.0.5.dist-info/REQUESTED -/usr/local/lib/python3.12/site-packages/sphinxcontrib_htmlhelp-2.0.5.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/sphinxcontrib_htmlhelp-2.1.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/sphinxcontrib_htmlhelp-2.1.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/sphinxcontrib_htmlhelp-2.1.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/sphinxcontrib_htmlhelp-2.1.0.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/sphinxcontrib_htmlhelp-2.1.0.dist-info/WHEEL diff --git a/manifest/armv7l/p/py3_sphinxcontrib_qthelp.filelist b/manifest/armv7l/p/py3_sphinxcontrib_qthelp.filelist index c5c58fe35..1fe0b26be 100644 --- a/manifest/armv7l/p/py3_sphinxcontrib_qthelp.filelist +++ b/manifest/armv7l/p/py3_sphinxcontrib_qthelp.filelist @@ -98,11 +98,11 @@ /usr/local/lib/python3.12/site-packages/sphinxcontrib/qthelp/locales/zh_CN/LC_MESSAGES/sphinxcontrib.qthelp.po /usr/local/lib/python3.12/site-packages/sphinxcontrib/qthelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.qthelp.mo /usr/local/lib/python3.12/site-packages/sphinxcontrib/qthelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.qthelp.po +/usr/local/lib/python3.12/site-packages/sphinxcontrib/qthelp/py.typed /usr/local/lib/python3.12/site-packages/sphinxcontrib/qthelp/templates/project.qhcp /usr/local/lib/python3.12/site-packages/sphinxcontrib/qthelp/templates/project.qhp -/usr/local/lib/python3.12/site-packages/sphinxcontrib_qthelp-1.0.7.dist-info/INSTALLER -/usr/local/lib/python3.12/site-packages/sphinxcontrib_qthelp-1.0.7.dist-info/LICENSE -/usr/local/lib/python3.12/site-packages/sphinxcontrib_qthelp-1.0.7.dist-info/METADATA -/usr/local/lib/python3.12/site-packages/sphinxcontrib_qthelp-1.0.7.dist-info/RECORD -/usr/local/lib/python3.12/site-packages/sphinxcontrib_qthelp-1.0.7.dist-info/REQUESTED -/usr/local/lib/python3.12/site-packages/sphinxcontrib_qthelp-1.0.7.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/sphinxcontrib_qthelp-2.0.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/sphinxcontrib_qthelp-2.0.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/sphinxcontrib_qthelp-2.0.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/sphinxcontrib_qthelp-2.0.0.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/sphinxcontrib_qthelp-2.0.0.dist-info/WHEEL diff --git a/manifest/armv7l/p/py3_sphinxcontrib_serializinghtml.filelist b/manifest/armv7l/p/py3_sphinxcontrib_serializinghtml.filelist index c0ab39876..ba177f1d2 100644 --- a/manifest/armv7l/p/py3_sphinxcontrib_serializinghtml.filelist +++ b/manifest/armv7l/p/py3_sphinxcontrib_serializinghtml.filelist @@ -112,9 +112,9 @@ /usr/local/lib/python3.12/site-packages/sphinxcontrib/serializinghtml/locales/zh_CN/LC_MESSAGES/sphinxcontrib.serializinghtml.po /usr/local/lib/python3.12/site-packages/sphinxcontrib/serializinghtml/locales/zh_TW/LC_MESSAGES/sphinxcontrib.serializinghtml.mo /usr/local/lib/python3.12/site-packages/sphinxcontrib/serializinghtml/locales/zh_TW/LC_MESSAGES/sphinxcontrib.serializinghtml.po -/usr/local/lib/python3.12/site-packages/sphinxcontrib_serializinghtml-1.1.10.dist-info/INSTALLER -/usr/local/lib/python3.12/site-packages/sphinxcontrib_serializinghtml-1.1.10.dist-info/LICENSE -/usr/local/lib/python3.12/site-packages/sphinxcontrib_serializinghtml-1.1.10.dist-info/METADATA -/usr/local/lib/python3.12/site-packages/sphinxcontrib_serializinghtml-1.1.10.dist-info/RECORD -/usr/local/lib/python3.12/site-packages/sphinxcontrib_serializinghtml-1.1.10.dist-info/REQUESTED -/usr/local/lib/python3.12/site-packages/sphinxcontrib_serializinghtml-1.1.10.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/sphinxcontrib/serializinghtml/py.typed +/usr/local/lib/python3.12/site-packages/sphinxcontrib_serializinghtml-2.0.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/sphinxcontrib_serializinghtml-2.0.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/sphinxcontrib_serializinghtml-2.0.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/sphinxcontrib_serializinghtml-2.0.0.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/sphinxcontrib_serializinghtml-2.0.0.dist-info/WHEEL diff --git a/manifest/armv7l/p/py3_virtualenv.filelist b/manifest/armv7l/p/py3_virtualenv.filelist index 4026abdc5..b4400d3d2 100644 --- a/manifest/armv7l/p/py3_virtualenv.filelist +++ b/manifest/armv7l/p/py3_virtualenv.filelist @@ -1,11 +1,10 @@ /usr/local/bin/virtualenv -/usr/local/lib/python3.12/site-packages/virtualenv-20.25.0.dist-info/INSTALLER -/usr/local/lib/python3.12/site-packages/virtualenv-20.25.0.dist-info/METADATA -/usr/local/lib/python3.12/site-packages/virtualenv-20.25.0.dist-info/RECORD -/usr/local/lib/python3.12/site-packages/virtualenv-20.25.0.dist-info/REQUESTED -/usr/local/lib/python3.12/site-packages/virtualenv-20.25.0.dist-info/WHEEL -/usr/local/lib/python3.12/site-packages/virtualenv-20.25.0.dist-info/entry_points.txt -/usr/local/lib/python3.12/site-packages/virtualenv-20.25.0.dist-info/licenses/LICENSE +/usr/local/lib/python3.12/site-packages/virtualenv-20.26.3.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/virtualenv-20.26.3.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/virtualenv-20.26.3.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/virtualenv-20.26.3.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/virtualenv-20.26.3.dist-info/entry_points.txt +/usr/local/lib/python3.12/site-packages/virtualenv-20.26.3.dist-info/licenses/LICENSE /usr/local/lib/python3.12/site-packages/virtualenv/__init__.py /usr/local/lib/python3.12/site-packages/virtualenv/__main__.py /usr/local/lib/python3.12/site-packages/virtualenv/__pycache__/__init__.cpython-312.pyc @@ -175,10 +174,12 @@ /usr/local/lib/python3.12/site-packages/virtualenv/seed/wheels/bundle.py /usr/local/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/__init__.py /usr/local/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/pip-23.3.1-py3-none-any.whl +/usr/local/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/pip-24.0-py3-none-any.whl +/usr/local/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/pip-24.1-py3-none-any.whl /usr/local/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/setuptools-68.0.0-py3-none-any.whl -/usr/local/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/setuptools-69.0.2-py3-none-any.whl +/usr/local/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/setuptools-70.1.0-py3-none-any.whl /usr/local/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/wheel-0.42.0-py3-none-any.whl +/usr/local/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/wheel-0.43.0-py3-none-any.whl /usr/local/lib/python3.12/site-packages/virtualenv/seed/wheels/periodic_update.py /usr/local/lib/python3.12/site-packages/virtualenv/seed/wheels/util.py /usr/local/lib/python3.12/site-packages/virtualenv/util/__init__.py diff --git a/manifest/armv7l/p/python3.filelist b/manifest/armv7l/p/python3.filelist index ddd711c05..88af056ae 100644 --- a/manifest/armv7l/p/python3.filelist +++ b/manifest/armv7l/p/python3.filelist @@ -1652,7 +1652,7 @@ /usr/local/lib/python3.12/ensurepip/__pycache__/_uninstall.cpython-312.opt-1.pyc /usr/local/lib/python3.12/ensurepip/__pycache__/_uninstall.cpython-312.opt-2.pyc /usr/local/lib/python3.12/ensurepip/__pycache__/_uninstall.cpython-312.pyc -/usr/local/lib/python3.12/ensurepip/_bundled/pip-24.0-py3-none-any.whl +/usr/local/lib/python3.12/ensurepip/_bundled/pip-24.2-py3-none-any.whl /usr/local/lib/python3.12/ensurepip/_uninstall.py /usr/local/lib/python3.12/enum.py /usr/local/lib/python3.12/filecmp.py @@ -2436,9 +2436,9 @@ /usr/local/lib/python3.12/lib-dynload/xxsubtype.cpython-312-arm-linux-gnueabihf.so /usr/local/lib/python3.12/lib-dynload/zlib.cpython-312-arm-linux-gnueabihf.so /usr/local/lib/python3.12/lib2to3/Grammar.txt -/usr/local/lib/python3.12/lib2to3/Grammar3.12.4.final.0.pickle +/usr/local/lib/python3.12/lib2to3/Grammar3.12.5.final.0.pickle /usr/local/lib/python3.12/lib2to3/PatternGrammar.txt -/usr/local/lib/python3.12/lib2to3/PatternGrammar3.12.4.final.0.pickle +/usr/local/lib/python3.12/lib2to3/PatternGrammar3.12.5.final.0.pickle /usr/local/lib/python3.12/lib2to3/__init__.py /usr/local/lib/python3.12/lib2to3/__main__.py /usr/local/lib/python3.12/lib2to3/__pycache__/__init__.cpython-312.opt-1.pyc @@ -2911,15 +2911,15 @@ /usr/local/lib/python3.12/shutil.py /usr/local/lib/python3.12/signal.py /usr/local/lib/python3.12/site-packages/README.txt -/usr/local/lib/python3.12/site-packages/pip-24.0.dist-info/AUTHORS.txt -/usr/local/lib/python3.12/site-packages/pip-24.0.dist-info/INSTALLER -/usr/local/lib/python3.12/site-packages/pip-24.0.dist-info/LICENSE.txt -/usr/local/lib/python3.12/site-packages/pip-24.0.dist-info/METADATA -/usr/local/lib/python3.12/site-packages/pip-24.0.dist-info/RECORD -/usr/local/lib/python3.12/site-packages/pip-24.0.dist-info/REQUESTED -/usr/local/lib/python3.12/site-packages/pip-24.0.dist-info/WHEEL -/usr/local/lib/python3.12/site-packages/pip-24.0.dist-info/entry_points.txt -/usr/local/lib/python3.12/site-packages/pip-24.0.dist-info/top_level.txt +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/AUTHORS.txt +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/LICENSE.txt +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/entry_points.txt +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/top_level.txt /usr/local/lib/python3.12/site-packages/pip/__init__.py /usr/local/lib/python3.12/site-packages/pip/__main__.py /usr/local/lib/python3.12/site-packages/pip/__pip-runner__.py @@ -2944,6 +2944,7 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc @@ -2955,6 +2956,7 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/cli/base_command.py /usr/local/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py /usr/local/lib/python3.12/site-packages/pip/_internal/cli/command_context.py +/usr/local/lib/python3.12/site-packages/pip/_internal/cli/index_command.py /usr/local/lib/python3.12/site-packages/pip/_internal/cli/main.py /usr/local/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py /usr/local/lib/python3.12/site-packages/pip/_internal/cli/parser.py @@ -3172,8 +3174,8 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/models.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/retry.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc @@ -3198,8 +3200,8 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/utils/hashes.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/logging.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/misc.py -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/models.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/packaging.py +/usr/local/lib/python3.12/site-packages/pip/_internal/utils/retry.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/setuptools_build.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py @@ -3222,7 +3224,6 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/wheel_builder.py /usr/local/lib/python3.12/site-packages/pip/_vendor/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/__pycache__/six.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc @@ -3257,129 +3258,6 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem /usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/core.py /usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/py.typed -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachinedict.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/macromanprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/resultdict.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf1632prober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/big5freq.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/big5prober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/chardistribution.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/charsetgroupprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/charsetprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/cli/chardetect.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/codingstatemachine.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/codingstatemachinedict.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/cp949prober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/enums.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/escprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/escsm.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/eucjpprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/euckrfreq.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/euckrprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/euctwfreq.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/euctwprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/gb2312freq.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/gb2312prober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/hebrewprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/jisfreq.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/johabfreq.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/johabprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/jpcntx.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langbulgarianmodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langgreekmodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langhebrewmodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langhungarianmodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langrussianmodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langthaimodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langturkishmodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/latin1prober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/macromanprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/mbcharsetprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/mbcsgroupprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/mbcssm.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/languages.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/py.typed -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/resultdict.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/sbcharsetprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/sbcsgroupprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/sjisprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/universaldetector.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/utf1632prober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/utf8prober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/version.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/ansi.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/ansitowin32.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/initialise.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/ansi_test.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/ansitowin32_test.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/initialise_test.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/isatty_test.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/utils.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/winterm_test.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/ansi_test.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/initialise_test.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/isatty_test.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/utils.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/winterm_test.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/win32.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/winterm.py /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc @@ -3444,23 +3322,29 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py /usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py /usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__about__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/_elffile.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/_parser.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/metadata.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/py.typed /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py @@ -3553,32 +3437,11 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/style.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/styles/_mapping.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/token.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/unistring.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/util.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/actions.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/common.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/core.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/exceptions.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/helpers.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/results.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/testing.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/unicode.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/util.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/actions.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/common.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/core.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/diagram/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/exceptions.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/helpers.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/py.typed -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/results.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/testing.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/unicode.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/util.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-312.pyc @@ -3795,30 +3658,6 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/themes.py /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/traceback.py /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/tree.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/six.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/_asyncio.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/_utils.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/after.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/before.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/before_sleep.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/nap.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/py.typed -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/retry.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/stop.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/tornadoweb.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/wait.py /usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc @@ -3921,16 +3760,6 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/url.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/wait.py /usr/local/lib/python3.12/site-packages/pip/_vendor/vendor.txt -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/labels.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/mklabels.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/tests.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/x_user_defined.py /usr/local/lib/python3.12/site-packages/pip/py.typed /usr/local/lib/python3.12/site.py /usr/local/lib/python3.12/smtplib.py @@ -4123,9 +3952,6 @@ /usr/local/lib/python3.12/test/__pycache__/test_asdl_parser.cpython-312.opt-1.pyc /usr/local/lib/python3.12/test/__pycache__/test_asdl_parser.cpython-312.opt-2.pyc /usr/local/lib/python3.12/test/__pycache__/test_asdl_parser.cpython-312.pyc -/usr/local/lib/python3.12/test/__pycache__/test_ast.cpython-312.opt-1.pyc -/usr/local/lib/python3.12/test/__pycache__/test_ast.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/test/__pycache__/test_ast.cpython-312.pyc /usr/local/lib/python3.12/test/__pycache__/test_asyncgen.cpython-312.opt-1.pyc /usr/local/lib/python3.12/test/__pycache__/test_asyncgen.cpython-312.opt-2.pyc /usr/local/lib/python3.12/test/__pycache__/test_asyncgen.cpython-312.pyc @@ -5919,7 +5745,22 @@ /usr/local/lib/python3.12/test/test_argparse.py /usr/local/lib/python3.12/test/test_array.py /usr/local/lib/python3.12/test/test_asdl_parser.py -/usr/local/lib/python3.12/test/test_ast.py +/usr/local/lib/python3.12/test/test_ast/__init__.py +/usr/local/lib/python3.12/test/test_ast/__pycache__/__init__.cpython-312.opt-1.pyc +/usr/local/lib/python3.12/test/test_ast/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/test/test_ast/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/test/test_ast/__pycache__/snippets.cpython-312.opt-1.pyc +/usr/local/lib/python3.12/test/test_ast/__pycache__/snippets.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/test/test_ast/__pycache__/snippets.cpython-312.pyc +/usr/local/lib/python3.12/test/test_ast/__pycache__/test_ast.cpython-312.opt-1.pyc +/usr/local/lib/python3.12/test/test_ast/__pycache__/test_ast.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/test/test_ast/__pycache__/test_ast.cpython-312.pyc +/usr/local/lib/python3.12/test/test_ast/__pycache__/utils.cpython-312.opt-1.pyc +/usr/local/lib/python3.12/test/test_ast/__pycache__/utils.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/test/test_ast/__pycache__/utils.cpython-312.pyc +/usr/local/lib/python3.12/test/test_ast/snippets.py +/usr/local/lib/python3.12/test/test_ast/test_ast.py +/usr/local/lib/python3.12/test/test_ast/utils.py /usr/local/lib/python3.12/test/test_asyncgen.py /usr/local/lib/python3.12/test/test_asyncio/__init__.py /usr/local/lib/python3.12/test/test_asyncio/__main__.py @@ -7382,6 +7223,9 @@ /usr/local/lib/python3.12/test/test_inspect/__pycache__/inspect_stringized_annotations_2.cpython-312.opt-1.pyc /usr/local/lib/python3.12/test/test_inspect/__pycache__/inspect_stringized_annotations_2.cpython-312.opt-2.pyc /usr/local/lib/python3.12/test/test_inspect/__pycache__/inspect_stringized_annotations_2.cpython-312.pyc +/usr/local/lib/python3.12/test/test_inspect/__pycache__/inspect_stringized_annotations_pep695.cpython-312.opt-1.pyc +/usr/local/lib/python3.12/test/test_inspect/__pycache__/inspect_stringized_annotations_pep695.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/test/test_inspect/__pycache__/inspect_stringized_annotations_pep695.cpython-312.pyc /usr/local/lib/python3.12/test/test_inspect/__pycache__/test_inspect.cpython-312.opt-1.pyc /usr/local/lib/python3.12/test/test_inspect/__pycache__/test_inspect.cpython-312.opt-2.pyc /usr/local/lib/python3.12/test/test_inspect/__pycache__/test_inspect.cpython-312.pyc @@ -7390,6 +7234,7 @@ /usr/local/lib/python3.12/test/test_inspect/inspect_stock_annotations.py /usr/local/lib/python3.12/test/test_inspect/inspect_stringized_annotations.py /usr/local/lib/python3.12/test/test_inspect/inspect_stringized_annotations_2.py +/usr/local/lib/python3.12/test/test_inspect/inspect_stringized_annotations_pep695.py /usr/local/lib/python3.12/test/test_inspect/test_inspect.py /usr/local/lib/python3.12/test/test_int.py /usr/local/lib/python3.12/test/test_int_literal.py @@ -8158,6 +8003,9 @@ /usr/local/lib/python3.12/test/test_unittest/__pycache__/test_suite.cpython-312.opt-1.pyc /usr/local/lib/python3.12/test/test_unittest/__pycache__/test_suite.cpython-312.opt-2.pyc /usr/local/lib/python3.12/test/test_unittest/__pycache__/test_suite.cpython-312.pyc +/usr/local/lib/python3.12/test/test_unittest/__pycache__/test_util.cpython-312.opt-1.pyc +/usr/local/lib/python3.12/test/test_unittest/__pycache__/test_util.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/test/test_unittest/__pycache__/test_util.cpython-312.pyc /usr/local/lib/python3.12/test/test_unittest/_test_warnings.py /usr/local/lib/python3.12/test/test_unittest/dummy.py /usr/local/lib/python3.12/test/test_unittest/support.py @@ -8174,6 +8022,7 @@ /usr/local/lib/python3.12/test/test_unittest/test_setups.py /usr/local/lib/python3.12/test/test_unittest/test_skipping.py /usr/local/lib/python3.12/test/test_unittest/test_suite.py +/usr/local/lib/python3.12/test/test_unittest/test_util.py /usr/local/lib/python3.12/test/test_unittest/testmock/__init__.py /usr/local/lib/python3.12/test/test_unittest/testmock/__main__.py /usr/local/lib/python3.12/test/test_unittest/testmock/__pycache__/__init__.cpython-312.opt-1.pyc diff --git a/manifest/armv7l/r/r.filelist b/manifest/armv7l/r/r.filelist index 68530b2ca..697316810 100644 --- a/manifest/armv7l/r/r.filelist +++ b/manifest/armv7l/r/r.filelist @@ -48,6 +48,7 @@ /usr/local/lib/R/doc/html/NEWS.2.html /usr/local/lib/R/doc/html/NEWS.3.html /usr/local/lib/R/doc/html/NEWS.html +/usr/local/lib/R/doc/html/R-nav.css /usr/local/lib/R/doc/html/R.css /usr/local/lib/R/doc/html/Rlogo.pdf /usr/local/lib/R/doc/html/Rlogo.svg @@ -125,6 +126,7 @@ /usr/local/lib/R/doc/html/left.jpg /usr/local/lib/R/doc/html/logo.jpg /usr/local/lib/R/doc/html/mathjax-config.js +/usr/local/lib/R/doc/html/orcid.svg /usr/local/lib/R/doc/html/packages-head-utf8.html /usr/local/lib/R/doc/html/packages.html /usr/local/lib/R/doc/html/prism.css @@ -301,11 +303,31 @@ /usr/local/lib/R/library/Matrix/doc/Introduction.R /usr/local/lib/R/library/Matrix/doc/Introduction.Rnw /usr/local/lib/R/library/Matrix/doc/Introduction.pdf -/usr/local/lib/R/library/Matrix/doc/SuiteSparse/AMD.txt -/usr/local/lib/R/library/Matrix/doc/SuiteSparse/CHOLMOD.txt -/usr/local/lib/R/library/Matrix/doc/SuiteSparse/COLAMD.txt -/usr/local/lib/R/library/Matrix/doc/SuiteSparse/SPQR.txt -/usr/local/lib/R/library/Matrix/doc/SuiteSparse/SuiteSparse_config.txt +/usr/local/lib/R/library/Matrix/doc/SuiteSparse/AMD/Doc/ChangeLog +/usr/local/lib/R/library/Matrix/doc/SuiteSparse/AMD/Doc/License.txt +/usr/local/lib/R/library/Matrix/doc/SuiteSparse/AMD/README.txt +/usr/local/lib/R/library/Matrix/doc/SuiteSparse/CAMD/Doc/ChangeLog +/usr/local/lib/R/library/Matrix/doc/SuiteSparse/CAMD/Doc/License.txt +/usr/local/lib/R/library/Matrix/doc/SuiteSparse/CAMD/README.txt +/usr/local/lib/R/library/Matrix/doc/SuiteSparse/CCOLAMD/Doc/ChangeLog +/usr/local/lib/R/library/Matrix/doc/SuiteSparse/CCOLAMD/Doc/License.txt +/usr/local/lib/R/library/Matrix/doc/SuiteSparse/CCOLAMD/README.txt +/usr/local/lib/R/library/Matrix/doc/SuiteSparse/CHOLMOD/Doc/ChangeLog +/usr/local/lib/R/library/Matrix/doc/SuiteSparse/CHOLMOD/Doc/License.txt +/usr/local/lib/R/library/Matrix/doc/SuiteSparse/CHOLMOD/README.txt +/usr/local/lib/R/library/Matrix/doc/SuiteSparse/CHOLMOD/SuiteSparse_metis/Changelog +/usr/local/lib/R/library/Matrix/doc/SuiteSparse/CHOLMOD/SuiteSparse_metis/LICENSE.txt +/usr/local/lib/R/library/Matrix/doc/SuiteSparse/CHOLMOD/SuiteSparse_metis/README.txt +/usr/local/lib/R/library/Matrix/doc/SuiteSparse/COLAMD/Doc/ChangeLog +/usr/local/lib/R/library/Matrix/doc/SuiteSparse/COLAMD/Doc/License.txt +/usr/local/lib/R/library/Matrix/doc/SuiteSparse/COLAMD/README.txt +/usr/local/lib/R/library/Matrix/doc/SuiteSparse/CXSparse/Doc/ChangeLog +/usr/local/lib/R/library/Matrix/doc/SuiteSparse/CXSparse/Doc/License.txt +/usr/local/lib/R/library/Matrix/doc/SuiteSparse/CXSparse/README.txt +/usr/local/lib/R/library/Matrix/doc/SuiteSparse/ChangeLog +/usr/local/lib/R/library/Matrix/doc/SuiteSparse/LICENSE.txt +/usr/local/lib/R/library/Matrix/doc/SuiteSparse/README.md +/usr/local/lib/R/library/Matrix/doc/SuiteSparse/SuiteSparse_config/README.txt /usr/local/lib/R/library/Matrix/doc/index.html /usr/local/lib/R/library/Matrix/doc/sparseModels.R /usr/local/lib/R/library/Matrix/doc/sparseModels.Rnw @@ -328,10 +350,18 @@ /usr/local/lib/R/library/Matrix/help/Matrix.rdb /usr/local/lib/R/library/Matrix/help/Matrix.rdx /usr/local/lib/R/library/Matrix/help/aliases.rds +/usr/local/lib/R/library/Matrix/help/macros/local.Rd /usr/local/lib/R/library/Matrix/help/paths.rds /usr/local/lib/R/library/Matrix/html/00Index.html /usr/local/lib/R/library/Matrix/html/R.css /usr/local/lib/R/library/Matrix/include/Matrix.h +/usr/local/lib/R/library/Matrix/include/Matrix/Matrix.h +/usr/local/lib/R/library/Matrix/include/Matrix/alloca.h +/usr/local/lib/R/library/Matrix/include/Matrix/cholmod-utils.h +/usr/local/lib/R/library/Matrix/include/Matrix/cholmod.h +/usr/local/lib/R/library/Matrix/include/Matrix/remap.h +/usr/local/lib/R/library/Matrix/include/Matrix/stubs.c +/usr/local/lib/R/library/Matrix/include/Matrix/version.h /usr/local/lib/R/library/Matrix/include/Matrix_stubs.c /usr/local/lib/R/library/Matrix/include/cholmod.h /usr/local/lib/R/library/Matrix/libs/Matrix.so @@ -349,6 +379,20 @@ /usr/local/lib/R/library/Matrix/po/lt/LC_MESSAGES/R-Matrix.mo /usr/local/lib/R/library/Matrix/po/pl/LC_MESSAGES/Matrix.mo /usr/local/lib/R/library/Matrix/po/pl/LC_MESSAGES/R-Matrix.mo +/usr/local/lib/R/library/Matrix/scripts/AMD.patch +/usr/local/lib/R/library/Matrix/scripts/CAMD.patch +/usr/local/lib/R/library/Matrix/scripts/CCOLAMD.patch +/usr/local/lib/R/library/Matrix/scripts/CHOLMOD.patch +/usr/local/lib/R/library/Matrix/scripts/COLAMD.patch +/usr/local/lib/R/library/Matrix/scripts/CXSparse.patch +/usr/local/lib/R/library/Matrix/scripts/SuiteSparse_config.patch +/usr/local/lib/R/library/Matrix/scripts/api.patch +/usr/local/lib/R/library/Matrix/scripts/disclaimer.txt +/usr/local/lib/R/library/Matrix/scripts/rules.mk +/usr/local/lib/R/library/Matrix/scripts/rules.sh +/usr/local/lib/R/library/Matrix/scripts/sources.mk +/usr/local/lib/R/library/Matrix/scripts/ssget.sh +/usr/local/lib/R/library/Matrix/scripts/wall.patch /usr/local/lib/R/library/Matrix/test-tools-1.R /usr/local/lib/R/library/Matrix/test-tools-Matrix.R /usr/local/lib/R/library/Matrix/test-tools.R @@ -601,8 +645,24 @@ /usr/local/lib/R/library/grDevices/afm/Helvetica-BoldOblique.afm.gz /usr/local/lib/R/library/grDevices/afm/Helvetica-Oblique.afm.gz /usr/local/lib/R/library/grDevices/afm/Helvetica.afm.gz +/usr/local/lib/R/library/grDevices/afm/LICENSE.LPPL /usr/local/lib/R/library/grDevices/afm/MustRead.html +/usr/local/lib/R/library/grDevices/afm/NimbusMonoPS-Bold.afm.gz +/usr/local/lib/R/library/grDevices/afm/NimbusMonoPS-BoldItalic.afm.gz +/usr/local/lib/R/library/grDevices/afm/NimbusMonoPS-Italic.afm.gz +/usr/local/lib/R/library/grDevices/afm/NimbusMonoPS-Regular.afm.gz +/usr/local/lib/R/library/grDevices/afm/NimbusRoman-Bold.afm.gz +/usr/local/lib/R/library/grDevices/afm/NimbusRoman-BoldItalic.afm.gz +/usr/local/lib/R/library/grDevices/afm/NimbusRoman-Italic.afm.gz +/usr/local/lib/R/library/grDevices/afm/NimbusRoman-Regular.afm.gz +/usr/local/lib/R/library/grDevices/afm/NimbusSans-Bold.afm.gz +/usr/local/lib/R/library/grDevices/afm/NimbusSans-BoldItalic.afm.gz +/usr/local/lib/R/library/grDevices/afm/NimbusSans-BoldOblique.afm.gz +/usr/local/lib/R/library/grDevices/afm/NimbusSans-Italic.afm.gz +/usr/local/lib/R/library/grDevices/afm/NimbusSans-Oblique.afm.gz +/usr/local/lib/R/library/grDevices/afm/NimbusSans-Regular.afm.gz /usr/local/lib/R/library/grDevices/afm/README +/usr/local/lib/R/library/grDevices/afm/StandardSymbolsPS.afm.gz /usr/local/lib/R/library/grDevices/afm/Symbol.afm.gz /usr/local/lib/R/library/grDevices/afm/Times-Bold.afm.gz /usr/local/lib/R/library/grDevices/afm/Times-BoldItalic.afm.gz @@ -693,7 +753,6 @@ /usr/local/lib/R/library/grDevices/enc/ISOLatin9.enc /usr/local/lib/R/library/grDevices/enc/KOI8-R.enc /usr/local/lib/R/library/grDevices/enc/KOI8-U.enc -/usr/local/lib/R/library/grDevices/enc/MacRoman.enc /usr/local/lib/R/library/grDevices/enc/PDFDoc.enc /usr/local/lib/R/library/grDevices/enc/TeXtext.enc /usr/local/lib/R/library/grDevices/enc/WinAnsi.enc @@ -873,8 +932,6 @@ /usr/local/lib/R/library/mgcv/po/en@quot/LC_MESSAGES/mgcv.mo /usr/local/lib/R/library/mgcv/po/fr/LC_MESSAGES/R-mgcv.mo /usr/local/lib/R/library/mgcv/po/fr/LC_MESSAGES/mgcv.mo -/usr/local/lib/R/library/mgcv/po/it/LC_MESSAGES/R-mgcv.mo -/usr/local/lib/R/library/mgcv/po/it/LC_MESSAGES/mgcv.mo /usr/local/lib/R/library/mgcv/po/ko/LC_MESSAGES/R-mgcv.mo /usr/local/lib/R/library/mgcv/po/ko/LC_MESSAGES/mgcv.mo /usr/local/lib/R/library/mgcv/po/pl/LC_MESSAGES/R-mgcv.mo @@ -1154,7 +1211,6 @@ /usr/local/lib/R/library/survival/Meta/vignette.rds /usr/local/lib/R/library/survival/NAMESPACE /usr/local/lib/R/library/survival/NEWS.Rd -/usr/local/lib/R/library/survival/NEWS.Rd.orig /usr/local/lib/R/library/survival/R/survival /usr/local/lib/R/library/survival/R/survival.rdb /usr/local/lib/R/library/survival/R/survival.rdx @@ -1173,13 +1229,13 @@ /usr/local/lib/R/library/survival/doc/concordance.R /usr/local/lib/R/library/survival/doc/concordance.Rnw /usr/local/lib/R/library/survival/doc/concordance.pdf -/usr/local/lib/R/library/survival/doc/discrim.R -/usr/local/lib/R/library/survival/doc/discrim.Rnw -/usr/local/lib/R/library/survival/doc/discrim.pdf /usr/local/lib/R/library/survival/doc/index.html /usr/local/lib/R/library/survival/doc/matrix.R /usr/local/lib/R/library/survival/doc/matrix.Rnw /usr/local/lib/R/library/survival/doc/matrix.pdf +/usr/local/lib/R/library/survival/doc/methods.R +/usr/local/lib/R/library/survival/doc/methods.Rnw +/usr/local/lib/R/library/survival/doc/methods.pdf /usr/local/lib/R/library/survival/doc/multi.Rnw /usr/local/lib/R/library/survival/doc/multi.pdf /usr/local/lib/R/library/survival/doc/other.Rnw @@ -1274,6 +1330,54 @@ /usr/local/lib/R/library/tools/html/R.css /usr/local/lib/R/library/tools/libs/tools.so /usr/local/lib/R/library/translations/DESCRIPTION +/usr/local/lib/R/library/translations/ar/LC_MESSAGES/R-base.mo +/usr/local/lib/R/library/translations/ar/LC_MESSAGES/R-methods.mo +/usr/local/lib/R/library/translations/ar/LC_MESSAGES/R-parallel.mo +/usr/local/lib/R/library/translations/ar/LC_MESSAGES/R-splines.mo +/usr/local/lib/R/library/translations/ar/LC_MESSAGES/R-stats.mo +/usr/local/lib/R/library/translations/ar/LC_MESSAGES/R-stats4.mo +/usr/local/lib/R/library/translations/ar/LC_MESSAGES/R-tcltk.mo +/usr/local/lib/R/library/translations/ar/LC_MESSAGES/R-tools.mo +/usr/local/lib/R/library/translations/ar/LC_MESSAGES/R-utils.mo +/usr/local/lib/R/library/translations/ar/LC_MESSAGES/R.mo +/usr/local/lib/R/library/translations/ar/LC_MESSAGES/RGui.mo +/usr/local/lib/R/library/translations/ar/LC_MESSAGES/grDevices.mo +/usr/local/lib/R/library/translations/ar/LC_MESSAGES/graphics.mo +/usr/local/lib/R/library/translations/ar/LC_MESSAGES/methods.mo +/usr/local/lib/R/library/translations/ar/LC_MESSAGES/parallel.mo +/usr/local/lib/R/library/translations/ar/LC_MESSAGES/splines.mo +/usr/local/lib/R/library/translations/ar/LC_MESSAGES/stats.mo +/usr/local/lib/R/library/translations/ar/LC_MESSAGES/tcltk.mo +/usr/local/lib/R/library/translations/ar/LC_MESSAGES/tools.mo +/usr/local/lib/R/library/translations/ar/LC_MESSAGES/utils.mo +/usr/local/lib/R/library/translations/bn/LC_MESSAGES/R-base.mo +/usr/local/lib/R/library/translations/bn/LC_MESSAGES/RGui.mo +/usr/local/lib/R/library/translations/bn/LC_MESSAGES/tcltk.mo +/usr/local/lib/R/library/translations/ca/LC_MESSAGES/R-base.mo +/usr/local/lib/R/library/translations/ca/LC_MESSAGES/R-compiler.mo +/usr/local/lib/R/library/translations/ca/LC_MESSAGES/R-grDevices.mo +/usr/local/lib/R/library/translations/ca/LC_MESSAGES/R-graphics.mo +/usr/local/lib/R/library/translations/ca/LC_MESSAGES/R-grid.mo +/usr/local/lib/R/library/translations/ca/LC_MESSAGES/R-methods.mo +/usr/local/lib/R/library/translations/ca/LC_MESSAGES/R-parallel.mo +/usr/local/lib/R/library/translations/ca/LC_MESSAGES/R-splines.mo +/usr/local/lib/R/library/translations/ca/LC_MESSAGES/R-stats.mo +/usr/local/lib/R/library/translations/ca/LC_MESSAGES/R-stats4.mo +/usr/local/lib/R/library/translations/ca/LC_MESSAGES/R-tcltk.mo +/usr/local/lib/R/library/translations/ca/LC_MESSAGES/R-tools.mo +/usr/local/lib/R/library/translations/ca/LC_MESSAGES/R-utils.mo +/usr/local/lib/R/library/translations/ca/LC_MESSAGES/R.mo +/usr/local/lib/R/library/translations/ca/LC_MESSAGES/RGui.mo +/usr/local/lib/R/library/translations/ca/LC_MESSAGES/grDevices.mo +/usr/local/lib/R/library/translations/ca/LC_MESSAGES/graphics.mo +/usr/local/lib/R/library/translations/ca/LC_MESSAGES/grid.mo +/usr/local/lib/R/library/translations/ca/LC_MESSAGES/methods.mo +/usr/local/lib/R/library/translations/ca/LC_MESSAGES/parallel.mo +/usr/local/lib/R/library/translations/ca/LC_MESSAGES/splines.mo +/usr/local/lib/R/library/translations/ca/LC_MESSAGES/stats.mo +/usr/local/lib/R/library/translations/ca/LC_MESSAGES/tcltk.mo +/usr/local/lib/R/library/translations/ca/LC_MESSAGES/tools.mo +/usr/local/lib/R/library/translations/ca/LC_MESSAGES/utils.mo /usr/local/lib/R/library/translations/da/LC_MESSAGES/R-base.mo /usr/local/lib/R/library/translations/da/LC_MESSAGES/R-compiler.mo /usr/local/lib/R/library/translations/da/LC_MESSAGES/R-grDevices.mo @@ -1348,12 +1452,50 @@ /usr/local/lib/R/library/translations/en@quot/LC_MESSAGES/tcltk.mo /usr/local/lib/R/library/translations/en@quot/LC_MESSAGES/tools.mo /usr/local/lib/R/library/translations/en@quot/LC_MESSAGES/utils.mo +/usr/local/lib/R/library/translations/en_GB/LC_MESSAGES/R-base.mo +/usr/local/lib/R/library/translations/en_GB/LC_MESSAGES/R-compiler.mo /usr/local/lib/R/library/translations/en_GB/LC_MESSAGES/R-grDevices.mo +/usr/local/lib/R/library/translations/en_GB/LC_MESSAGES/R-graphics.mo +/usr/local/lib/R/library/translations/en_GB/LC_MESSAGES/R-grid.mo +/usr/local/lib/R/library/translations/en_GB/LC_MESSAGES/R-methods.mo +/usr/local/lib/R/library/translations/en_GB/LC_MESSAGES/R-parallel.mo +/usr/local/lib/R/library/translations/en_GB/LC_MESSAGES/R-splines.mo +/usr/local/lib/R/library/translations/en_GB/LC_MESSAGES/R-stats.mo +/usr/local/lib/R/library/translations/en_GB/LC_MESSAGES/R-stats4.mo +/usr/local/lib/R/library/translations/en_GB/LC_MESSAGES/R-tcltk.mo +/usr/local/lib/R/library/translations/en_GB/LC_MESSAGES/R-tools.mo +/usr/local/lib/R/library/translations/en_GB/LC_MESSAGES/R-utils.mo /usr/local/lib/R/library/translations/en_GB/LC_MESSAGES/R.mo +/usr/local/lib/R/library/translations/en_GB/LC_MESSAGES/RGui.mo /usr/local/lib/R/library/translations/en_GB/LC_MESSAGES/grDevices.mo +/usr/local/lib/R/library/translations/en_GB/LC_MESSAGES/graphics.mo +/usr/local/lib/R/library/translations/en_GB/LC_MESSAGES/grid.mo +/usr/local/lib/R/library/translations/en_GB/LC_MESSAGES/methods.mo +/usr/local/lib/R/library/translations/en_GB/LC_MESSAGES/parallel.mo +/usr/local/lib/R/library/translations/en_GB/LC_MESSAGES/splines.mo +/usr/local/lib/R/library/translations/en_GB/LC_MESSAGES/stats.mo +/usr/local/lib/R/library/translations/en_GB/LC_MESSAGES/tcltk.mo +/usr/local/lib/R/library/translations/en_GB/LC_MESSAGES/tools.mo +/usr/local/lib/R/library/translations/en_GB/LC_MESSAGES/utils.mo +/usr/local/lib/R/library/translations/es/LC_MESSAGES/R-base.mo +/usr/local/lib/R/library/translations/es/LC_MESSAGES/R-grDevices.mo +/usr/local/lib/R/library/translations/es/LC_MESSAGES/R-graphics.mo +/usr/local/lib/R/library/translations/es/LC_MESSAGES/R-grid.mo +/usr/local/lib/R/library/translations/es/LC_MESSAGES/R-methods.mo +/usr/local/lib/R/library/translations/es/LC_MESSAGES/R-parallel.mo +/usr/local/lib/R/library/translations/es/LC_MESSAGES/R-stats.mo +/usr/local/lib/R/library/translations/es/LC_MESSAGES/R-stats4.mo +/usr/local/lib/R/library/translations/es/LC_MESSAGES/R-tools.mo +/usr/local/lib/R/library/translations/es/LC_MESSAGES/R-utils.mo /usr/local/lib/R/library/translations/es/LC_MESSAGES/R.mo /usr/local/lib/R/library/translations/es/LC_MESSAGES/RGui.mo +/usr/local/lib/R/library/translations/es/LC_MESSAGES/grDevices.mo /usr/local/lib/R/library/translations/es/LC_MESSAGES/graphics.mo +/usr/local/lib/R/library/translations/es/LC_MESSAGES/parallel.mo +/usr/local/lib/R/library/translations/es/LC_MESSAGES/stats.mo +/usr/local/lib/R/library/translations/es/LC_MESSAGES/tcltk.mo +/usr/local/lib/R/library/translations/es/LC_MESSAGES/tools.mo +/usr/local/lib/R/library/translations/es/LC_MESSAGES/utils.mo /usr/local/lib/R/library/translations/fa/LC_MESSAGES/R-base.mo /usr/local/lib/R/library/translations/fa/LC_MESSAGES/R-utils.mo /usr/local/lib/R/library/translations/fa/LC_MESSAGES/R.mo @@ -1383,6 +1525,40 @@ /usr/local/lib/R/library/translations/fr/LC_MESSAGES/tcltk.mo /usr/local/lib/R/library/translations/fr/LC_MESSAGES/tools.mo /usr/local/lib/R/library/translations/fr/LC_MESSAGES/utils.mo +/usr/local/lib/R/library/translations/hi/LC_MESSAGES/R-base.mo +/usr/local/lib/R/library/translations/hi/LC_MESSAGES/R-grDevices.mo +/usr/local/lib/R/library/translations/hi/LC_MESSAGES/R-graphics.mo +/usr/local/lib/R/library/translations/hi/LC_MESSAGES/R-parallel.mo +/usr/local/lib/R/library/translations/hi/LC_MESSAGES/R-stats.mo +/usr/local/lib/R/library/translations/hi/LC_MESSAGES/R-tools.mo +/usr/local/lib/R/library/translations/hi/LC_MESSAGES/R-utils.mo +/usr/local/lib/R/library/translations/hi/LC_MESSAGES/R.mo +/usr/local/lib/R/library/translations/hi/LC_MESSAGES/RGui.mo +/usr/local/lib/R/library/translations/hi/LC_MESSAGES/grDevices.mo +/usr/local/lib/R/library/translations/hi/LC_MESSAGES/graphics.mo +/usr/local/lib/R/library/translations/hi/LC_MESSAGES/parallel.mo +/usr/local/lib/R/library/translations/hi/LC_MESSAGES/stats.mo +/usr/local/lib/R/library/translations/hi/LC_MESSAGES/tools.mo +/usr/local/lib/R/library/translations/hi/LC_MESSAGES/utils.mo +/usr/local/lib/R/library/translations/hu/LC_MESSAGES/R-base.mo +/usr/local/lib/R/library/translations/hu/LC_MESSAGES/R-graphics.mo +/usr/local/lib/R/library/translations/hu/LC_MESSAGES/R-parallel.mo +/usr/local/lib/R/library/translations/hu/LC_MESSAGES/R-splines.mo +/usr/local/lib/R/library/translations/hu/LC_MESSAGES/R-stats.mo +/usr/local/lib/R/library/translations/hu/LC_MESSAGES/R-tcltk.mo +/usr/local/lib/R/library/translations/hu/LC_MESSAGES/R-tools.mo +/usr/local/lib/R/library/translations/hu/LC_MESSAGES/R-utils.mo +/usr/local/lib/R/library/translations/hu/LC_MESSAGES/R.mo +/usr/local/lib/R/library/translations/hu/LC_MESSAGES/RGui.mo +/usr/local/lib/R/library/translations/hu/LC_MESSAGES/grDevices.mo +/usr/local/lib/R/library/translations/hu/LC_MESSAGES/graphics.mo +/usr/local/lib/R/library/translations/hu/LC_MESSAGES/grid.mo +/usr/local/lib/R/library/translations/hu/LC_MESSAGES/parallel.mo +/usr/local/lib/R/library/translations/hu/LC_MESSAGES/stats.mo +/usr/local/lib/R/library/translations/hu/LC_MESSAGES/tcltk.mo +/usr/local/lib/R/library/translations/hu/LC_MESSAGES/tools.mo +/usr/local/lib/R/library/translations/hu/LC_MESSAGES/utils.mo +/usr/local/lib/R/library/translations/id/LC_MESSAGES/R-base.mo /usr/local/lib/R/library/translations/it/LC_MESSAGES/R-base.mo /usr/local/lib/R/library/translations/it/LC_MESSAGES/R-compiler.mo /usr/local/lib/R/library/translations/it/LC_MESSAGES/R-grDevices.mo @@ -1414,6 +1590,7 @@ /usr/local/lib/R/library/translations/ja/LC_MESSAGES/R-graphics.mo /usr/local/lib/R/library/translations/ja/LC_MESSAGES/R-grid.mo /usr/local/lib/R/library/translations/ja/LC_MESSAGES/R-methods.mo +/usr/local/lib/R/library/translations/ja/LC_MESSAGES/R-parallel.mo /usr/local/lib/R/library/translations/ja/LC_MESSAGES/R-splines.mo /usr/local/lib/R/library/translations/ja/LC_MESSAGES/R-stats.mo /usr/local/lib/R/library/translations/ja/LC_MESSAGES/R-stats4.mo @@ -1426,6 +1603,7 @@ /usr/local/lib/R/library/translations/ja/LC_MESSAGES/graphics.mo /usr/local/lib/R/library/translations/ja/LC_MESSAGES/grid.mo /usr/local/lib/R/library/translations/ja/LC_MESSAGES/methods.mo +/usr/local/lib/R/library/translations/ja/LC_MESSAGES/parallel.mo /usr/local/lib/R/library/translations/ja/LC_MESSAGES/splines.mo /usr/local/lib/R/library/translations/ja/LC_MESSAGES/stats.mo /usr/local/lib/R/library/translations/ja/LC_MESSAGES/tcltk.mo @@ -1480,6 +1658,9 @@ /usr/local/lib/R/library/translations/lt/LC_MESSAGES/tcltk.mo /usr/local/lib/R/library/translations/lt/LC_MESSAGES/tools.mo /usr/local/lib/R/library/translations/lt/LC_MESSAGES/utils.mo +/usr/local/lib/R/library/translations/ne/LC_MESSAGES/R-compiler.mo +/usr/local/lib/R/library/translations/ne/LC_MESSAGES/R.mo +/usr/local/lib/R/library/translations/ne/LC_MESSAGES/RGui.mo /usr/local/lib/R/library/translations/nn/LC_MESSAGES/R-base.mo /usr/local/lib/R/library/translations/nn/LC_MESSAGES/R.mo /usr/local/lib/R/library/translations/nn/LC_MESSAGES/RGui.mo @@ -1515,6 +1696,7 @@ /usr/local/lib/R/library/translations/pt_BR/LC_MESSAGES/R-graphics.mo /usr/local/lib/R/library/translations/pt_BR/LC_MESSAGES/R-grid.mo /usr/local/lib/R/library/translations/pt_BR/LC_MESSAGES/R-methods.mo +/usr/local/lib/R/library/translations/pt_BR/LC_MESSAGES/R-parallel.mo /usr/local/lib/R/library/translations/pt_BR/LC_MESSAGES/R-splines.mo /usr/local/lib/R/library/translations/pt_BR/LC_MESSAGES/R-stats.mo /usr/local/lib/R/library/translations/pt_BR/LC_MESSAGES/R-stats4.mo @@ -1531,6 +1713,7 @@ /usr/local/lib/R/library/translations/pt_BR/LC_MESSAGES/stats.mo /usr/local/lib/R/library/translations/pt_BR/LC_MESSAGES/tcltk.mo /usr/local/lib/R/library/translations/pt_BR/LC_MESSAGES/tools.mo +/usr/local/lib/R/library/translations/pt_BR/LC_MESSAGES/utils.mo /usr/local/lib/R/library/translations/ru/LC_MESSAGES/R-base.mo /usr/local/lib/R/library/translations/ru/LC_MESSAGES/R-compiler.mo /usr/local/lib/R/library/translations/ru/LC_MESSAGES/R-grDevices.mo @@ -1556,6 +1739,8 @@ /usr/local/lib/R/library/translations/ru/LC_MESSAGES/tcltk.mo /usr/local/lib/R/library/translations/ru/LC_MESSAGES/tools.mo /usr/local/lib/R/library/translations/ru/LC_MESSAGES/utils.mo +/usr/local/lib/R/library/translations/sq/LC_MESSAGES/R-base.mo +/usr/local/lib/R/library/translations/sq/LC_MESSAGES/R.mo /usr/local/lib/R/library/translations/tr/LC_MESSAGES/R-base.mo /usr/local/lib/R/library/translations/tr/LC_MESSAGES/R-stats.mo /usr/local/lib/R/library/translations/tr/LC_MESSAGES/R-stats4.mo @@ -1564,6 +1749,7 @@ /usr/local/lib/R/library/translations/tr/LC_MESSAGES/R.mo /usr/local/lib/R/library/translations/tr/LC_MESSAGES/RGui.mo /usr/local/lib/R/library/translations/tr/LC_MESSAGES/graphics.mo +/usr/local/lib/R/library/translations/ur/LC_MESSAGES/R-base.mo /usr/local/lib/R/library/translations/zh_CN/LC_MESSAGES/R-base.mo /usr/local/lib/R/library/translations/zh_CN/LC_MESSAGES/R-compiler.mo /usr/local/lib/R/library/translations/zh_CN/LC_MESSAGES/R-grDevices.mo @@ -1651,6 +1837,9 @@ /usr/local/lib/R/share/R/nspackloader.R /usr/local/lib/R/share/R/tests-startup.R /usr/local/lib/R/share/Rd/macros/system.Rd +/usr/local/lib/R/share/dictionaries/R_Rd_files.rds +/usr/local/lib/R/share/dictionaries/R_manuals.rds +/usr/local/lib/R/share/dictionaries/R_vignettes.rds /usr/local/lib/R/share/dictionaries/en_stats.rds /usr/local/lib/R/share/encodings/Adobe-glyphlist /usr/local/lib/R/share/encodings/character-sets diff --git a/manifest/armv7l/s/sdl2_ttf.filelist b/manifest/armv7l/s/sdl2_ttf.filelist new file mode 100644 index 000000000..554d5802b --- /dev/null +++ b/manifest/armv7l/s/sdl2_ttf.filelist @@ -0,0 +1,11 @@ +/usr/local/include/SDL2/SDL_ttf.h +/usr/local/lib/cmake/SDL2_ttf/SDL2_ttf-shared-targets-release.cmake +/usr/local/lib/cmake/SDL2_ttf/SDL2_ttf-shared-targets.cmake +/usr/local/lib/cmake/SDL2_ttf/SDL2_ttfConfig.cmake +/usr/local/lib/cmake/SDL2_ttf/SDL2_ttfConfigVersion.cmake +/usr/local/lib/libSDL2_ttf-2.0.so +/usr/local/lib/libSDL2_ttf-2.0.so.0 +/usr/local/lib/libSDL2_ttf-2.0.so.0.2200.0 +/usr/local/lib/libSDL2_ttf.so +/usr/local/lib/pkgconfig/SDL2_ttf.pc +/usr/local/share/licenses/SDL2_ttf/LICENSE.txt diff --git a/manifest/armv7l/s/sdl3.filelist b/manifest/armv7l/s/sdl3.filelist new file mode 100644 index 000000000..7041cbfb0 --- /dev/null +++ b/manifest/armv7l/s/sdl3.filelist @@ -0,0 +1,94 @@ +/usr/local/include/SDL3/SDL.h +/usr/local/include/SDL3/SDL_assert.h +/usr/local/include/SDL3/SDL_atomic.h +/usr/local/include/SDL3/SDL_audio.h +/usr/local/include/SDL3/SDL_begin_code.h +/usr/local/include/SDL3/SDL_bits.h +/usr/local/include/SDL3/SDL_blendmode.h +/usr/local/include/SDL3/SDL_camera.h +/usr/local/include/SDL3/SDL_clipboard.h +/usr/local/include/SDL3/SDL_close_code.h +/usr/local/include/SDL3/SDL_copying.h +/usr/local/include/SDL3/SDL_cpuinfo.h +/usr/local/include/SDL3/SDL_dialog.h +/usr/local/include/SDL3/SDL_egl.h +/usr/local/include/SDL3/SDL_endian.h +/usr/local/include/SDL3/SDL_error.h +/usr/local/include/SDL3/SDL_events.h +/usr/local/include/SDL3/SDL_filesystem.h +/usr/local/include/SDL3/SDL_gamepad.h +/usr/local/include/SDL3/SDL_guid.h +/usr/local/include/SDL3/SDL_haptic.h +/usr/local/include/SDL3/SDL_hidapi.h +/usr/local/include/SDL3/SDL_hints.h +/usr/local/include/SDL3/SDL_init.h +/usr/local/include/SDL3/SDL_intrin.h +/usr/local/include/SDL3/SDL_iostream.h +/usr/local/include/SDL3/SDL_joystick.h +/usr/local/include/SDL3/SDL_keyboard.h +/usr/local/include/SDL3/SDL_keycode.h +/usr/local/include/SDL3/SDL_loadso.h +/usr/local/include/SDL3/SDL_locale.h +/usr/local/include/SDL3/SDL_log.h +/usr/local/include/SDL3/SDL_main.h +/usr/local/include/SDL3/SDL_main_impl.h +/usr/local/include/SDL3/SDL_messagebox.h +/usr/local/include/SDL3/SDL_metal.h +/usr/local/include/SDL3/SDL_misc.h +/usr/local/include/SDL3/SDL_mouse.h +/usr/local/include/SDL3/SDL_mutex.h +/usr/local/include/SDL3/SDL_oldnames.h +/usr/local/include/SDL3/SDL_opengl.h +/usr/local/include/SDL3/SDL_opengl_glext.h +/usr/local/include/SDL3/SDL_opengles.h +/usr/local/include/SDL3/SDL_opengles2.h +/usr/local/include/SDL3/SDL_opengles2_gl2.h +/usr/local/include/SDL3/SDL_opengles2_gl2ext.h +/usr/local/include/SDL3/SDL_opengles2_gl2platform.h +/usr/local/include/SDL3/SDL_opengles2_khrplatform.h +/usr/local/include/SDL3/SDL_pen.h +/usr/local/include/SDL3/SDL_pixels.h +/usr/local/include/SDL3/SDL_platform.h +/usr/local/include/SDL3/SDL_platform_defines.h +/usr/local/include/SDL3/SDL_power.h +/usr/local/include/SDL3/SDL_properties.h +/usr/local/include/SDL3/SDL_rect.h +/usr/local/include/SDL3/SDL_render.h +/usr/local/include/SDL3/SDL_revision.h +/usr/local/include/SDL3/SDL_scancode.h +/usr/local/include/SDL3/SDL_sensor.h +/usr/local/include/SDL3/SDL_stdinc.h +/usr/local/include/SDL3/SDL_storage.h +/usr/local/include/SDL3/SDL_surface.h +/usr/local/include/SDL3/SDL_system.h +/usr/local/include/SDL3/SDL_test.h +/usr/local/include/SDL3/SDL_test_assert.h +/usr/local/include/SDL3/SDL_test_common.h +/usr/local/include/SDL3/SDL_test_compare.h +/usr/local/include/SDL3/SDL_test_crc32.h +/usr/local/include/SDL3/SDL_test_font.h +/usr/local/include/SDL3/SDL_test_fuzzer.h +/usr/local/include/SDL3/SDL_test_harness.h +/usr/local/include/SDL3/SDL_test_log.h +/usr/local/include/SDL3/SDL_test_md5.h +/usr/local/include/SDL3/SDL_test_memory.h +/usr/local/include/SDL3/SDL_thread.h +/usr/local/include/SDL3/SDL_time.h +/usr/local/include/SDL3/SDL_timer.h +/usr/local/include/SDL3/SDL_touch.h +/usr/local/include/SDL3/SDL_version.h +/usr/local/include/SDL3/SDL_video.h +/usr/local/include/SDL3/SDL_vulkan.h +/usr/local/lib/cmake/SDL3/SDL3Config.cmake +/usr/local/lib/cmake/SDL3/SDL3ConfigVersion.cmake +/usr/local/lib/cmake/SDL3/SDL3headersTargets.cmake +/usr/local/lib/cmake/SDL3/SDL3sharedTargets-release.cmake +/usr/local/lib/cmake/SDL3/SDL3sharedTargets.cmake +/usr/local/lib/cmake/SDL3/SDL3testTargets-release.cmake +/usr/local/lib/cmake/SDL3/SDL3testTargets.cmake +/usr/local/lib/libSDL3.so +/usr/local/lib/libSDL3.so.0 +/usr/local/lib/libSDL3.so.0.1.2 +/usr/local/lib/libSDL3_test.a +/usr/local/lib/pkgconfig/sdl3.pc +/usr/local/share/licenses/SDL3/LICENSE.txt diff --git a/manifest/armv7l/s/sdl3_ttf.filelist b/manifest/armv7l/s/sdl3_ttf.filelist new file mode 100644 index 000000000..13e602822 --- /dev/null +++ b/manifest/armv7l/s/sdl3_ttf.filelist @@ -0,0 +1,10 @@ +/usr/local/include/SDL3_ttf/SDL_ttf.h +/usr/local/lib/cmake/SDL3_ttf/SDL3_ttf-shared-targets-release.cmake +/usr/local/lib/cmake/SDL3_ttf/SDL3_ttf-shared-targets.cmake +/usr/local/lib/cmake/SDL3_ttf/SDL3_ttfConfig.cmake +/usr/local/lib/cmake/SDL3_ttf/SDL3_ttfConfigVersion.cmake +/usr/local/lib/libSDL3_ttf.so +/usr/local/lib/libSDL3_ttf.so.0 +/usr/local/lib/libSDL3_ttf.so.0.0.0 +/usr/local/lib/pkgconfig/sdl3-ttf.pc +/usr/local/share/licenses/SDL3_ttf/LICENSE.txt diff --git a/manifest/armv7l/s/shared_mime_info.filelist b/manifest/armv7l/s/shared_mime_info.filelist index dd7004986..f598ee1e8 100644 --- a/manifest/armv7l/s/shared_mime_info.filelist +++ b/manifest/armv7l/s/shared_mime_info.filelist @@ -1,4 +1,7 @@ /usr/local/bin/update-mime-database +/usr/local/share/gettext/its/shared-mime-info.its +/usr/local/share/gettext/its/shared-mime-info.loc +/usr/local/share/locale/af/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/ar/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/as/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/ast/LC_MESSAGES/shared-mime-info.mo @@ -33,12 +36,14 @@ /usr/local/share/locale/hu/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/ia/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/id/LC_MESSAGES/shared-mime-info.mo +/usr/local/share/locale/is/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/it/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/ja/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/ka/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/kk/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/kn/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/ko/LC_MESSAGES/shared-mime-info.mo +/usr/local/share/locale/ky/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/lt/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/lv/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/ml/LC_MESSAGES/shared-mime-info.mo @@ -56,6 +61,7 @@ /usr/local/share/locale/ro/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/ru/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/rw/LC_MESSAGES/shared-mime-info.mo +/usr/local/share/locale/si/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/sk/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/sl/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/sq/LC_MESSAGES/shared-mime-info.mo @@ -72,797 +78,6 @@ /usr/local/share/locale/zh_CN/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/zh_HK/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/zh_TW/LC_MESSAGES/shared-mime-info.mo -/usr/local/share/man/man1/update-mime-database.1.gz -/usr/local/share/mime/XMLnamespaces -/usr/local/share/mime/aliases -/usr/local/share/mime/application/andrew-inset.xml -/usr/local/share/mime/application/annodex.xml -/usr/local/share/mime/application/atom+xml.xml -/usr/local/share/mime/application/dicom.xml -/usr/local/share/mime/application/ecmascript.xml -/usr/local/share/mime/application/epub+zip.xml -/usr/local/share/mime/application/geo+json.xml -/usr/local/share/mime/application/gml+xml.xml -/usr/local/share/mime/application/gnunet-directory.xml -/usr/local/share/mime/application/gpx+xml.xml -/usr/local/share/mime/application/gzip.xml -/usr/local/share/mime/application/illustrator.xml -/usr/local/share/mime/application/javascript.xml -/usr/local/share/mime/application/jrd+json.xml -/usr/local/share/mime/application/json-patch+json.xml -/usr/local/share/mime/application/json.xml -/usr/local/share/mime/application/ld+json.xml -/usr/local/share/mime/application/mac-binhex40.xml -/usr/local/share/mime/application/mathematica.xml -/usr/local/share/mime/application/mathml+xml.xml -/usr/local/share/mime/application/mbox.xml -/usr/local/share/mime/application/metalink+xml.xml -/usr/local/share/mime/application/metalink4+xml.xml -/usr/local/share/mime/application/msword-template.xml -/usr/local/share/mime/application/msword.xml -/usr/local/share/mime/application/mxf.xml -/usr/local/share/mime/application/octet-stream.xml -/usr/local/share/mime/application/oda.xml -/usr/local/share/mime/application/ogg.xml -/usr/local/share/mime/application/owl+xml.xml -/usr/local/share/mime/application/oxps.xml -/usr/local/share/mime/application/pdf.xml -/usr/local/share/mime/application/pgp-encrypted.xml -/usr/local/share/mime/application/pgp-keys.xml -/usr/local/share/mime/application/pgp-signature.xml -/usr/local/share/mime/application/pkcs10.xml -/usr/local/share/mime/application/pkcs12.xml -/usr/local/share/mime/application/pkcs7-mime.xml -/usr/local/share/mime/application/pkcs7-signature.xml -/usr/local/share/mime/application/pkcs8-encrypted.xml -/usr/local/share/mime/application/pkcs8.xml -/usr/local/share/mime/application/pkix-cert.xml -/usr/local/share/mime/application/pkix-crl.xml -/usr/local/share/mime/application/pkix-pkipath.xml -/usr/local/share/mime/application/postscript.xml -/usr/local/share/mime/application/prs.plucker.xml -/usr/local/share/mime/application/ram.xml -/usr/local/share/mime/application/raml+yaml.xml -/usr/local/share/mime/application/rdf+xml.xml -/usr/local/share/mime/application/relax-ng-compact-syntax.xml -/usr/local/share/mime/application/rss+xml.xml -/usr/local/share/mime/application/rtf.xml -/usr/local/share/mime/application/sdp.xml -/usr/local/share/mime/application/sieve.xml -/usr/local/share/mime/application/smil+xml.xml -/usr/local/share/mime/application/sql.xml -/usr/local/share/mime/application/trig.xml -/usr/local/share/mime/application/vnd.adobe.flash.movie.xml -/usr/local/share/mime/application/vnd.android.package-archive.xml -/usr/local/share/mime/application/vnd.appimage.xml -/usr/local/share/mime/application/vnd.apple.mpegurl.xml -/usr/local/share/mime/application/vnd.chess-pgn.xml -/usr/local/share/mime/application/vnd.coffeescript.xml -/usr/local/share/mime/application/vnd.comicbook+zip.xml -/usr/local/share/mime/application/vnd.comicbook-rar.xml -/usr/local/share/mime/application/vnd.corel-draw.xml -/usr/local/share/mime/application/vnd.debian.binary-package.xml -/usr/local/share/mime/application/vnd.emusic-emusic_package.xml -/usr/local/share/mime/application/vnd.flatpak.ref.xml -/usr/local/share/mime/application/vnd.flatpak.repo.xml -/usr/local/share/mime/application/vnd.flatpak.xml -/usr/local/share/mime/application/vnd.framemaker.xml -/usr/local/share/mime/application/vnd.google-earth.kml+xml.xml -/usr/local/share/mime/application/vnd.google-earth.kmz.xml -/usr/local/share/mime/application/vnd.hp-hpgl.xml -/usr/local/share/mime/application/vnd.hp-pcl.xml -/usr/local/share/mime/application/vnd.iccprofile.xml -/usr/local/share/mime/application/vnd.lotus-1-2-3.xml -/usr/local/share/mime/application/vnd.lotus-wordpro.xml -/usr/local/share/mime/application/vnd.mozilla.xul+xml.xml -/usr/local/share/mime/application/vnd.ms-access.xml -/usr/local/share/mime/application/vnd.ms-asf.xml -/usr/local/share/mime/application/vnd.ms-cab-compressed.xml -/usr/local/share/mime/application/vnd.ms-excel.addin.macroenabled.12.xml -/usr/local/share/mime/application/vnd.ms-excel.sheet.binary.macroenabled.12.xml -/usr/local/share/mime/application/vnd.ms-excel.sheet.macroenabled.12.xml -/usr/local/share/mime/application/vnd.ms-excel.template.macroenabled.12.xml -/usr/local/share/mime/application/vnd.ms-excel.xml -/usr/local/share/mime/application/vnd.ms-htmlhelp.xml -/usr/local/share/mime/application/vnd.ms-powerpoint.addin.macroenabled.12.xml -/usr/local/share/mime/application/vnd.ms-powerpoint.presentation.macroenabled.12.xml -/usr/local/share/mime/application/vnd.ms-powerpoint.slide.macroenabled.12.xml -/usr/local/share/mime/application/vnd.ms-powerpoint.slideshow.macroenabled.12.xml -/usr/local/share/mime/application/vnd.ms-powerpoint.template.macroenabled.12.xml -/usr/local/share/mime/application/vnd.ms-powerpoint.xml -/usr/local/share/mime/application/vnd.ms-publisher.xml -/usr/local/share/mime/application/vnd.ms-tnef.xml -/usr/local/share/mime/application/vnd.ms-visio.drawing.macroenabled.main+xml.xml -/usr/local/share/mime/application/vnd.ms-visio.drawing.main+xml.xml -/usr/local/share/mime/application/vnd.ms-visio.stencil.macroenabled.main+xml.xml -/usr/local/share/mime/application/vnd.ms-visio.stencil.main+xml.xml -/usr/local/share/mime/application/vnd.ms-visio.template.macroenabled.main+xml.xml -/usr/local/share/mime/application/vnd.ms-visio.template.main+xml.xml -/usr/local/share/mime/application/vnd.ms-word.document.macroenabled.12.xml -/usr/local/share/mime/application/vnd.ms-word.template.macroenabled.12.xml -/usr/local/share/mime/application/vnd.ms-works.xml -/usr/local/share/mime/application/vnd.ms-wpl.xml -/usr/local/share/mime/application/vnd.nintendo.snes.rom.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.chart-template.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.chart.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.database.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.formula-template.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.formula.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.graphics-flat-xml.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.graphics-template.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.graphics.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.image.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.presentation-flat-xml.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.presentation-template.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.presentation.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.spreadsheet-flat-xml.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.spreadsheet-template.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.spreadsheet.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.text-flat-xml.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.text-master.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.text-template.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.text-web.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.text.xml -/usr/local/share/mime/application/vnd.openofficeorg.extension.xml -/usr/local/share/mime/application/vnd.openxmlformats-officedocument.presentationml.presentation.xml -/usr/local/share/mime/application/vnd.openxmlformats-officedocument.presentationml.slide.xml -/usr/local/share/mime/application/vnd.openxmlformats-officedocument.presentationml.slideshow.xml -/usr/local/share/mime/application/vnd.openxmlformats-officedocument.presentationml.template.xml -/usr/local/share/mime/application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.xml -/usr/local/share/mime/application/vnd.openxmlformats-officedocument.spreadsheetml.template.xml -/usr/local/share/mime/application/vnd.openxmlformats-officedocument.wordprocessingml.document.xml -/usr/local/share/mime/application/vnd.openxmlformats-officedocument.wordprocessingml.template.xml -/usr/local/share/mime/application/vnd.palm.xml -/usr/local/share/mime/application/vnd.rar.xml -/usr/local/share/mime/application/vnd.rn-realmedia.xml -/usr/local/share/mime/application/vnd.snap.xml -/usr/local/share/mime/application/vnd.sqlite3.xml -/usr/local/share/mime/application/vnd.squashfs.xml -/usr/local/share/mime/application/vnd.stardivision.calc.xml -/usr/local/share/mime/application/vnd.stardivision.chart.xml -/usr/local/share/mime/application/vnd.stardivision.draw.xml -/usr/local/share/mime/application/vnd.stardivision.impress.xml -/usr/local/share/mime/application/vnd.stardivision.mail.xml -/usr/local/share/mime/application/vnd.stardivision.math.xml -/usr/local/share/mime/application/vnd.stardivision.writer.xml -/usr/local/share/mime/application/vnd.sun.xml.calc.template.xml -/usr/local/share/mime/application/vnd.sun.xml.calc.xml -/usr/local/share/mime/application/vnd.sun.xml.draw.template.xml -/usr/local/share/mime/application/vnd.sun.xml.draw.xml -/usr/local/share/mime/application/vnd.sun.xml.impress.template.xml -/usr/local/share/mime/application/vnd.sun.xml.impress.xml -/usr/local/share/mime/application/vnd.sun.xml.math.xml -/usr/local/share/mime/application/vnd.sun.xml.writer.global.xml -/usr/local/share/mime/application/vnd.sun.xml.writer.template.xml -/usr/local/share/mime/application/vnd.sun.xml.writer.xml -/usr/local/share/mime/application/vnd.symbian.install.xml -/usr/local/share/mime/application/vnd.tcpdump.pcap.xml -/usr/local/share/mime/application/vnd.visio.xml -/usr/local/share/mime/application/vnd.wordperfect.xml -/usr/local/share/mime/application/vnd.youtube.yt.xml -/usr/local/share/mime/application/winhlp.xml -/usr/local/share/mime/application/x-7z-compressed.xml -/usr/local/share/mime/application/x-abiword.xml -/usr/local/share/mime/application/x-ace.xml -/usr/local/share/mime/application/x-alz.xml -/usr/local/share/mime/application/x-amiga-disk-format.xml -/usr/local/share/mime/application/x-amipro.xml -/usr/local/share/mime/application/x-aportisdoc.xml -/usr/local/share/mime/application/x-apple-diskimage.xml -/usr/local/share/mime/application/x-applix-spreadsheet.xml -/usr/local/share/mime/application/x-applix-word.xml -/usr/local/share/mime/application/x-arc.xml -/usr/local/share/mime/application/x-archive.xml -/usr/local/share/mime/application/x-arj.xml -/usr/local/share/mime/application/x-asp.xml -/usr/local/share/mime/application/x-atari-2600-rom.xml -/usr/local/share/mime/application/x-atari-7800-rom.xml -/usr/local/share/mime/application/x-atari-lynx-rom.xml -/usr/local/share/mime/application/x-awk.xml -/usr/local/share/mime/application/x-bcpio.xml -/usr/local/share/mime/application/x-bittorrent.xml -/usr/local/share/mime/application/x-blender.xml -/usr/local/share/mime/application/x-bsdiff.xml -/usr/local/share/mime/application/x-bzdvi.xml -/usr/local/share/mime/application/x-bzip-compressed-tar.xml -/usr/local/share/mime/application/x-bzip.xml -/usr/local/share/mime/application/x-bzpdf.xml -/usr/local/share/mime/application/x-bzpostscript.xml -/usr/local/share/mime/application/x-cb7.xml -/usr/local/share/mime/application/x-cbt.xml -/usr/local/share/mime/application/x-ccmx.xml -/usr/local/share/mime/application/x-cd-image.xml -/usr/local/share/mime/application/x-cdrdao-toc.xml -/usr/local/share/mime/application/x-cisco-vpn-settings.xml -/usr/local/share/mime/application/x-class-file.xml -/usr/local/share/mime/application/x-compress.xml -/usr/local/share/mime/application/x-compressed-tar.xml -/usr/local/share/mime/application/x-core.xml -/usr/local/share/mime/application/x-cpio-compressed.xml -/usr/local/share/mime/application/x-cpio.xml -/usr/local/share/mime/application/x-csh.xml -/usr/local/share/mime/application/x-cue.xml -/usr/local/share/mime/application/x-dar.xml -/usr/local/share/mime/application/x-dbf.xml -/usr/local/share/mime/application/x-dc-rom.xml -/usr/local/share/mime/application/x-designer.xml -/usr/local/share/mime/application/x-desktop.xml -/usr/local/share/mime/application/x-dia-diagram.xml -/usr/local/share/mime/application/x-dia-shape.xml -/usr/local/share/mime/application/x-docbook+xml.xml -/usr/local/share/mime/application/x-doom-wad.xml -/usr/local/share/mime/application/x-dvi.xml -/usr/local/share/mime/application/x-e-theme.xml -/usr/local/share/mime/application/x-egon.xml -/usr/local/share/mime/application/x-executable.xml -/usr/local/share/mime/application/x-fds-disk.xml -/usr/local/share/mime/application/x-fictionbook+xml.xml -/usr/local/share/mime/application/x-fluid.xml -/usr/local/share/mime/application/x-font-afm.xml -/usr/local/share/mime/application/x-font-bdf.xml -/usr/local/share/mime/application/x-font-dos.xml -/usr/local/share/mime/application/x-font-framemaker.xml -/usr/local/share/mime/application/x-font-libgrx.xml -/usr/local/share/mime/application/x-font-linux-psf.xml -/usr/local/share/mime/application/x-font-pcf.xml -/usr/local/share/mime/application/x-font-speedo.xml -/usr/local/share/mime/application/x-font-sunos-news.xml -/usr/local/share/mime/application/x-font-tex-tfm.xml -/usr/local/share/mime/application/x-font-tex.xml -/usr/local/share/mime/application/x-font-ttx.xml -/usr/local/share/mime/application/x-font-type1.xml -/usr/local/share/mime/application/x-font-vfont.xml -/usr/local/share/mime/application/x-gameboy-color-rom.xml -/usr/local/share/mime/application/x-gameboy-rom.xml -/usr/local/share/mime/application/x-gamecube-rom.xml -/usr/local/share/mime/application/x-gamegear-rom.xml -/usr/local/share/mime/application/x-gba-rom.xml -/usr/local/share/mime/application/x-gdbm.xml -/usr/local/share/mime/application/x-gedcom.xml -/usr/local/share/mime/application/x-genesis-32x-rom.xml -/usr/local/share/mime/application/x-genesis-rom.xml -/usr/local/share/mime/application/x-gettext-translation.xml -/usr/local/share/mime/application/x-glade.xml -/usr/local/share/mime/application/x-gnucash.xml -/usr/local/share/mime/application/x-gnumeric.xml -/usr/local/share/mime/application/x-gnuplot.xml -/usr/local/share/mime/application/x-go-sgf.xml -/usr/local/share/mime/application/x-graphite.xml -/usr/local/share/mime/application/x-gtk-builder.xml -/usr/local/share/mime/application/x-gtktalog.xml -/usr/local/share/mime/application/x-gz-font-linux-psf.xml -/usr/local/share/mime/application/x-gzdvi.xml -/usr/local/share/mime/application/x-gzpdf.xml -/usr/local/share/mime/application/x-gzpostscript.xml -/usr/local/share/mime/application/x-hdf.xml -/usr/local/share/mime/application/x-hfe-floppy-image.xml -/usr/local/share/mime/application/x-hwp.xml -/usr/local/share/mime/application/x-hwt.xml -/usr/local/share/mime/application/x-ica.xml -/usr/local/share/mime/application/x-iff.xml -/usr/local/share/mime/application/x-ipod-firmware.xml -/usr/local/share/mime/application/x-ipynb+json.xml -/usr/local/share/mime/application/x-iso9660-appimage.xml -/usr/local/share/mime/application/x-it87.xml -/usr/local/share/mime/application/x-iwork-keynote-sffkey.xml -/usr/local/share/mime/application/x-java-archive.xml -/usr/local/share/mime/application/x-java-jce-keystore.xml -/usr/local/share/mime/application/x-java-jnlp-file.xml -/usr/local/share/mime/application/x-java-keystore.xml -/usr/local/share/mime/application/x-java-pack200.xml -/usr/local/share/mime/application/x-java.xml -/usr/local/share/mime/application/x-jbuilder-project.xml -/usr/local/share/mime/application/x-karbon.xml -/usr/local/share/mime/application/x-kchart.xml -/usr/local/share/mime/application/x-kexi-connectiondata.xml -/usr/local/share/mime/application/x-kexiproject-shortcut.xml -/usr/local/share/mime/application/x-kexiproject-sqlite2.xml -/usr/local/share/mime/application/x-kexiproject-sqlite3.xml -/usr/local/share/mime/application/x-kformula.xml -/usr/local/share/mime/application/x-killustrator.xml -/usr/local/share/mime/application/x-kivio.xml -/usr/local/share/mime/application/x-kontour.xml -/usr/local/share/mime/application/x-kpovmodeler.xml -/usr/local/share/mime/application/x-kpresenter.xml -/usr/local/share/mime/application/x-krita.xml -/usr/local/share/mime/application/x-kspread-crypt.xml -/usr/local/share/mime/application/x-kspread.xml -/usr/local/share/mime/application/x-ksysv-package.xml -/usr/local/share/mime/application/x-kugar.xml -/usr/local/share/mime/application/x-kword-crypt.xml -/usr/local/share/mime/application/x-kword.xml -/usr/local/share/mime/application/x-lha.xml -/usr/local/share/mime/application/x-lhz.xml -/usr/local/share/mime/application/x-lrzip-compressed-tar.xml -/usr/local/share/mime/application/x-lrzip.xml -/usr/local/share/mime/application/x-lyx.xml -/usr/local/share/mime/application/x-lz4-compressed-tar.xml -/usr/local/share/mime/application/x-lz4.xml -/usr/local/share/mime/application/x-lzip-compressed-tar.xml -/usr/local/share/mime/application/x-lzip.xml -/usr/local/share/mime/application/x-lzma-compressed-tar.xml -/usr/local/share/mime/application/x-lzma.xml -/usr/local/share/mime/application/x-lzop.xml -/usr/local/share/mime/application/x-lzpdf.xml -/usr/local/share/mime/application/x-m4.xml -/usr/local/share/mime/application/x-macbinary.xml -/usr/local/share/mime/application/x-magicpoint.xml -/usr/local/share/mime/application/x-markaby.xml -/usr/local/share/mime/application/x-matroska.xml -/usr/local/share/mime/application/x-mif.xml -/usr/local/share/mime/application/x-mimearchive.xml -/usr/local/share/mime/application/x-mobipocket-ebook.xml -/usr/local/share/mime/application/x-mozilla-bookmarks.xml -/usr/local/share/mime/application/x-ms-dos-executable.xml -/usr/local/share/mime/application/x-ms-wim.xml -/usr/local/share/mime/application/x-msi.xml -/usr/local/share/mime/application/x-mswinurl.xml -/usr/local/share/mime/application/x-mswrite.xml -/usr/local/share/mime/application/x-msx-rom.xml -/usr/local/share/mime/application/x-n64-rom.xml -/usr/local/share/mime/application/x-nautilus-link.xml -/usr/local/share/mime/application/x-navi-animation.xml -/usr/local/share/mime/application/x-neo-geo-pocket-color-rom.xml -/usr/local/share/mime/application/x-neo-geo-pocket-rom.xml -/usr/local/share/mime/application/x-nes-rom.xml -/usr/local/share/mime/application/x-netcdf.xml -/usr/local/share/mime/application/x-netshow-channel.xml -/usr/local/share/mime/application/x-nintendo-ds-rom.xml -/usr/local/share/mime/application/x-nzb.xml -/usr/local/share/mime/application/x-object.xml -/usr/local/share/mime/application/x-ole-storage.xml -/usr/local/share/mime/application/x-oleo.xml -/usr/local/share/mime/application/x-pagemaker.xml -/usr/local/share/mime/application/x-pak.xml -/usr/local/share/mime/application/x-par2.xml -/usr/local/share/mime/application/x-partial-download.xml -/usr/local/share/mime/application/x-pc-engine-rom.xml -/usr/local/share/mime/application/x-pef-executable.xml -/usr/local/share/mime/application/x-perl.xml -/usr/local/share/mime/application/x-php.xml -/usr/local/share/mime/application/x-pkcs7-certificates.xml -/usr/local/share/mime/application/x-planperfect.xml -/usr/local/share/mime/application/x-pocket-word.xml -/usr/local/share/mime/application/x-profile.xml -/usr/local/share/mime/application/x-pw.xml -/usr/local/share/mime/application/x-python-bytecode.xml -/usr/local/share/mime/application/x-qpress.xml -/usr/local/share/mime/application/x-qtiplot.xml -/usr/local/share/mime/application/x-quattropro.xml -/usr/local/share/mime/application/x-quicktime-media-link.xml -/usr/local/share/mime/application/x-qw.xml -/usr/local/share/mime/application/x-raw-disk-image-xz-compressed.xml -/usr/local/share/mime/application/x-raw-disk-image.xml -/usr/local/share/mime/application/x-raw-floppy-disk-image.xml -/usr/local/share/mime/application/x-riff.xml -/usr/local/share/mime/application/x-rpm.xml -/usr/local/share/mime/application/x-ruby.xml -/usr/local/share/mime/application/x-sami.xml -/usr/local/share/mime/application/x-saturn-rom.xml -/usr/local/share/mime/application/x-sc.xml -/usr/local/share/mime/application/x-sega-cd-rom.xml -/usr/local/share/mime/application/x-sega-pico-rom.xml -/usr/local/share/mime/application/x-sg1000-rom.xml -/usr/local/share/mime/application/x-shar.xml -/usr/local/share/mime/application/x-shared-library-la.xml -/usr/local/share/mime/application/x-sharedlib.xml -/usr/local/share/mime/application/x-shellscript.xml -/usr/local/share/mime/application/x-shorten.xml -/usr/local/share/mime/application/x-siag.xml -/usr/local/share/mime/application/x-slp.xml -/usr/local/share/mime/application/x-smaf.xml -/usr/local/share/mime/application/x-sms-rom.xml -/usr/local/share/mime/application/x-source-rpm.xml -/usr/local/share/mime/application/x-spss-por.xml -/usr/local/share/mime/application/x-spss-sav.xml -/usr/local/share/mime/application/x-sqlite2.xml -/usr/local/share/mime/application/x-stuffit.xml -/usr/local/share/mime/application/x-subrip.xml -/usr/local/share/mime/application/x-sv4cpio.xml -/usr/local/share/mime/application/x-sv4crc.xml -/usr/local/share/mime/application/x-t602.xml -/usr/local/share/mime/application/x-tar.xml -/usr/local/share/mime/application/x-tarz.xml -/usr/local/share/mime/application/x-tex-gf.xml -/usr/local/share/mime/application/x-tex-pk.xml -/usr/local/share/mime/application/x-tgif.xml -/usr/local/share/mime/application/x-theme.xml -/usr/local/share/mime/application/x-thomson-cartridge-memo7.xml -/usr/local/share/mime/application/x-thomson-cassette.xml -/usr/local/share/mime/application/x-thomson-sap-image.xml -/usr/local/share/mime/application/x-toutdoux.xml -/usr/local/share/mime/application/x-trash.xml -/usr/local/share/mime/application/x-troff-man-compressed.xml -/usr/local/share/mime/application/x-troff-man.xml -/usr/local/share/mime/application/x-tzo.xml -/usr/local/share/mime/application/x-ufraw.xml -/usr/local/share/mime/application/x-ustar.xml -/usr/local/share/mime/application/x-virtual-boy-rom.xml -/usr/local/share/mime/application/x-wais-source.xml -/usr/local/share/mime/application/x-wii-rom.xml -/usr/local/share/mime/application/x-wii-wad.xml -/usr/local/share/mime/application/x-windows-themepack.xml -/usr/local/share/mime/application/x-wonderswan-color-rom.xml -/usr/local/share/mime/application/x-wonderswan-rom.xml -/usr/local/share/mime/application/x-wpg.xml -/usr/local/share/mime/application/x-wwf.xml -/usr/local/share/mime/application/x-x509-ca-cert.xml -/usr/local/share/mime/application/x-xar.xml -/usr/local/share/mime/application/x-xbel.xml -/usr/local/share/mime/application/x-xpinstall.xml -/usr/local/share/mime/application/x-xz-compressed-tar.xml -/usr/local/share/mime/application/x-xz.xml -/usr/local/share/mime/application/x-xzpdf.xml -/usr/local/share/mime/application/x-yaml.xml -/usr/local/share/mime/application/x-zerosize.xml -/usr/local/share/mime/application/x-zip-compressed-fb2.xml -/usr/local/share/mime/application/x-zoo.xml -/usr/local/share/mime/application/xhtml+xml.xml -/usr/local/share/mime/application/xliff+xml.xml -/usr/local/share/mime/application/xml-dtd.xml -/usr/local/share/mime/application/xml-external-parsed-entity.xml -/usr/local/share/mime/application/xml.xml -/usr/local/share/mime/application/xslt+xml.xml -/usr/local/share/mime/application/xspf+xml.xml -/usr/local/share/mime/application/zip.xml -/usr/local/share/mime/application/zlib.xml -/usr/local/share/mime/audio/aac.xml -/usr/local/share/mime/audio/ac3.xml -/usr/local/share/mime/audio/amr-wb.xml -/usr/local/share/mime/audio/amr.xml -/usr/local/share/mime/audio/annodex.xml -/usr/local/share/mime/audio/basic.xml -/usr/local/share/mime/audio/flac.xml -/usr/local/share/mime/audio/midi.xml -/usr/local/share/mime/audio/mp2.xml -/usr/local/share/mime/audio/mp4.xml -/usr/local/share/mime/audio/mpeg.xml -/usr/local/share/mime/audio/ogg.xml -/usr/local/share/mime/audio/prs.sid.xml -/usr/local/share/mime/audio/usac.xml -/usr/local/share/mime/audio/vnd.dts.hd.xml -/usr/local/share/mime/audio/vnd.dts.xml -/usr/local/share/mime/audio/vnd.rn-realaudio.xml -/usr/local/share/mime/audio/webm.xml -/usr/local/share/mime/audio/x-adpcm.xml -/usr/local/share/mime/audio/x-aifc.xml -/usr/local/share/mime/audio/x-aiff.xml -/usr/local/share/mime/audio/x-amzxml.xml -/usr/local/share/mime/audio/x-ape.xml -/usr/local/share/mime/audio/x-flac+ogg.xml -/usr/local/share/mime/audio/x-gsm.xml -/usr/local/share/mime/audio/x-iriver-pla.xml -/usr/local/share/mime/audio/x-it.xml -/usr/local/share/mime/audio/x-m4b.xml -/usr/local/share/mime/audio/x-m4r.xml -/usr/local/share/mime/audio/x-matroska.xml -/usr/local/share/mime/audio/x-minipsf.xml -/usr/local/share/mime/audio/x-mo3.xml -/usr/local/share/mime/audio/x-mod.xml -/usr/local/share/mime/audio/x-mpegurl.xml -/usr/local/share/mime/audio/x-ms-asx.xml -/usr/local/share/mime/audio/x-ms-wma.xml -/usr/local/share/mime/audio/x-musepack.xml -/usr/local/share/mime/audio/x-opus+ogg.xml -/usr/local/share/mime/audio/x-pn-audibleaudio.xml -/usr/local/share/mime/audio/x-psf.xml -/usr/local/share/mime/audio/x-psflib.xml -/usr/local/share/mime/audio/x-riff.xml -/usr/local/share/mime/audio/x-s3m.xml -/usr/local/share/mime/audio/x-scpls.xml -/usr/local/share/mime/audio/x-speex+ogg.xml -/usr/local/share/mime/audio/x-speex.xml -/usr/local/share/mime/audio/x-stm.xml -/usr/local/share/mime/audio/x-tta.xml -/usr/local/share/mime/audio/x-voc.xml -/usr/local/share/mime/audio/x-vorbis+ogg.xml -/usr/local/share/mime/audio/x-wav.xml -/usr/local/share/mime/audio/x-wavpack-correction.xml -/usr/local/share/mime/audio/x-wavpack.xml -/usr/local/share/mime/audio/x-xi.xml -/usr/local/share/mime/audio/x-xm.xml -/usr/local/share/mime/audio/x-xmf.xml -/usr/local/share/mime/font/collection.xml -/usr/local/share/mime/font/otf.xml -/usr/local/share/mime/font/ttf.xml -/usr/local/share/mime/font/woff.xml -/usr/local/share/mime/generic-icons -/usr/local/share/mime/globs -/usr/local/share/mime/globs2 -/usr/local/share/mime/icons -/usr/local/share/mime/image/bmp.xml -/usr/local/share/mime/image/cgm.xml -/usr/local/share/mime/image/dpx.xml -/usr/local/share/mime/image/emf.xml -/usr/local/share/mime/image/fax-g3.xml -/usr/local/share/mime/image/fits.xml -/usr/local/share/mime/image/g3fax.xml -/usr/local/share/mime/image/gif.xml -/usr/local/share/mime/image/heif.xml -/usr/local/share/mime/image/ief.xml -/usr/local/share/mime/image/jp2.xml -/usr/local/share/mime/image/jpeg.xml -/usr/local/share/mime/image/jpm.xml -/usr/local/share/mime/image/jpx.xml -/usr/local/share/mime/image/ktx.xml -/usr/local/share/mime/image/openraster.xml -/usr/local/share/mime/image/png.xml -/usr/local/share/mime/image/rle.xml -/usr/local/share/mime/image/svg+xml-compressed.xml -/usr/local/share/mime/image/svg+xml.xml -/usr/local/share/mime/image/tiff.xml -/usr/local/share/mime/image/vnd.adobe.photoshop.xml -/usr/local/share/mime/image/vnd.djvu+multipage.xml -/usr/local/share/mime/image/vnd.djvu.xml -/usr/local/share/mime/image/vnd.dwg.xml -/usr/local/share/mime/image/vnd.dxf.xml -/usr/local/share/mime/image/vnd.microsoft.icon.xml -/usr/local/share/mime/image/vnd.ms-modi.xml -/usr/local/share/mime/image/vnd.rn-realpix.xml -/usr/local/share/mime/image/vnd.wap.wbmp.xml -/usr/local/share/mime/image/vnd.zbrush.pcx.xml -/usr/local/share/mime/image/webp.xml -/usr/local/share/mime/image/wmf.xml -/usr/local/share/mime/image/x-3ds.xml -/usr/local/share/mime/image/x-adobe-dng.xml -/usr/local/share/mime/image/x-applix-graphics.xml -/usr/local/share/mime/image/x-bzeps.xml -/usr/local/share/mime/image/x-canon-cr2.xml -/usr/local/share/mime/image/x-canon-crw.xml -/usr/local/share/mime/image/x-cmu-raster.xml -/usr/local/share/mime/image/x-compressed-xcf.xml -/usr/local/share/mime/image/x-dcraw.xml -/usr/local/share/mime/image/x-dds.xml -/usr/local/share/mime/image/x-dib.xml -/usr/local/share/mime/image/x-eps.xml -/usr/local/share/mime/image/x-exr.xml -/usr/local/share/mime/image/x-fpx.xml -/usr/local/share/mime/image/x-fuji-raf.xml -/usr/local/share/mime/image/x-gimp-gbr.xml -/usr/local/share/mime/image/x-gimp-gih.xml -/usr/local/share/mime/image/x-gimp-pat.xml -/usr/local/share/mime/image/x-gzeps.xml -/usr/local/share/mime/image/x-icns.xml -/usr/local/share/mime/image/x-ilbm.xml -/usr/local/share/mime/image/x-jng.xml -/usr/local/share/mime/image/x-jp2-codestream.xml -/usr/local/share/mime/image/x-kodak-dcr.xml -/usr/local/share/mime/image/x-kodak-k25.xml -/usr/local/share/mime/image/x-kodak-kdc.xml -/usr/local/share/mime/image/x-lwo.xml -/usr/local/share/mime/image/x-lws.xml -/usr/local/share/mime/image/x-macpaint.xml -/usr/local/share/mime/image/x-minolta-mrw.xml -/usr/local/share/mime/image/x-msod.xml -/usr/local/share/mime/image/x-niff.xml -/usr/local/share/mime/image/x-nikon-nef.xml -/usr/local/share/mime/image/x-olympus-orf.xml -/usr/local/share/mime/image/x-panasonic-rw.xml -/usr/local/share/mime/image/x-panasonic-rw2.xml -/usr/local/share/mime/image/x-pentax-pef.xml -/usr/local/share/mime/image/x-photo-cd.xml -/usr/local/share/mime/image/x-pict.xml -/usr/local/share/mime/image/x-portable-anymap.xml -/usr/local/share/mime/image/x-portable-bitmap.xml -/usr/local/share/mime/image/x-portable-graymap.xml -/usr/local/share/mime/image/x-portable-pixmap.xml -/usr/local/share/mime/image/x-quicktime.xml -/usr/local/share/mime/image/x-rgb.xml -/usr/local/share/mime/image/x-sgi.xml -/usr/local/share/mime/image/x-sigma-x3f.xml -/usr/local/share/mime/image/x-skencil.xml -/usr/local/share/mime/image/x-sony-arw.xml -/usr/local/share/mime/image/x-sony-sr2.xml -/usr/local/share/mime/image/x-sony-srf.xml -/usr/local/share/mime/image/x-sun-raster.xml -/usr/local/share/mime/image/x-tga.xml -/usr/local/share/mime/image/x-tiff-multipage.xml -/usr/local/share/mime/image/x-win-bitmap.xml -/usr/local/share/mime/image/x-xbitmap.xml -/usr/local/share/mime/image/x-xcf.xml -/usr/local/share/mime/image/x-xcursor.xml -/usr/local/share/mime/image/x-xfig.xml -/usr/local/share/mime/image/x-xpixmap.xml -/usr/local/share/mime/image/x-xwindowdump.xml -/usr/local/share/mime/inode/blockdevice.xml -/usr/local/share/mime/inode/chardevice.xml -/usr/local/share/mime/inode/directory.xml -/usr/local/share/mime/inode/fifo.xml -/usr/local/share/mime/inode/mount-point.xml -/usr/local/share/mime/inode/socket.xml -/usr/local/share/mime/inode/symlink.xml -/usr/local/share/mime/magic -/usr/local/share/mime/message/delivery-status.xml -/usr/local/share/mime/message/disposition-notification.xml -/usr/local/share/mime/message/external-body.xml -/usr/local/share/mime/message/news.xml -/usr/local/share/mime/message/partial.xml -/usr/local/share/mime/message/rfc822.xml -/usr/local/share/mime/message/x-gnu-rmail.xml -/usr/local/share/mime/mime.cache -/usr/local/share/mime/model/iges.xml -/usr/local/share/mime/model/stl.xml -/usr/local/share/mime/model/vrml.xml -/usr/local/share/mime/multipart/alternative.xml -/usr/local/share/mime/multipart/appledouble.xml -/usr/local/share/mime/multipart/digest.xml -/usr/local/share/mime/multipart/encrypted.xml -/usr/local/share/mime/multipart/mixed.xml -/usr/local/share/mime/multipart/related.xml -/usr/local/share/mime/multipart/report.xml -/usr/local/share/mime/multipart/signed.xml -/usr/local/share/mime/multipart/x-mixed-replace.xml +/usr/local/share/man/man1/update-mime-database.1.zst /usr/local/share/mime/packages/freedesktop.org.xml -/usr/local/share/mime/subclasses -/usr/local/share/mime/text/cache-manifest.xml -/usr/local/share/mime/text/calendar.xml -/usr/local/share/mime/text/css.xml -/usr/local/share/mime/text/csv-schema.xml -/usr/local/share/mime/text/csv.xml -/usr/local/share/mime/text/enriched.xml -/usr/local/share/mime/text/html.xml -/usr/local/share/mime/text/htmlh.xml -/usr/local/share/mime/text/markdown.xml -/usr/local/share/mime/text/plain.xml -/usr/local/share/mime/text/rfc822-headers.xml -/usr/local/share/mime/text/richtext.xml -/usr/local/share/mime/text/rust.xml -/usr/local/share/mime/text/sgml.xml -/usr/local/share/mime/text/spreadsheet.xml -/usr/local/share/mime/text/tab-separated-values.xml -/usr/local/share/mime/text/troff.xml -/usr/local/share/mime/text/turtle.xml -/usr/local/share/mime/text/vcard.xml -/usr/local/share/mime/text/vnd.graphviz.xml -/usr/local/share/mime/text/vnd.qt.linguist.xml -/usr/local/share/mime/text/vnd.rn-realtext.xml -/usr/local/share/mime/text/vnd.sun.j2me.app-descriptor.xml -/usr/local/share/mime/text/vnd.wap.wml.xml -/usr/local/share/mime/text/vnd.wap.wmlscript.xml -/usr/local/share/mime/text/vtt.xml -/usr/local/share/mime/text/x-adasrc.xml -/usr/local/share/mime/text/x-authors.xml -/usr/local/share/mime/text/x-bibtex.xml -/usr/local/share/mime/text/x-c++hdr.xml -/usr/local/share/mime/text/x-c++src.xml -/usr/local/share/mime/text/x-changelog.xml -/usr/local/share/mime/text/x-chdr.xml -/usr/local/share/mime/text/x-cmake.xml -/usr/local/share/mime/text/x-cobol.xml -/usr/local/share/mime/text/x-copying.xml -/usr/local/share/mime/text/x-credits.xml -/usr/local/share/mime/text/x-csharp.xml -/usr/local/share/mime/text/x-csrc.xml -/usr/local/share/mime/text/x-dbus-service.xml -/usr/local/share/mime/text/x-dcl.xml -/usr/local/share/mime/text/x-dsl.xml -/usr/local/share/mime/text/x-dsrc.xml -/usr/local/share/mime/text/x-eiffel.xml -/usr/local/share/mime/text/x-emacs-lisp.xml -/usr/local/share/mime/text/x-erlang.xml -/usr/local/share/mime/text/x-fortran.xml -/usr/local/share/mime/text/x-genie.xml -/usr/local/share/mime/text/x-gettext-translation-template.xml -/usr/local/share/mime/text/x-gettext-translation.xml -/usr/local/share/mime/text/x-gherkin.xml -/usr/local/share/mime/text/x-go.xml -/usr/local/share/mime/text/x-google-video-pointer.xml -/usr/local/share/mime/text/x-haskell.xml -/usr/local/share/mime/text/x-idl.xml -/usr/local/share/mime/text/x-imelody.xml -/usr/local/share/mime/text/x-install.xml -/usr/local/share/mime/text/x-iptables.xml -/usr/local/share/mime/text/x-java.xml -/usr/local/share/mime/text/x-ldif.xml -/usr/local/share/mime/text/x-lilypond.xml -/usr/local/share/mime/text/x-literate-haskell.xml -/usr/local/share/mime/text/x-log.xml -/usr/local/share/mime/text/x-lua.xml -/usr/local/share/mime/text/x-makefile.xml -/usr/local/share/mime/text/x-matlab.xml -/usr/local/share/mime/text/x-meson.xml -/usr/local/share/mime/text/x-microdvd.xml -/usr/local/share/mime/text/x-moc.xml -/usr/local/share/mime/text/x-modelica.xml -/usr/local/share/mime/text/x-mof.xml -/usr/local/share/mime/text/x-mpsub.xml -/usr/local/share/mime/text/x-mrml.xml -/usr/local/share/mime/text/x-ms-regedit.xml -/usr/local/share/mime/text/x-mup.xml -/usr/local/share/mime/text/x-nfo.xml -/usr/local/share/mime/text/x-objcsrc.xml -/usr/local/share/mime/text/x-ocaml.xml -/usr/local/share/mime/text/x-ocl.xml -/usr/local/share/mime/text/x-ooc.xml -/usr/local/share/mime/text/x-opencl-src.xml -/usr/local/share/mime/text/x-opml+xml.xml -/usr/local/share/mime/text/x-pascal.xml -/usr/local/share/mime/text/x-patch.xml -/usr/local/share/mime/text/x-python.xml -/usr/local/share/mime/text/x-python3.xml -/usr/local/share/mime/text/x-qml.xml -/usr/local/share/mime/text/x-readme.xml -/usr/local/share/mime/text/x-reject.xml -/usr/local/share/mime/text/x-rpm-spec.xml -/usr/local/share/mime/text/x-sass.xml -/usr/local/share/mime/text/x-scala.xml -/usr/local/share/mime/text/x-scheme.xml -/usr/local/share/mime/text/x-scons.xml -/usr/local/share/mime/text/x-scss.xml -/usr/local/share/mime/text/x-setext.xml -/usr/local/share/mime/text/x-ssa.xml -/usr/local/share/mime/text/x-subviewer.xml -/usr/local/share/mime/text/x-svhdr.xml -/usr/local/share/mime/text/x-svsrc.xml -/usr/local/share/mime/text/x-systemd-unit.xml -/usr/local/share/mime/text/x-tcl.xml -/usr/local/share/mime/text/x-tex.xml -/usr/local/share/mime/text/x-texinfo.xml -/usr/local/share/mime/text/x-troff-me.xml -/usr/local/share/mime/text/x-troff-mm.xml -/usr/local/share/mime/text/x-troff-ms.xml -/usr/local/share/mime/text/x-twig.xml -/usr/local/share/mime/text/x-txt2tags.xml -/usr/local/share/mime/text/x-uil.xml -/usr/local/share/mime/text/x-uri.xml -/usr/local/share/mime/text/x-uuencode.xml -/usr/local/share/mime/text/x-vala.xml -/usr/local/share/mime/text/x-verilog.xml -/usr/local/share/mime/text/x-vhdl.xml -/usr/local/share/mime/text/x-xmi.xml -/usr/local/share/mime/text/x-xslfo.xml -/usr/local/share/mime/text/x.gcode.xml -/usr/local/share/mime/text/xmcd.xml -/usr/local/share/mime/treemagic -/usr/local/share/mime/types -/usr/local/share/mime/version -/usr/local/share/mime/video/3gpp.xml -/usr/local/share/mime/video/3gpp2.xml -/usr/local/share/mime/video/annodex.xml -/usr/local/share/mime/video/dv.xml -/usr/local/share/mime/video/isivideo.xml -/usr/local/share/mime/video/mj2.xml -/usr/local/share/mime/video/mp2t.xml -/usr/local/share/mime/video/mp4.xml -/usr/local/share/mime/video/mpeg.xml -/usr/local/share/mime/video/ogg.xml -/usr/local/share/mime/video/quicktime.xml -/usr/local/share/mime/video/vnd.mpegurl.xml -/usr/local/share/mime/video/vnd.rn-realvideo.xml -/usr/local/share/mime/video/vnd.vivo.xml -/usr/local/share/mime/video/wavelet.xml -/usr/local/share/mime/video/webm.xml -/usr/local/share/mime/video/x-anim.xml -/usr/local/share/mime/video/x-flic.xml -/usr/local/share/mime/video/x-flv.xml -/usr/local/share/mime/video/x-javafx.xml -/usr/local/share/mime/video/x-matroska-3d.xml -/usr/local/share/mime/video/x-matroska.xml -/usr/local/share/mime/video/x-mjpeg.xml -/usr/local/share/mime/video/x-mng.xml -/usr/local/share/mime/video/x-ms-wmv.xml -/usr/local/share/mime/video/x-msvideo.xml -/usr/local/share/mime/video/x-nsv.xml -/usr/local/share/mime/video/x-ogm+ogg.xml -/usr/local/share/mime/video/x-sgi-movie.xml -/usr/local/share/mime/video/x-theora+ogg.xml -/usr/local/share/mime/x-content/audio-cdda.xml -/usr/local/share/mime/x-content/audio-dvd.xml -/usr/local/share/mime/x-content/audio-player.xml -/usr/local/share/mime/x-content/blank-bd.xml -/usr/local/share/mime/x-content/blank-cd.xml -/usr/local/share/mime/x-content/blank-dvd.xml -/usr/local/share/mime/x-content/blank-hddvd.xml -/usr/local/share/mime/x-content/ebook-reader.xml -/usr/local/share/mime/x-content/image-dcf.xml -/usr/local/share/mime/x-content/image-picturecd.xml -/usr/local/share/mime/x-content/software.xml -/usr/local/share/mime/x-content/unix-software.xml -/usr/local/share/mime/x-content/video-bluray.xml -/usr/local/share/mime/x-content/video-dvd.xml -/usr/local/share/mime/x-content/video-hddvd.xml -/usr/local/share/mime/x-content/video-svcd.xml -/usr/local/share/mime/x-content/video-vcd.xml -/usr/local/share/mime/x-content/win32-software.xml -/usr/local/share/mime/x-epoc/x-sisx-app.xml /usr/local/share/pkgconfig/shared-mime-info.pc diff --git a/manifest/armv7l/s/sphinx.filelist b/manifest/armv7l/s/sphinx.filelist index 351f73019..26ee80c37 100644 --- a/manifest/armv7l/s/sphinx.filelist +++ b/manifest/armv7l/s/sphinx.filelist @@ -2,13 +2,13 @@ /usr/local/bin/sphinx-autogen /usr/local/bin/sphinx-build /usr/local/bin/sphinx-quickstart -/usr/local/lib/python3.12/site-packages/sphinx-7.4.5.dist-info/INSTALLER -/usr/local/lib/python3.12/site-packages/sphinx-7.4.5.dist-info/LICENSE.rst -/usr/local/lib/python3.12/site-packages/sphinx-7.4.5.dist-info/METADATA -/usr/local/lib/python3.12/site-packages/sphinx-7.4.5.dist-info/RECORD -/usr/local/lib/python3.12/site-packages/sphinx-7.4.5.dist-info/REQUESTED -/usr/local/lib/python3.12/site-packages/sphinx-7.4.5.dist-info/WHEEL -/usr/local/lib/python3.12/site-packages/sphinx-7.4.5.dist-info/entry_points.txt +/usr/local/lib/python3.12/site-packages/sphinx-8.0.2.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/sphinx-8.0.2.dist-info/LICENSE.rst +/usr/local/lib/python3.12/site-packages/sphinx-8.0.2.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/sphinx-8.0.2.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/sphinx-8.0.2.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/sphinx-8.0.2.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/sphinx-8.0.2.dist-info/entry_points.txt /usr/local/lib/python3.12/site-packages/sphinx/__init__.py /usr/local/lib/python3.12/site-packages/sphinx/__main__.py /usr/local/lib/python3.12/site-packages/sphinx/__pycache__/__init__.cpython-312.pyc @@ -548,10 +548,8 @@ /usr/local/lib/python3.12/site-packages/sphinx/templates/latex/sphinxmessages.sty.jinja /usr/local/lib/python3.12/site-packages/sphinx/templates/latex/tabular.tex.jinja /usr/local/lib/python3.12/site-packages/sphinx/templates/latex/tabulary.tex.jinja -/usr/local/lib/python3.12/site-packages/sphinx/templates/quickstart/Makefile.jinja /usr/local/lib/python3.12/site-packages/sphinx/templates/quickstart/Makefile.new.jinja /usr/local/lib/python3.12/site-packages/sphinx/templates/quickstart/conf.py.jinja -/usr/local/lib/python3.12/site-packages/sphinx/templates/quickstart/make.bat.jinja /usr/local/lib/python3.12/site-packages/sphinx/templates/quickstart/make.bat.new.jinja /usr/local/lib/python3.12/site-packages/sphinx/templates/quickstart/root_doc.rst.jinja /usr/local/lib/python3.12/site-packages/sphinx/templates/texinfo/Makefile @@ -711,6 +709,7 @@ /usr/local/lib/python3.12/site-packages/sphinx/util/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/sphinx/util/__pycache__/_io.cpython-312.pyc /usr/local/lib/python3.12/site-packages/sphinx/util/__pycache__/_pathlib.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/sphinx/util/__pycache__/_timestamps.cpython-312.pyc /usr/local/lib/python3.12/site-packages/sphinx/util/__pycache__/build_phase.cpython-312.pyc /usr/local/lib/python3.12/site-packages/sphinx/util/__pycache__/cfamily.cpython-312.pyc /usr/local/lib/python3.12/site-packages/sphinx/util/__pycache__/console.cpython-312.pyc @@ -742,6 +741,7 @@ /usr/local/lib/python3.12/site-packages/sphinx/util/__pycache__/typing.cpython-312.pyc /usr/local/lib/python3.12/site-packages/sphinx/util/_io.py /usr/local/lib/python3.12/site-packages/sphinx/util/_pathlib.py +/usr/local/lib/python3.12/site-packages/sphinx/util/_timestamps.py /usr/local/lib/python3.12/site-packages/sphinx/util/build_phase.py /usr/local/lib/python3.12/site-packages/sphinx/util/cfamily.py /usr/local/lib/python3.12/site-packages/sphinx/util/console.py diff --git a/manifest/armv7l/t/tdb.filelist b/manifest/armv7l/t/tdb.filelist index 3bac620de..5afb010c6 100644 --- a/manifest/armv7l/t/tdb.filelist +++ b/manifest/armv7l/t/tdb.filelist @@ -5,7 +5,7 @@ /usr/local/include/tdb.h /usr/local/lib/libtdb.so /usr/local/lib/libtdb.so.1 -/usr/local/lib/libtdb.so.1.4.10 +/usr/local/lib/libtdb.so.1.4.12 /usr/local/lib/pkgconfig/tdb.pc /usr/local/lib/python3.12/site-packages/_tdb_text.py /usr/local/lib/python3.12/site-packages/tdb.cpython-312-arm-linux-gnueabihf.so diff --git a/manifest/armv7l/t/tepl_6.filelist b/manifest/armv7l/t/tepl_6.filelist index 5ff32360d..4059be86b 100644 --- a/manifest/armv7l/t/tepl_6.filelist +++ b/manifest/armv7l/t/tepl_6.filelist @@ -1,80 +1,81 @@ -/usr/local/include/tepl-6/tepl/tepl-abstract-factory.h -/usr/local/include/tepl-6/tepl/tepl-application-window.h -/usr/local/include/tepl-6/tepl/tepl-application.h -/usr/local/include/tepl-6/tepl/tepl-buffer.h -/usr/local/include/tepl-6/tepl/tepl-encoding-iconv.h -/usr/local/include/tepl-6/tepl/tepl-encoding.h -/usr/local/include/tepl-6/tepl/tepl-enum-types.h -/usr/local/include/tepl-6/tepl/tepl-file-chooser.h -/usr/local/include/tepl-6/tepl/tepl-file-loader.h -/usr/local/include/tepl-6/tepl/tepl-file-saver.h -/usr/local/include/tepl-6/tepl/tepl-file.h -/usr/local/include/tepl-6/tepl/tepl-fold-region.h -/usr/local/include/tepl-6/tepl/tepl-goto-line-bar.h -/usr/local/include/tepl-6/tepl/tepl-gutter-renderer-folds.h -/usr/local/include/tepl-6/tepl/tepl-info-bar.h -/usr/local/include/tepl-6/tepl/tepl-init.h -/usr/local/include/tepl-6/tepl/tepl-io-error-info-bars.h -/usr/local/include/tepl-6/tepl/tepl-iter.h -/usr/local/include/tepl-6/tepl/tepl-language-chooser-dialog.h -/usr/local/include/tepl-6/tepl/tepl-language-chooser-widget.h -/usr/local/include/tepl-6/tepl/tepl-language-chooser.h -/usr/local/include/tepl-6/tepl/tepl-line-column-indicator.h -/usr/local/include/tepl-6/tepl/tepl-macros.h -/usr/local/include/tepl-6/tepl/tepl-menu-shell.h -/usr/local/include/tepl-6/tepl/tepl-metadata-manager.h -/usr/local/include/tepl-6/tepl/tepl-metadata.h -/usr/local/include/tepl-6/tepl/tepl-notebook.h -/usr/local/include/tepl-6/tepl/tepl-overwrite-indicator.h -/usr/local/include/tepl-6/tepl/tepl-panel-container.h -/usr/local/include/tepl-6/tepl/tepl-panel-item.h -/usr/local/include/tepl-6/tepl/tepl-panel-switcher-menu.h -/usr/local/include/tepl-6/tepl/tepl-panel.h -/usr/local/include/tepl-6/tepl/tepl-panel1.h -/usr/local/include/tepl-6/tepl/tepl-pango.h -/usr/local/include/tepl-6/tepl/tepl-prefs-dialog.h -/usr/local/include/tepl-6/tepl/tepl-prefs.h -/usr/local/include/tepl-6/tepl/tepl-progress-info-bar.h -/usr/local/include/tepl-6/tepl/tepl-settings.h -/usr/local/include/tepl-6/tepl/tepl-signal-group.h -/usr/local/include/tepl-6/tepl/tepl-space-drawer-prefs.h -/usr/local/include/tepl-6/tepl/tepl-status-menu-button.h -/usr/local/include/tepl-6/tepl/tepl-style-scheme-chooser-widget.h -/usr/local/include/tepl-6/tepl/tepl-tab-group.h -/usr/local/include/tepl-6/tepl/tepl-tab-label.h -/usr/local/include/tepl-6/tepl/tepl-tab-loading.h -/usr/local/include/tepl-6/tepl/tepl-tab-saving.h -/usr/local/include/tepl-6/tepl/tepl-tab.h -/usr/local/include/tepl-6/tepl/tepl-utils.h -/usr/local/include/tepl-6/tepl/tepl-view.h -/usr/local/include/tepl-6/tepl/tepl.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-abstract-factory.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-application-window.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-application.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-buffer.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-encoding-iconv.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-encoding.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-enum-types.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-file-chooser.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-file-loader.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-file-saver.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-file.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-fold-region.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-goto-line-bar.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-gutter-renderer-folds.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-info-bar.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-init.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-io-error-info-bars.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-iter.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-language-chooser-dialog.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-language-chooser-widget.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-language-chooser.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-line-column-indicator.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-menu-shell.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-metadata-manager.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-metadata.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-notebook.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-object-counters.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-overwrite-indicator.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-panel-container.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-panel-item.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-panel-switcher-menu.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-panel-switcher-notebook.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-panel.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-panel1.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-pango.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-prefs-dialog.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-prefs.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-progress-info-bar.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-settings.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-signal-group.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-space-drawer-prefs.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-status-menu-button.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-style-scheme-chooser-widget.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-tab-group.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-tab-label.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-tab-loading.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-tab-saving.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-tab.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-utils.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-view.h +/usr/local/include/libgedit-tepl-6/tepl/tepl.h /usr/local/lib/girepository-1.0/Tepl-6.typelib -/usr/local/lib/libtepl-6.so -/usr/local/lib/libtepl-6.so.4 -/usr/local/lib/pkgconfig/tepl-6.pc +/usr/local/lib/libgedit-tepl-6.so +/usr/local/lib/libgedit-tepl-6.so.0 +/usr/local/lib/pkgconfig/libgedit-tepl-6.pc /usr/local/share/gir-1.0/Tepl-6.gir -/usr/local/share/locale/ca/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/cs/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/da/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/de/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/el/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/en_GB/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/es/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/eu/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/fr/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/fur/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/hr/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/hu/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/id/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/ja/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/nl/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/pl/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/pt_BR/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/ro/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/ru/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/sl/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/sr/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/sv/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/tr/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/uk/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/zh_CN/LC_MESSAGES/tepl-6.mo +/usr/local/share/locale/ca/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/cs/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/da/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/de/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/el/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/en_GB/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/es/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/eu/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/fr/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/fur/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/hr/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/hu/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/id/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/ja/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/nl/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/pl/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/pt_BR/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/ro/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/ru/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/sl/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/sr/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/sv/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/tr/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/uk/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/zh_CN/LC_MESSAGES/libgedit-tepl-6.mo diff --git a/manifest/armv7l/t/tesseract.filelist b/manifest/armv7l/t/tesseract.filelist index 0e8a46988..03e8c153f 100644 --- a/manifest/armv7l/t/tesseract.filelist +++ b/manifest/armv7l/t/tesseract.filelist @@ -32,7 +32,7 @@ /usr/local/lib/cmake/tesseract/TesseractTargets.cmake /usr/local/lib/libcommon_training.so /usr/local/lib/libtesseract.so -/usr/local/lib/libtesseract.so.5.3.3 +/usr/local/lib/libtesseract.so.5.4.1 /usr/local/lib/libunicharset_training.so /usr/local/lib/pkgconfig/tesseract.pc /usr/local/share/tessdata/configs/alto @@ -53,6 +53,7 @@ /usr/local/share/tessdata/configs/lstmbox /usr/local/share/tessdata/configs/lstmdebug /usr/local/share/tessdata/configs/makebox +/usr/local/share/tessdata/configs/page /usr/local/share/tessdata/configs/pdf /usr/local/share/tessdata/configs/quiet /usr/local/share/tessdata/configs/rebox diff --git a/manifest/armv7l/t/tracker3.filelist b/manifest/armv7l/t/tinysparql.filelist similarity index 81% rename from manifest/armv7l/t/tracker3.filelist rename to manifest/armv7l/t/tinysparql.filelist index 32bef1411..8681d80a9 100644 --- a/manifest/armv7l/t/tracker3.filelist +++ b/manifest/armv7l/t/tinysparql.filelist @@ -1,4 +1,10 @@ /usr/local/bin/tracker3 +/usr/local/bin/tracker3-endpoint +/usr/local/bin/tracker3-export +/usr/local/bin/tracker3-help +/usr/local/bin/tracker3-import +/usr/local/bin/tracker3-sparql +/usr/local/bin/tracker3-sql /usr/local/include/tracker-3.0/libtracker-sparql/tracker-batch.h /usr/local/include/tracker-3.0/libtracker-sparql/tracker-connection.h /usr/local/include/tracker-3.0/libtracker-sparql/tracker-cursor.h @@ -20,7 +26,7 @@ /usr/local/lib/girepository-1.0/Tracker-3.0.typelib /usr/local/lib/libtracker-sparql-3.0.so /usr/local/lib/libtracker-sparql-3.0.so.0 -/usr/local/lib/libtracker-sparql-3.0.so.0.600.0 +/usr/local/lib/libtracker-sparql-3.0.so.0.703.0 /usr/local/lib/pkgconfig/tracker-sparql-3.0.pc /usr/local/lib/pkgconfig/tracker-testutils-3.0.pc /usr/local/lib/tracker-3.0/libtracker-http-soup2.so @@ -40,12 +46,6 @@ /usr/local/lib/tracker-3.0/trackertestutils/tracker-await-file /usr/local/lib/tracker-3.0/trackertestutils/tracker-sandbox /usr/local/libexec/tracker-xdg-portal-3 -/usr/local/libexec/tracker3/endpoint -/usr/local/libexec/tracker3/export -/usr/local/libexec/tracker3/help -/usr/local/libexec/tracker3/import -/usr/local/libexec/tracker3/sparql -/usr/local/libexec/tracker3/sql /usr/local/share/bash-completion/completions/tracker3 /usr/local/share/dbus-1/services/org.freedesktop.portal.Tracker.service /usr/local/share/gir-1.0/Tracker-3.0.gir @@ -81,6 +81,7 @@ /usr/local/share/locale/it/LC_MESSAGES/tracker3.mo /usr/local/share/locale/ja/LC_MESSAGES/tracker3.mo /usr/local/share/locale/ka/LC_MESSAGES/tracker3.mo +/usr/local/share/locale/kab/LC_MESSAGES/tracker3.mo /usr/local/share/locale/kk/LC_MESSAGES/tracker3.mo /usr/local/share/locale/ko/LC_MESSAGES/tracker3.mo /usr/local/share/locale/lt/LC_MESSAGES/tracker3.mo @@ -113,23 +114,11 @@ /usr/local/share/locale/zh_CN/LC_MESSAGES/tracker3.mo /usr/local/share/locale/zh_HK/LC_MESSAGES/tracker3.mo /usr/local/share/locale/zh_TW/LC_MESSAGES/tracker3.mo -/usr/local/share/tracker3/ontologies/nepomuk/30-nie.description -/usr/local/share/tracker3/ontologies/nepomuk/30-nie.ontology -/usr/local/share/tracker3/ontologies/nepomuk/31-nao.description -/usr/local/share/tracker3/ontologies/nepomuk/31-nao.ontology -/usr/local/share/tracker3/ontologies/nepomuk/32-nco.description -/usr/local/share/tracker3/ontologies/nepomuk/32-nco.ontology -/usr/local/share/tracker3/ontologies/nepomuk/33-nfo.description -/usr/local/share/tracker3/ontologies/nepomuk/33-nfo.ontology -/usr/local/share/tracker3/ontologies/nepomuk/38-nmm.description -/usr/local/share/tracker3/ontologies/nepomuk/38-nmm.ontology -/usr/local/share/tracker3/ontologies/nepomuk/41-mfo.description -/usr/local/share/tracker3/ontologies/nepomuk/41-mfo.ontology -/usr/local/share/tracker3/ontologies/nepomuk/90-tracker.description -/usr/local/share/tracker3/ontologies/nepomuk/90-tracker.ontology -/usr/local/share/tracker3/ontologies/nepomuk/92-slo.description -/usr/local/share/tracker3/ontologies/nepomuk/92-slo.ontology -/usr/local/share/tracker3/ontologies/nepomuk/93-libosinfo.description -/usr/local/share/tracker3/ontologies/nepomuk/93-libosinfo.ontology +/usr/local/share/tracker3/commands/tracker-endpoint.desktop +/usr/local/share/tracker3/commands/tracker-export.desktop +/usr/local/share/tracker3/commands/tracker-help.desktop +/usr/local/share/tracker3/commands/tracker-import.desktop +/usr/local/share/tracker3/commands/tracker-sparql.desktop +/usr/local/share/tracker3/commands/tracker-sql.desktop /usr/local/share/vala/vapi/tracker-sparql-3.0.deps /usr/local/share/vala/vapi/tracker-sparql-3.0.vapi diff --git a/manifest/armv7l/u/uriparser.filelist b/manifest/armv7l/u/uriparser.filelist new file mode 100644 index 000000000..7fa569ea4 --- /dev/null +++ b/manifest/armv7l/u/uriparser.filelist @@ -0,0 +1,15 @@ +/usr/local/bin/uriparse +/usr/local/include/uriparser/Uri.h +/usr/local/include/uriparser/UriBase.h +/usr/local/include/uriparser/UriDefsAnsi.h +/usr/local/include/uriparser/UriDefsConfig.h +/usr/local/include/uriparser/UriDefsUnicode.h +/usr/local/include/uriparser/UriIp4.h +/usr/local/lib/cmake/uriparser-0.9.8/uriparser-config-version.cmake +/usr/local/lib/cmake/uriparser-0.9.8/uriparser-config.cmake +/usr/local/lib/cmake/uriparser-0.9.8/uriparser-release.cmake +/usr/local/lib/cmake/uriparser-0.9.8/uriparser.cmake +/usr/local/lib/liburiparser.so +/usr/local/lib/liburiparser.so.1 +/usr/local/lib/liburiparser.so.1.0.31 +/usr/local/lib/pkgconfig/liburiparser.pc diff --git a/manifest/armv7l/v/vte.filelist b/manifest/armv7l/v/vte.filelist index 610791ee2..b332e572a 100644 --- a/manifest/armv7l/v/vte.filelist +++ b/manifest/armv7l/v/vte.filelist @@ -12,6 +12,7 @@ /usr/local/include/vte-2.91-gtk4/vte/vteterminal.h /usr/local/include/vte-2.91-gtk4/vte/vtetypebuiltins-gtk4.h /usr/local/include/vte-2.91-gtk4/vte/vtetypebuiltins.h +/usr/local/include/vte-2.91-gtk4/vte/vteuuid.h /usr/local/include/vte-2.91-gtk4/vte/vteversion.h /usr/local/include/vte-2.91/vte/vte.h /usr/local/include/vte-2.91/vte/vtedeprecated.h @@ -23,12 +24,13 @@ /usr/local/include/vte-2.91/vte/vteterminal.h /usr/local/include/vte-2.91/vte/vtetypebuiltins-gtk3.h /usr/local/include/vte-2.91/vte/vtetypebuiltins.h +/usr/local/include/vte-2.91/vte/vteuuid.h /usr/local/include/vte-2.91/vte/vteversion.h /usr/local/lib/libvte-2.91-gtk4.so /usr/local/lib/libvte-2.91-gtk4.so.0 /usr/local/lib/libvte-2.91.so /usr/local/lib/libvte-2.91.so.0 -/usr/local/lib/libvte-2.91.so.0.7592.0 +/usr/local/lib/libvte-2.91.so.0.7791.0 /usr/local/lib/pkgconfig/vte-2.91-gtk4.pc /usr/local/lib/pkgconfig/vte-2.91.pc /usr/local/libexec/vte-urlencode-cwd @@ -82,6 +84,7 @@ /usr/local/share/locale/it/LC_MESSAGES/vte-2.91.mo /usr/local/share/locale/ja/LC_MESSAGES/vte-2.91.mo /usr/local/share/locale/ka/LC_MESSAGES/vte-2.91.mo +/usr/local/share/locale/kab/LC_MESSAGES/vte-2.91.mo /usr/local/share/locale/kk/LC_MESSAGES/vte-2.91.mo /usr/local/share/locale/kn/LC_MESSAGES/vte-2.91.mo /usr/local/share/locale/ko/LC_MESSAGES/vte-2.91.mo @@ -133,3 +136,4 @@ /usr/local/share/locale/zh_CN/LC_MESSAGES/vte-2.91.mo /usr/local/share/locale/zh_HK/LC_MESSAGES/vte-2.91.mo /usr/local/share/locale/zh_TW/LC_MESSAGES/vte-2.91.mo +/usr/local/share/vte-2.91/terminfo/x/xterm-256color diff --git a/manifest/armv7l/x/xfsprogs.filelist b/manifest/armv7l/x/xfsprogs.filelist index 76597cab4..0f078e252 100644 --- a/manifest/armv7l/x/xfsprogs.filelist +++ b/manifest/armv7l/x/xfsprogs.filelist @@ -15,6 +15,7 @@ /usr/local/lib/libhandle.so /usr/local/lib/libhandle.so.1 /usr/local/lib/libhandle.so.1.0.3 +/usr/local/lib/udev/rules.d/64-xfs.rules /usr/local/sbin/fsck.xfs /usr/local/sbin/mkfs.xfs /usr/local/sbin/xfs_admin diff --git a/manifest/armv7l/x/xmlto.filelist b/manifest/armv7l/x/xmlto.filelist index dd4b4c9a8..5d636573b 100644 --- a/manifest/armv7l/x/xmlto.filelist +++ b/manifest/armv7l/x/xmlto.filelist @@ -1,7 +1,7 @@ /usr/local/bin/xmlif /usr/local/bin/xmlto -/usr/local/share/man/man1/xmlif.1 -/usr/local/share/man/man1/xmlto.1 +/usr/local/share/man/man1/xmlif.1.zst +/usr/local/share/man/man1/xmlto.1.zst /usr/local/share/xmlto/format/docbook/awt /usr/local/share/xmlto/format/docbook/dvi /usr/local/share/xmlto/format/docbook/epub diff --git a/manifest/i686/d/dehtml.filelist b/manifest/i686/d/dehtml.filelist index cd0d8f24e..987f0a8bd 100644 --- a/manifest/i686/d/dehtml.filelist +++ b/manifest/i686/d/dehtml.filelist @@ -1,5 +1,5 @@ /usr/local/bin/dehtml /usr/local/share/locale/de/LC_MESSAGES/dehtml.mo /usr/local/share/locale/nl/LC_MESSAGES/dehtml.mo -/usr/local/share/man/de/man1/dehtml.1.gz -/usr/local/share/man/man1/dehtml.1.gz +/usr/local/share/man/de/man1/dehtml.1.zst +/usr/local/share/man/man1/dehtml.1.zst diff --git a/manifest/i686/g/glib.filelist b/manifest/i686/g/glib.filelist index a34581978..b84e3f3fa 100644 --- a/manifest/i686/g/glib.filelist +++ b/manifest/i686/g/glib.filelist @@ -324,23 +324,23 @@ /usr/local/lib/glib-2.0/include/glibconfig.h /usr/local/lib/libgio-2.0.so /usr/local/lib/libgio-2.0.so.0 -/usr/local/lib/libgio-2.0.so.0.8000.0 +/usr/local/lib/libgio-2.0.so.0.8101.0 /usr/local/lib/libgirepository-2.0.so /usr/local/lib/libgirepository-2.0.so.0 -/usr/local/lib/libgirepository-2.0.so.0.8000.0 +/usr/local/lib/libgirepository-2.0.so.0.8101.0 /usr/local/lib/libglib-2.0.la /usr/local/lib/libglib-2.0.so /usr/local/lib/libglib-2.0.so.0 -/usr/local/lib/libglib-2.0.so.0.8000.0 +/usr/local/lib/libglib-2.0.so.0.8101.0 /usr/local/lib/libgmodule-2.0.so /usr/local/lib/libgmodule-2.0.so.0 -/usr/local/lib/libgmodule-2.0.so.0.8000.0 +/usr/local/lib/libgmodule-2.0.so.0.8101.0 /usr/local/lib/libgobject-2.0.so /usr/local/lib/libgobject-2.0.so.0 -/usr/local/lib/libgobject-2.0.so.0.8000.0 +/usr/local/lib/libgobject-2.0.so.0.8101.0 /usr/local/lib/libgthread-2.0.so /usr/local/lib/libgthread-2.0.so.0 -/usr/local/lib/libgthread-2.0.so.0.8000.0 +/usr/local/lib/libgthread-2.0.so.0.8101.0 /usr/local/lib/pkgconfig/gio-2.0.pc /usr/local/lib/pkgconfig/gio-unix-2.0.pc /usr/local/lib/pkgconfig/girepository-2.0.pc @@ -359,8 +359,8 @@ /usr/local/share/bash-completion/completions/gio /usr/local/share/bash-completion/completions/gresource /usr/local/share/bash-completion/completions/gsettings -/usr/local/share/gdb/auto-load/usr/local/lib/libglib-2.0.so.0.8000.0-gdb.py -/usr/local/share/gdb/auto-load/usr/local/lib/libgobject-2.0.so.0.8000.0-gdb.py +/usr/local/share/gdb/auto-load/usr/local/lib/libglib-2.0.so.0.8101.0-gdb.py +/usr/local/share/gdb/auto-load/usr/local/lib/libgobject-2.0.so.0.8101.0-gdb.py /usr/local/share/gettext/its/gschema.its /usr/local/share/gettext/its/gschema.loc /usr/local/share/glib-2.0/codegen/__init__.py @@ -427,6 +427,7 @@ /usr/local/share/locale/it/LC_MESSAGES/glib20.mo /usr/local/share/locale/ja/LC_MESSAGES/glib20.mo /usr/local/share/locale/ka/LC_MESSAGES/glib20.mo +/usr/local/share/locale/kab/LC_MESSAGES/glib20.mo /usr/local/share/locale/kk/LC_MESSAGES/glib20.mo /usr/local/share/locale/kn/LC_MESSAGES/glib20.mo /usr/local/share/locale/ko/LC_MESSAGES/glib20.mo diff --git a/manifest/i686/i/icu4c.filelist b/manifest/i686/i/icu4c.filelist index 2d035f6ac..c69a9fcbe 100644 --- a/manifest/i686/i/icu4c.filelist +++ b/manifest/i686/i/icu4c.filelist @@ -65,6 +65,12 @@ /usr/local/include/unicode/measfmt.h /usr/local/include/unicode/measunit.h /usr/local/include/unicode/measure.h +/usr/local/include/unicode/messageformat2.h +/usr/local/include/unicode/messageformat2_arguments.h +/usr/local/include/unicode/messageformat2_data_model.h +/usr/local/include/unicode/messageformat2_data_model_names.h +/usr/local/include/unicode/messageformat2_formattable.h +/usr/local/include/unicode/messageformat2_function_registry.h /usr/local/include/unicode/messagepattern.h /usr/local/include/unicode/msgfmt.h /usr/local/include/unicode/normalizer2.h @@ -207,41 +213,35 @@ /usr/local/include/unicode/uvernum.h /usr/local/include/unicode/uversion.h /usr/local/include/unicode/vtzone.h -/usr/local/lib/icu/74.2/Makefile.inc -/usr/local/lib/icu/74.2/pkgdata.inc +/usr/local/lib/icu/75.1/Makefile.inc +/usr/local/lib/icu/75.1/pkgdata.inc /usr/local/lib/icu/Makefile.inc /usr/local/lib/icu/current /usr/local/lib/icu/pkgdata.inc -/usr/local/lib/libicudata.a /usr/local/lib/libicudata.so -/usr/local/lib/libicudata.so.73 /usr/local/lib/libicudata.so.74 -/usr/local/lib/libicudata.so.74.2 -/usr/local/lib/libicui18n.a +/usr/local/lib/libicudata.so.75 +/usr/local/lib/libicudata.so.75.1 /usr/local/lib/libicui18n.so -/usr/local/lib/libicui18n.so.73 /usr/local/lib/libicui18n.so.74 -/usr/local/lib/libicui18n.so.74.2 -/usr/local/lib/libicuio.a +/usr/local/lib/libicui18n.so.75 +/usr/local/lib/libicui18n.so.75.1 /usr/local/lib/libicuio.so -/usr/local/lib/libicuio.so.73 /usr/local/lib/libicuio.so.74 -/usr/local/lib/libicuio.so.74.2 -/usr/local/lib/libicutest.a +/usr/local/lib/libicuio.so.75 +/usr/local/lib/libicuio.so.75.1 /usr/local/lib/libicutest.so -/usr/local/lib/libicutest.so.73 /usr/local/lib/libicutest.so.74 -/usr/local/lib/libicutest.so.74.2 -/usr/local/lib/libicutu.a +/usr/local/lib/libicutest.so.75 +/usr/local/lib/libicutest.so.75.1 /usr/local/lib/libicutu.so -/usr/local/lib/libicutu.so.73 /usr/local/lib/libicutu.so.74 -/usr/local/lib/libicutu.so.74.2 -/usr/local/lib/libicuuc.a +/usr/local/lib/libicutu.so.75 +/usr/local/lib/libicutu.so.75.1 /usr/local/lib/libicuuc.so -/usr/local/lib/libicuuc.so.73 /usr/local/lib/libicuuc.so.74 -/usr/local/lib/libicuuc.so.74.2 +/usr/local/lib/libicuuc.so.75 +/usr/local/lib/libicuuc.so.75.1 /usr/local/lib/pkgconfig/icu-i18n.pc /usr/local/lib/pkgconfig/icu-io.pc /usr/local/lib/pkgconfig/icu-uc.pc @@ -251,10 +251,10 @@ /usr/local/sbin/gennorm2 /usr/local/sbin/gensprep /usr/local/sbin/icupkg -/usr/local/share/icu/74.2/LICENSE -/usr/local/share/icu/74.2/config/mh-linux -/usr/local/share/icu/74.2/install-sh -/usr/local/share/icu/74.2/mkinstalldirs +/usr/local/share/icu/75.1/LICENSE +/usr/local/share/icu/75.1/config/mh-linux +/usr/local/share/icu/75.1/install-sh +/usr/local/share/icu/75.1/mkinstalldirs /usr/local/share/man/man1/derb.1.zst /usr/local/share/man/man1/genbrk.1.zst /usr/local/share/man/man1/gencfu.1.zst diff --git a/manifest/i686/l/ldb.filelist b/manifest/i686/l/ldb.filelist index 954be380e..c5ca977d2 100644 --- a/manifest/i686/l/ldb.filelist +++ b/manifest/i686/l/ldb.filelist @@ -25,10 +25,10 @@ /usr/local/lib/ldb/modules/ldb/tdb.so /usr/local/lib/libldb.so /usr/local/lib/libldb.so.2 -/usr/local/lib/libldb.so.2.9.0 +/usr/local/lib/libldb.so.2.9.1 /usr/local/lib/libpyldb-util.cpython-312-i386-linux-gnu.so /usr/local/lib/libpyldb-util.cpython-312-i386-linux-gnu.so.2 -/usr/local/lib/libpyldb-util.cpython-312-i386-linux-gnu.so.2.9.0 +/usr/local/lib/libpyldb-util.cpython-312-i386-linux-gnu.so.2.9.1 /usr/local/lib/pkgconfig/ldb.pc /usr/local/lib/pkgconfig/pyldb-util.cpython-312-i386-linux-gnu.pc /usr/local/lib/python3.12/site-packages/_ldb_text.py diff --git a/manifest/i686/l/libabigail.filelist b/manifest/i686/l/libabigail.filelist new file mode 100644 index 000000000..50ddbbee7 --- /dev/null +++ b/manifest/i686/l/libabigail.filelist @@ -0,0 +1,43 @@ +/usr/local/bin/abicompat +/usr/local/bin/abidiff +/usr/local/bin/abidw +/usr/local/bin/abilint +/usr/local/bin/abipkgdiff +/usr/local/bin/kmidiff +/usr/local/include/libabigail/abg-comp-filter.h +/usr/local/include/libabigail/abg-comparison.h +/usr/local/include/libabigail/abg-config.h +/usr/local/include/libabigail/abg-corpus.h +/usr/local/include/libabigail/abg-ctf-reader.h +/usr/local/include/libabigail/abg-cxx-compat.h +/usr/local/include/libabigail/abg-diff-utils.h +/usr/local/include/libabigail/abg-dwarf-reader.h +/usr/local/include/libabigail/abg-elf-based-reader.h +/usr/local/include/libabigail/abg-elf-reader.h +/usr/local/include/libabigail/abg-fe-iface.h +/usr/local/include/libabigail/abg-fwd.h +/usr/local/include/libabigail/abg-hash.h +/usr/local/include/libabigail/abg-ini.h +/usr/local/include/libabigail/abg-interned-str.h +/usr/local/include/libabigail/abg-ir.h +/usr/local/include/libabigail/abg-libxml-utils.h +/usr/local/include/libabigail/abg-reader.h +/usr/local/include/libabigail/abg-regex.h +/usr/local/include/libabigail/abg-reporter.h +/usr/local/include/libabigail/abg-sptr-utils.h +/usr/local/include/libabigail/abg-suppression.h +/usr/local/include/libabigail/abg-tools-utils.h +/usr/local/include/libabigail/abg-traverse.h +/usr/local/include/libabigail/abg-version.h +/usr/local/include/libabigail/abg-viz-common.h +/usr/local/include/libabigail/abg-viz-dot.h +/usr/local/include/libabigail/abg-viz-svg.h +/usr/local/include/libabigail/abg-workers.h +/usr/local/include/libabigail/abg-writer.h +/usr/local/lib/libabigail.la +/usr/local/lib/libabigail.so +/usr/local/lib/libabigail.so.4 +/usr/local/lib/libabigail.so.4.0.0 +/usr/local/lib/libabigail/default.abignore +/usr/local/lib/pkgconfig/libabigail.pc +/usr/local/share/aclocal/abigail.m4 diff --git a/manifest/i686/l/libarchive.filelist b/manifest/i686/l/libarchive.filelist index 9101ca184..3d2bbc4fd 100644 --- a/manifest/i686/l/libarchive.filelist +++ b/manifest/i686/l/libarchive.filelist @@ -8,7 +8,7 @@ /usr/local/lib/libarchive.la /usr/local/lib/libarchive.so /usr/local/lib/libarchive.so.13 -/usr/local/lib/libarchive.so.13.7.2 +/usr/local/lib/libarchive.so.13.7.4 /usr/local/lib/pkgconfig/libarchive.pc /usr/local/share/man/man1/bsdcat.1.zst /usr/local/share/man/man1/bsdcpio.1.zst diff --git a/manifest/i686/l/libcdr.filelist b/manifest/i686/l/libcdr.filelist index e5dc28932..b66adb1a1 100644 --- a/manifest/i686/l/libcdr.filelist +++ b/manifest/i686/l/libcdr.filelist @@ -173,6 +173,7 @@ /usr/local/share/doc/libcdr/html/dir_bfccd401955b95cf8c75461437045ac0.html /usr/local/share/doc/libcdr/html/dir_c85d3e3c5052e9ad9ce18c6863244a25.html /usr/local/share/doc/libcdr/html/doxygen.css +/usr/local/share/doc/libcdr/html/doxygen_crawl.html /usr/local/share/doc/libcdr/html/files.html /usr/local/share/doc/libcdr/html/functions.html /usr/local/share/doc/libcdr/html/functions_a.html diff --git a/manifest/i686/l/libmbedtls.filelist b/manifest/i686/l/libmbedtls.filelist index 568a3889a..040302cb3 100644 --- a/manifest/i686/l/libmbedtls.filelist +++ b/manifest/i686/l/libmbedtls.filelist @@ -26,6 +26,7 @@ /usr/local/bin/key_ladder_demo.sh /usr/local/bin/load_roots /usr/local/bin/md_hmac_demo +/usr/local/bin/metatest /usr/local/bin/mini_client /usr/local/bin/mpi_demo /usr/local/bin/pem2der @@ -34,6 +35,7 @@ /usr/local/bin/pk_sign /usr/local/bin/pk_verify /usr/local/bin/psa_constant_names +/usr/local/bin/psa_hash /usr/local/bin/query_compile_time_config /usr/local/bin/query_included_headers /usr/local/bin/req_app @@ -56,12 +58,30 @@ /usr/local/bin/strerror /usr/local/bin/udp_proxy /usr/local/bin/zeroize +/usr/local/include/everest/Hacl_Curve25519.h +/usr/local/include/everest/everest.h +/usr/local/include/everest/kremlib.h +/usr/local/include/everest/kremlib/FStar_UInt128.h +/usr/local/include/everest/kremlib/FStar_UInt64_FStar_UInt32_FStar_UInt16_FStar_UInt8.h +/usr/local/include/everest/kremlin/c_endianness.h +/usr/local/include/everest/kremlin/internal/builtin.h +/usr/local/include/everest/kremlin/internal/callconv.h +/usr/local/include/everest/kremlin/internal/compat.h +/usr/local/include/everest/kremlin/internal/debug.h +/usr/local/include/everest/kremlin/internal/target.h +/usr/local/include/everest/kremlin/internal/types.h +/usr/local/include/everest/kremlin/internal/wasmsupport.h +/usr/local/include/everest/vs2013/Hacl_Curve25519.h +/usr/local/include/everest/vs2013/inttypes.h +/usr/local/include/everest/vs2013/stdbool.h +/usr/local/include/everest/x25519.h /usr/local/include/mbedtls/aes.h /usr/local/include/mbedtls/aria.h /usr/local/include/mbedtls/asn1.h /usr/local/include/mbedtls/asn1write.h /usr/local/include/mbedtls/base64.h /usr/local/include/mbedtls/bignum.h +/usr/local/include/mbedtls/block_cipher.h /usr/local/include/mbedtls/build_info.h /usr/local/include/mbedtls/camellia.h /usr/local/include/mbedtls/ccm.h @@ -71,6 +91,12 @@ /usr/local/include/mbedtls/cipher.h /usr/local/include/mbedtls/cmac.h /usr/local/include/mbedtls/compat-2.x.h +/usr/local/include/mbedtls/config_adjust_legacy_crypto.h +/usr/local/include/mbedtls/config_adjust_legacy_from_psa.h +/usr/local/include/mbedtls/config_adjust_psa_from_legacy.h +/usr/local/include/mbedtls/config_adjust_psa_superset_legacy.h +/usr/local/include/mbedtls/config_adjust_ssl.h +/usr/local/include/mbedtls/config_adjust_x509.h /usr/local/include/mbedtls/config_psa.h /usr/local/include/mbedtls/constant_time.h /usr/local/include/mbedtls/ctr_drbg.h @@ -86,7 +112,6 @@ /usr/local/include/mbedtls/gcm.h /usr/local/include/mbedtls/hkdf.h /usr/local/include/mbedtls/hmac_drbg.h -/usr/local/include/mbedtls/legacy_or_psa.h /usr/local/include/mbedtls/lms.h /usr/local/include/mbedtls/mbedtls_config.h /usr/local/include/mbedtls/md.h @@ -110,6 +135,7 @@ /usr/local/include/mbedtls/rsa.h /usr/local/include/mbedtls/sha1.h /usr/local/include/mbedtls/sha256.h +/usr/local/include/mbedtls/sha3.h /usr/local/include/mbedtls/sha512.h /usr/local/include/mbedtls/ssl.h /usr/local/include/mbedtls/ssl_cache.h @@ -123,15 +149,22 @@ /usr/local/include/mbedtls/x509_crl.h /usr/local/include/mbedtls/x509_crt.h /usr/local/include/mbedtls/x509_csr.h +/usr/local/include/psa/build_info.h /usr/local/include/psa/crypto.h +/usr/local/include/psa/crypto_adjust_auto_enabled.h +/usr/local/include/psa/crypto_adjust_config_key_pair_types.h +/usr/local/include/psa/crypto_adjust_config_synonyms.h /usr/local/include/psa/crypto_builtin_composites.h +/usr/local/include/psa/crypto_builtin_key_derivation.h /usr/local/include/psa/crypto_builtin_primitives.h /usr/local/include/psa/crypto_compat.h /usr/local/include/psa/crypto_config.h /usr/local/include/psa/crypto_driver_common.h /usr/local/include/psa/crypto_driver_contexts_composites.h +/usr/local/include/psa/crypto_driver_contexts_key_derivation.h /usr/local/include/psa/crypto_driver_contexts_primitives.h /usr/local/include/psa/crypto_extra.h +/usr/local/include/psa/crypto_legacy.h /usr/local/include/psa/crypto_platform.h /usr/local/include/psa/crypto_se_driver.h /usr/local/include/psa/crypto_sizes.h @@ -142,15 +175,20 @@ /usr/local/lib/cmake/MbedTLS/MbedTLSConfigVersion.cmake /usr/local/lib/cmake/MbedTLS/MbedTLSTargets-release.cmake /usr/local/lib/cmake/MbedTLS/MbedTLSTargets.cmake +/usr/local/lib/libeverest.a /usr/local/lib/libmbedcrypto.a /usr/local/lib/libmbedcrypto.so -/usr/local/lib/libmbedcrypto.so.14 -/usr/local/lib/libmbedcrypto.so.3.4.1 +/usr/local/lib/libmbedcrypto.so.16 +/usr/local/lib/libmbedcrypto.so.3.6.0 /usr/local/lib/libmbedtls.a /usr/local/lib/libmbedtls.so -/usr/local/lib/libmbedtls.so.19 -/usr/local/lib/libmbedtls.so.3.4.1 +/usr/local/lib/libmbedtls.so.21 +/usr/local/lib/libmbedtls.so.3.6.0 /usr/local/lib/libmbedx509.a /usr/local/lib/libmbedx509.so -/usr/local/lib/libmbedx509.so.3.4.1 -/usr/local/lib/libmbedx509.so.5 +/usr/local/lib/libmbedx509.so.3.6.0 +/usr/local/lib/libmbedx509.so.7 +/usr/local/lib/libp256m.a +/usr/local/lib/pkgconfig/mbedcrypto.pc +/usr/local/lib/pkgconfig/mbedtls.pc +/usr/local/lib/pkgconfig/mbedx509.pc diff --git a/manifest/i686/l/libvisio.filelist b/manifest/i686/l/libvisio.filelist index b80be6f9c..5a83dc0c3 100644 --- a/manifest/i686/l/libvisio.filelist +++ b/manifest/i686/l/libvisio.filelist @@ -9,7 +9,7 @@ /usr/local/lib/libvisio-0.1.la /usr/local/lib/libvisio-0.1.so /usr/local/lib/libvisio-0.1.so.1 -/usr/local/lib/libvisio-0.1.so.1.0.7 +/usr/local/lib/libvisio-0.1.so.1.0.8 /usr/local/lib/pkgconfig/libvisio-0.1.pc /usr/local/share/doc/libvisio/html/VDXParser_8cpp.html /usr/local/share/doc/libvisio/html/VDXParser_8h.html @@ -325,6 +325,7 @@ /usr/local/share/doc/libvisio/html/dir_c85d3e3c5052e9ad9ce18c6863244a25.html /usr/local/share/doc/libvisio/html/dir_dbd43e63c223a2e9a266a1fcf5cbb056.html /usr/local/share/doc/libvisio/html/doxygen.css +/usr/local/share/doc/libvisio/html/doxygen_crawl.html /usr/local/share/doc/libvisio/html/files.html /usr/local/share/doc/libvisio/html/functions.html /usr/local/share/doc/libvisio/html/functions_a.html diff --git a/manifest/i686/l/libxml2.filelist b/manifest/i686/l/libxml2.filelist index 0d1cb1a47..0fe093011 100644 --- a/manifest/i686/l/libxml2.filelist +++ b/manifest/i686/l/libxml2.filelist @@ -47,13 +47,13 @@ /usr/local/include/libxml2/libxml/xpath.h /usr/local/include/libxml2/libxml/xpathInternals.h /usr/local/include/libxml2/libxml/xpointer.h -/usr/local/lib/cmake/libxml2-2.13.2/libxml2-config-version.cmake -/usr/local/lib/cmake/libxml2-2.13.2/libxml2-config.cmake -/usr/local/lib/cmake/libxml2-2.13.2/libxml2-export-release.cmake -/usr/local/lib/cmake/libxml2-2.13.2/libxml2-export.cmake +/usr/local/lib/cmake/libxml2-2.13.3/libxml2-config-version.cmake +/usr/local/lib/cmake/libxml2-2.13.3/libxml2-config.cmake +/usr/local/lib/cmake/libxml2-2.13.3/libxml2-export-release.cmake +/usr/local/lib/cmake/libxml2-2.13.3/libxml2-export.cmake /usr/local/lib/libxml2.so /usr/local/lib/libxml2.so.2 -/usr/local/lib/libxml2.so.2.13.2 +/usr/local/lib/libxml2.so.2.13.3 /usr/local/lib/pkgconfig/libxml-2.0.pc /usr/local/share/aclocal/libxml.m4 /usr/local/share/doc/libxml2/devhelp/general.html diff --git a/manifest/i686/l/libxml2_autotools.filelist b/manifest/i686/l/libxml2_autotools.filelist new file mode 100644 index 000000000..334e2b345 --- /dev/null +++ b/manifest/i686/l/libxml2_autotools.filelist @@ -0,0 +1,115 @@ +/usr/local/bin/xml2-config +/usr/local/bin/xmlcatalog +/usr/local/bin/xmllint +/usr/local/include/libxml2/libxml/HTMLparser.h +/usr/local/include/libxml2/libxml/HTMLtree.h +/usr/local/include/libxml2/libxml/SAX.h +/usr/local/include/libxml2/libxml/SAX2.h +/usr/local/include/libxml2/libxml/c14n.h +/usr/local/include/libxml2/libxml/catalog.h +/usr/local/include/libxml2/libxml/chvalid.h +/usr/local/include/libxml2/libxml/debugXML.h +/usr/local/include/libxml2/libxml/dict.h +/usr/local/include/libxml2/libxml/encoding.h +/usr/local/include/libxml2/libxml/entities.h +/usr/local/include/libxml2/libxml/globals.h +/usr/local/include/libxml2/libxml/hash.h +/usr/local/include/libxml2/libxml/list.h +/usr/local/include/libxml2/libxml/nanoftp.h +/usr/local/include/libxml2/libxml/nanohttp.h +/usr/local/include/libxml2/libxml/parser.h +/usr/local/include/libxml2/libxml/parserInternals.h +/usr/local/include/libxml2/libxml/pattern.h +/usr/local/include/libxml2/libxml/relaxng.h +/usr/local/include/libxml2/libxml/schemasInternals.h +/usr/local/include/libxml2/libxml/schematron.h +/usr/local/include/libxml2/libxml/threads.h +/usr/local/include/libxml2/libxml/tree.h +/usr/local/include/libxml2/libxml/uri.h +/usr/local/include/libxml2/libxml/valid.h +/usr/local/include/libxml2/libxml/xinclude.h +/usr/local/include/libxml2/libxml/xlink.h +/usr/local/include/libxml2/libxml/xmlIO.h +/usr/local/include/libxml2/libxml/xmlautomata.h +/usr/local/include/libxml2/libxml/xmlerror.h +/usr/local/include/libxml2/libxml/xmlexports.h +/usr/local/include/libxml2/libxml/xmlmemory.h +/usr/local/include/libxml2/libxml/xmlmodule.h +/usr/local/include/libxml2/libxml/xmlreader.h +/usr/local/include/libxml2/libxml/xmlregexp.h +/usr/local/include/libxml2/libxml/xmlsave.h +/usr/local/include/libxml2/libxml/xmlschemas.h +/usr/local/include/libxml2/libxml/xmlschemastypes.h +/usr/local/include/libxml2/libxml/xmlstring.h +/usr/local/include/libxml2/libxml/xmlunicode.h +/usr/local/include/libxml2/libxml/xmlversion.h +/usr/local/include/libxml2/libxml/xmlwriter.h +/usr/local/include/libxml2/libxml/xpath.h +/usr/local/include/libxml2/libxml/xpathInternals.h +/usr/local/include/libxml2/libxml/xpointer.h +/usr/local/lib/cmake/libxml2/libxml2-config.cmake +/usr/local/lib/libxml2.la +/usr/local/lib/libxml2.so +/usr/local/lib/libxml2.so.2 +/usr/local/lib/libxml2.so.2.13.3 +/usr/local/lib/pkgconfig/libxml-2.0.pc +/usr/local/share/aclocal/libxml.m4 +/usr/local/share/doc/libxml2/xmlcatalog.html +/usr/local/share/doc/libxml2/xmllint.html +/usr/local/share/gtk-doc/html/libxml2/general.html +/usr/local/share/gtk-doc/html/libxml2/home.png +/usr/local/share/gtk-doc/html/libxml2/index.html +/usr/local/share/gtk-doc/html/libxml2/left.png +/usr/local/share/gtk-doc/html/libxml2/libxml2-HTMLparser.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-HTMLtree.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-SAX.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-SAX2.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-c14n.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-catalog.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-chvalid.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-debugXML.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-dict.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-encoding.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-entities.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-globals.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-hash.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-list.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-nanoftp.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-nanohttp.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-parser.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-parserInternals.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-pattern.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-relaxng.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-schemasInternals.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-schematron.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-threads.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-tree.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-uri.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-valid.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xinclude.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xlink.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlIO.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlautomata.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlerror.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlexports.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlmemory.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlmodule.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlreader.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlregexp.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlsave.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlschemas.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlschemastypes.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlstring.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlunicode.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlversion.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlwriter.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xpath.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xpathInternals.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xpointer.html +/usr/local/share/gtk-doc/html/libxml2/libxml2.devhelp2 +/usr/local/share/gtk-doc/html/libxml2/right.png +/usr/local/share/gtk-doc/html/libxml2/style.css +/usr/local/share/gtk-doc/html/libxml2/up.png +/usr/local/share/man/man1/xml2-config.1.zst +/usr/local/share/man/man1/xmlcatalog.1.zst +/usr/local/share/man/man1/xmllint.1.zst diff --git a/manifest/i686/l/libxslt.filelist b/manifest/i686/l/libxslt.filelist index a589b70df..e76ef4c9b 100644 --- a/manifest/i686/l/libxslt.filelist +++ b/manifest/i686/l/libxslt.filelist @@ -24,117 +24,83 @@ /usr/local/include/libxslt/xsltexports.h /usr/local/include/libxslt/xsltlocale.h /usr/local/include/libxslt/xsltutils.h -/usr/local/lib/libexslt.la +/usr/local/lib/cmake/libxslt-1.1.42/libxslt-config-version.cmake +/usr/local/lib/cmake/libxslt-1.1.42/libxslt-config.cmake +/usr/local/lib/cmake/libxslt-1.1.42/libxslt-export-release.cmake +/usr/local/lib/cmake/libxslt-1.1.42/libxslt-export.cmake /usr/local/lib/libexslt.so /usr/local/lib/libexslt.so.0 -/usr/local/lib/libexslt.so.0.8.20 -/usr/local/lib/libxslt.la +/usr/local/lib/libexslt.so.0.8.23 /usr/local/lib/libxslt.so /usr/local/lib/libxslt.so.1 -/usr/local/lib/libxslt.so.1.1.34 +/usr/local/lib/libxslt.so.1.1.42 /usr/local/lib/pkgconfig/libexslt.pc /usr/local/lib/pkgconfig/libxslt.pc -/usr/local/lib/python2.7/site-packages/libxslt.py -/usr/local/lib/python2.7/site-packages/libxsltmod.la -/usr/local/lib/python2.7/site-packages/libxsltmod.so /usr/local/lib/xsltConf.sh -/usr/local/share/aclocal/libxslt.m4 -/usr/local/share/doc/libxslt-1.1.34/html/API.html -/usr/local/share/doc/libxslt-1.1.34/html/APIchunk0.html -/usr/local/share/doc/libxslt-1.1.34/html/APIchunk1.html -/usr/local/share/doc/libxslt-1.1.34/html/APIchunk10.html -/usr/local/share/doc/libxslt-1.1.34/html/APIchunk11.html -/usr/local/share/doc/libxslt-1.1.34/html/APIchunk12.html -/usr/local/share/doc/libxslt-1.1.34/html/APIchunk2.html -/usr/local/share/doc/libxslt-1.1.34/html/APIchunk3.html -/usr/local/share/doc/libxslt-1.1.34/html/APIchunk4.html -/usr/local/share/doc/libxslt-1.1.34/html/APIchunk5.html -/usr/local/share/doc/libxslt-1.1.34/html/APIchunk6.html -/usr/local/share/doc/libxslt-1.1.34/html/APIchunk7.html -/usr/local/share/doc/libxslt-1.1.34/html/APIchunk8.html -/usr/local/share/doc/libxslt-1.1.34/html/APIchunk9.html -/usr/local/share/doc/libxslt-1.1.34/html/APIconstructors.html -/usr/local/share/doc/libxslt-1.1.34/html/APIfiles.html -/usr/local/share/doc/libxslt-1.1.34/html/APIfunctions.html -/usr/local/share/doc/libxslt-1.1.34/html/APIsymbols.html -/usr/local/share/doc/libxslt-1.1.34/html/EXSLT/APIchunk0.html -/usr/local/share/doc/libxslt-1.1.34/html/EXSLT/APIconstructors.html -/usr/local/share/doc/libxslt-1.1.34/html/EXSLT/APIfiles.html -/usr/local/share/doc/libxslt-1.1.34/html/EXSLT/APIfunctions.html -/usr/local/share/doc/libxslt-1.1.34/html/EXSLT/APIsymbols.html -/usr/local/share/doc/libxslt-1.1.34/html/EXSLT/bugs.html -/usr/local/share/doc/libxslt-1.1.34/html/EXSLT/docs.html -/usr/local/share/doc/libxslt-1.1.34/html/EXSLT/downloads.html -/usr/local/share/doc/libxslt-1.1.34/html/EXSLT/exslt.html -/usr/local/share/doc/libxslt-1.1.34/html/EXSLT/help.html -/usr/local/share/doc/libxslt-1.1.34/html/EXSLT/index.html -/usr/local/share/doc/libxslt-1.1.34/html/EXSLT/intro.html -/usr/local/share/doc/libxslt-1.1.34/html/FAQ.html -/usr/local/share/doc/libxslt-1.1.34/html/Libxslt-Logo-180x168.gif -/usr/local/share/doc/libxslt-1.1.34/html/Libxslt-Logo-90x34.gif -/usr/local/share/doc/libxslt-1.1.34/html/bugs.html -/usr/local/share/doc/libxslt-1.1.34/html/contexts.gif -/usr/local/share/doc/libxslt-1.1.34/html/contribs.html -/usr/local/share/doc/libxslt-1.1.34/html/docbook.html -/usr/local/share/doc/libxslt-1.1.34/html/docs.html -/usr/local/share/doc/libxslt-1.1.34/html/downloads.html -/usr/local/share/doc/libxslt-1.1.34/html/extensions.html -/usr/local/share/doc/libxslt-1.1.34/html/help.html -/usr/local/share/doc/libxslt-1.1.34/html/html/book1.html -/usr/local/share/doc/libxslt-1.1.34/html/html/home.png -/usr/local/share/doc/libxslt-1.1.34/html/html/index.html -/usr/local/share/doc/libxslt-1.1.34/html/html/left.png -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-attributes.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-documents.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-extensions.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-extra.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-functions.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-imports.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-keys.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-lib.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-namespaces.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-numbersInternals.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-pattern.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-preproc.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-security.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-templates.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-transform.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-variables.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-xslt.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-xsltInternals.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-xsltexports.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-xsltlocale.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-xsltutils.html -/usr/local/share/doc/libxslt-1.1.34/html/html/right.png -/usr/local/share/doc/libxslt-1.1.34/html/html/up.png -/usr/local/share/doc/libxslt-1.1.34/html/index.html -/usr/local/share/doc/libxslt-1.1.34/html/internals.html -/usr/local/share/doc/libxslt-1.1.34/html/intro.html -/usr/local/share/doc/libxslt-1.1.34/html/news.html -/usr/local/share/doc/libxslt-1.1.34/html/node.gif -/usr/local/share/doc/libxslt-1.1.34/html/object.gif -/usr/local/share/doc/libxslt-1.1.34/html/processing.gif -/usr/local/share/doc/libxslt-1.1.34/html/python.html -/usr/local/share/doc/libxslt-1.1.34/html/redhat.gif -/usr/local/share/doc/libxslt-1.1.34/html/smallfootonly.gif -/usr/local/share/doc/libxslt-1.1.34/html/stylesheet.gif -/usr/local/share/doc/libxslt-1.1.34/html/templates.gif -/usr/local/share/doc/libxslt-1.1.34/html/tutorial/libxslt_tutorial.c -/usr/local/share/doc/libxslt-1.1.34/html/tutorial/libxslttutorial.html -/usr/local/share/doc/libxslt-1.1.34/html/tutorial/libxslttutorial.xml -/usr/local/share/doc/libxslt-1.1.34/html/tutorial2/libxslt_pipes.c -/usr/local/share/doc/libxslt-1.1.34/html/tutorial2/libxslt_pipes.html -/usr/local/share/doc/libxslt-1.1.34/html/tutorial2/libxslt_pipes.xml -/usr/local/share/doc/libxslt-1.1.34/html/xslt.html -/usr/local/share/doc/libxslt-1.1.34/html/xsltproc.html -/usr/local/share/doc/libxslt-1.1.34/html/xsltproc2.html -/usr/local/share/doc/libxslt-python-1.1.34/examples/basic.py -/usr/local/share/doc/libxslt-python-1.1.34/examples/exslt.py -/usr/local/share/doc/libxslt-python-1.1.34/examples/extelem.py -/usr/local/share/doc/libxslt-python-1.1.34/examples/extfunc.py -/usr/local/share/doc/libxslt-python-1.1.34/examples/pyxsltproc.py -/usr/local/share/doc/libxslt-python-1.1.34/examples/test.xml -/usr/local/share/doc/libxslt-python-1.1.34/examples/test.xsl -/usr/local/share/man/man1/xsltproc.1.gz -/usr/local/share/man/man3/libexslt.3.gz -/usr/local/share/man/man3/libxslt.3.gz +/usr/local/share/doc/libxslt/EXSLT/devhelp/devhelp2.xsl +/usr/local/share/doc/libxslt/EXSLT/devhelp/general.html +/usr/local/share/doc/libxslt/EXSLT/devhelp/home.png +/usr/local/share/doc/libxslt/EXSLT/devhelp/html.xsl +/usr/local/share/doc/libxslt/EXSLT/devhelp/index.html +/usr/local/share/doc/libxslt/EXSLT/devhelp/left.png +/usr/local/share/doc/libxslt/EXSLT/devhelp/libexslt-exslt.html +/usr/local/share/doc/libxslt/EXSLT/devhelp/libexslt-exsltexports.html +/usr/local/share/doc/libxslt/EXSLT/devhelp/libexslt.devhelp2 +/usr/local/share/doc/libxslt/EXSLT/devhelp/right.png +/usr/local/share/doc/libxslt/EXSLT/devhelp/style.css +/usr/local/share/doc/libxslt/EXSLT/devhelp/up.png +/usr/local/share/doc/libxslt/EXSLT/libexslt-api.xml +/usr/local/share/doc/libxslt/apibuild.py +/usr/local/share/doc/libxslt/devhelp/devhelp2.xsl +/usr/local/share/doc/libxslt/devhelp/general.html +/usr/local/share/doc/libxslt/devhelp/home.png +/usr/local/share/doc/libxslt/devhelp/html.xsl +/usr/local/share/doc/libxslt/devhelp/index.html +/usr/local/share/doc/libxslt/devhelp/left.png +/usr/local/share/doc/libxslt/devhelp/libxslt-attributes.html +/usr/local/share/doc/libxslt/devhelp/libxslt-documents.html +/usr/local/share/doc/libxslt/devhelp/libxslt-extensions.html +/usr/local/share/doc/libxslt/devhelp/libxslt-extra.html +/usr/local/share/doc/libxslt/devhelp/libxslt-functions.html +/usr/local/share/doc/libxslt/devhelp/libxslt-imports.html +/usr/local/share/doc/libxslt/devhelp/libxslt-keys.html +/usr/local/share/doc/libxslt/devhelp/libxslt-namespaces.html +/usr/local/share/doc/libxslt/devhelp/libxslt-numbersInternals.html +/usr/local/share/doc/libxslt/devhelp/libxslt-pattern.html +/usr/local/share/doc/libxslt/devhelp/libxslt-preproc.html +/usr/local/share/doc/libxslt/devhelp/libxslt-security.html +/usr/local/share/doc/libxslt/devhelp/libxslt-templates.html +/usr/local/share/doc/libxslt/devhelp/libxslt-transform.html +/usr/local/share/doc/libxslt/devhelp/libxslt-variables.html +/usr/local/share/doc/libxslt/devhelp/libxslt-xslt.html +/usr/local/share/doc/libxslt/devhelp/libxslt-xsltInternals.html +/usr/local/share/doc/libxslt/devhelp/libxslt-xsltexports.html +/usr/local/share/doc/libxslt/devhelp/libxslt-xsltlocale.html +/usr/local/share/doc/libxslt/devhelp/libxslt-xsltutils.html +/usr/local/share/doc/libxslt/devhelp/libxslt.devhelp2 +/usr/local/share/doc/libxslt/devhelp/right.png +/usr/local/share/doc/libxslt/devhelp/style.css +/usr/local/share/doc/libxslt/devhelp/up.png +/usr/local/share/doc/libxslt/libxslt-api.xml +/usr/local/share/doc/libxslt/tutorial/images/callouts/1.png +/usr/local/share/doc/libxslt/tutorial/images/callouts/10.png +/usr/local/share/doc/libxslt/tutorial/images/callouts/2.png +/usr/local/share/doc/libxslt/tutorial/images/callouts/3.png +/usr/local/share/doc/libxslt/tutorial/images/callouts/4.png +/usr/local/share/doc/libxslt/tutorial/images/callouts/5.png +/usr/local/share/doc/libxslt/tutorial/images/callouts/6.png +/usr/local/share/doc/libxslt/tutorial/images/callouts/7.png +/usr/local/share/doc/libxslt/tutorial/images/callouts/8.png +/usr/local/share/doc/libxslt/tutorial/images/callouts/9.png +/usr/local/share/doc/libxslt/tutorial/libxslt_tutorial.c +/usr/local/share/doc/libxslt/tutorial/libxslttutorial.html +/usr/local/share/doc/libxslt/tutorial/libxslttutorial.xml +/usr/local/share/doc/libxslt/tutorial2/libxslt_pipes.c +/usr/local/share/doc/libxslt/tutorial2/libxslt_pipes.html +/usr/local/share/doc/libxslt/tutorial2/libxslt_pipes.xml +/usr/local/share/doc/libxslt/xsltproc.1 +/usr/local/share/doc/libxslt/xsltproc.html +/usr/local/share/doc/libxslt/xsltproc.xml +/usr/local/share/man/man1/xsltproc.1.zst +/usr/local/share/man/man3/libexslt.3.zst +/usr/local/share/man/man3/libxslt.3.zst diff --git a/manifest/i686/p/py3_cfgv.filelist b/manifest/i686/p/py3_cfgv.filelist new file mode 100644 index 000000000..c39dd2594 --- /dev/null +++ b/manifest/i686/p/py3_cfgv.filelist @@ -0,0 +1,8 @@ +/usr/local/lib/python3.12/site-packages/__pycache__/cfgv.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/cfgv-3.4.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/cfgv-3.4.0.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/cfgv-3.4.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/cfgv-3.4.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/cfgv-3.4.0.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/cfgv-3.4.0.dist-info/top_level.txt +/usr/local/lib/python3.12/site-packages/cfgv.py diff --git a/manifest/i686/p/py3_distlib.filelist b/manifest/i686/p/py3_distlib.filelist index d88c05d1b..d7b7efe1a 100644 --- a/manifest/i686/p/py3_distlib.filelist +++ b/manifest/i686/p/py3_distlib.filelist @@ -2,7 +2,6 @@ /usr/local/lib/python3.12/site-packages/distlib-0.3.8.dist-info/LICENSE.txt /usr/local/lib/python3.12/site-packages/distlib-0.3.8.dist-info/METADATA /usr/local/lib/python3.12/site-packages/distlib-0.3.8.dist-info/RECORD -/usr/local/lib/python3.12/site-packages/distlib-0.3.8.dist-info/REQUESTED /usr/local/lib/python3.12/site-packages/distlib-0.3.8.dist-info/WHEEL /usr/local/lib/python3.12/site-packages/distlib-0.3.8.dist-info/top_level.txt /usr/local/lib/python3.12/site-packages/distlib/__init__.py diff --git a/manifest/i686/p/py3_identify.filelist b/manifest/i686/p/py3_identify.filelist new file mode 100644 index 000000000..d0c650f50 --- /dev/null +++ b/manifest/i686/p/py3_identify.filelist @@ -0,0 +1,23 @@ +/usr/local/bin/identify-cli +/usr/local/lib/python3.12/site-packages/identify-2.6.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/identify-2.6.0.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/identify-2.6.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/identify-2.6.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/identify-2.6.0.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/identify-2.6.0.dist-info/entry_points.txt +/usr/local/lib/python3.12/site-packages/identify-2.6.0.dist-info/top_level.txt +/usr/local/lib/python3.12/site-packages/identify/__init__.py +/usr/local/lib/python3.12/site-packages/identify/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/identify/__pycache__/cli.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/identify/__pycache__/extensions.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/identify/__pycache__/identify.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/identify/__pycache__/interpreters.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/identify/cli.py +/usr/local/lib/python3.12/site-packages/identify/extensions.py +/usr/local/lib/python3.12/site-packages/identify/identify.py +/usr/local/lib/python3.12/site-packages/identify/interpreters.py +/usr/local/lib/python3.12/site-packages/identify/py.typed +/usr/local/lib/python3.12/site-packages/identify/vendor/__init__.py +/usr/local/lib/python3.12/site-packages/identify/vendor/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/identify/vendor/__pycache__/licenses.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/identify/vendor/licenses.py diff --git a/manifest/i686/p/py3_libxml2.filelist b/manifest/i686/p/py3_libxml2.filelist index 2885b243e..a1640e12e 100644 --- a/manifest/i686/p/py3_libxml2.filelist +++ b/manifest/i686/p/py3_libxml2.filelist @@ -4,8 +4,8 @@ /usr/local/lib/python3.12/site-packages/__pycache__/libxml2.cpython-312.pyc /usr/local/lib/python3.12/site-packages/drv_libxml2.py /usr/local/lib/python3.12/site-packages/libxml2.py -/usr/local/lib/python3.12/site-packages/libxml2_python-2.13.2-py3.12.egg-info/PKG-INFO -/usr/local/lib/python3.12/site-packages/libxml2_python-2.13.2-py3.12.egg-info/SOURCES.txt -/usr/local/lib/python3.12/site-packages/libxml2_python-2.13.2-py3.12.egg-info/dependency_links.txt -/usr/local/lib/python3.12/site-packages/libxml2_python-2.13.2-py3.12.egg-info/top_level.txt +/usr/local/lib/python3.12/site-packages/libxml2_python-2.13.3-py3.12.egg-info/PKG-INFO +/usr/local/lib/python3.12/site-packages/libxml2_python-2.13.3-py3.12.egg-info/SOURCES.txt +/usr/local/lib/python3.12/site-packages/libxml2_python-2.13.3-py3.12.egg-info/dependency_links.txt +/usr/local/lib/python3.12/site-packages/libxml2_python-2.13.3-py3.12.egg-info/top_level.txt /usr/local/lib/python3.12/site-packages/libxml2mod.cpython-312-i386-linux-gnu.so diff --git a/manifest/i686/p/py3_nodeenv.filelist b/manifest/i686/p/py3_nodeenv.filelist index 5569def3c..bc18bf3eb 100644 --- a/manifest/i686/p/py3_nodeenv.filelist +++ b/manifest/i686/p/py3_nodeenv.filelist @@ -1,11 +1,11 @@ /usr/local/bin/nodeenv -/usr/local/lib/python3.12/site-packages/__pycache__/nodeenv.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/__pycache__/nodeenv.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/nodeenv-1.8.0-py3.12.egg-info/PKG-INFO -/usr/local/lib/python3.12/site-packages/nodeenv-1.8.0-py3.12.egg-info/SOURCES.txt -/usr/local/lib/python3.12/site-packages/nodeenv-1.8.0-py3.12.egg-info/dependency_links.txt -/usr/local/lib/python3.12/site-packages/nodeenv-1.8.0-py3.12.egg-info/entry_points.txt -/usr/local/lib/python3.12/site-packages/nodeenv-1.8.0-py3.12.egg-info/not-zip-safe -/usr/local/lib/python3.12/site-packages/nodeenv-1.8.0-py3.12.egg-info/requires.txt -/usr/local/lib/python3.12/site-packages/nodeenv-1.8.0-py3.12.egg-info/top_level.txt +/usr/local/lib/python3.12/site-packages/nodeenv-1.9.1.dist-info/AUTHORS +/usr/local/lib/python3.12/site-packages/nodeenv-1.9.1.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/nodeenv-1.9.1.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/nodeenv-1.9.1.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/nodeenv-1.9.1.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/nodeenv-1.9.1.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/nodeenv-1.9.1.dist-info/entry_points.txt +/usr/local/lib/python3.12/site-packages/nodeenv-1.9.1.dist-info/top_level.txt /usr/local/lib/python3.12/site-packages/nodeenv.py diff --git a/manifest/i686/p/py3_pip.filelist b/manifest/i686/p/py3_pip.filelist index 3ed2af452..6db456e58 100644 --- a/manifest/i686/p/py3_pip.filelist +++ b/manifest/i686/p/py3_pip.filelist @@ -1,71 +1,49 @@ /usr/local/bin/pip /usr/local/bin/pip3 -/usr/local/bin/pip3.12 -/usr/local/lib/python3.12/site-packages/pip-23.3.1-py3.12.egg-info/PKG-INFO -/usr/local/lib/python3.12/site-packages/pip-23.3.1-py3.12.egg-info/SOURCES.txt -/usr/local/lib/python3.12/site-packages/pip-23.3.1-py3.12.egg-info/dependency_links.txt -/usr/local/lib/python3.12/site-packages/pip-23.3.1-py3.12.egg-info/entry_points.txt -/usr/local/lib/python3.12/site-packages/pip-23.3.1-py3.12.egg-info/not-zip-safe -/usr/local/lib/python3.12/site-packages/pip-23.3.1-py3.12.egg-info/top_level.txt +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/AUTHORS.txt +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/LICENSE.txt +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/entry_points.txt +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/top_level.txt /usr/local/lib/python3.12/site-packages/pip/__init__.py /usr/local/lib/python3.12/site-packages/pip/__main__.py /usr/local/lib/python3.12/site-packages/pip/__pip-runner__.py /usr/local/lib/python3.12/site-packages/pip/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/__pycache__/__main__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/__pycache__/__main__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/__pycache__/__pip-runner__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/build_env.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/cache.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/configuration.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/main.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/build_env.py /usr/local/lib/python3.12/site-packages/pip/_internal/cache.py /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py /usr/local/lib/python3.12/site-packages/pip/_internal/cli/base_command.py /usr/local/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py /usr/local/lib/python3.12/site-packages/pip/_internal/cli/command_context.py +/usr/local/lib/python3.12/site-packages/pip/_internal/cli/index_command.py /usr/local/lib/python3.12/site-packages/pip/_internal/cli/main.py /usr/local/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py /usr/local/lib/python3.12/site-packages/pip/_internal/cli/parser.py @@ -75,41 +53,23 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/cache.py /usr/local/lib/python3.12/site-packages/pip/_internal/commands/check.py /usr/local/lib/python3.12/site-packages/pip/_internal/commands/completion.py @@ -130,15 +90,10 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/configuration.py /usr/local/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/distributions/base.py /usr/local/lib/python3.12/site-packages/pip/_internal/distributions/installed.py /usr/local/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py @@ -146,78 +101,50 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/exceptions.py /usr/local/lib/python3.12/site-packages/pip/_internal/index/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/index/collector.py /usr/local/lib/python3.12/site-packages/pip/_internal/index/package_finder.py /usr/local/lib/python3.12/site-packages/pip/_internal/index/sources.py /usr/local/lib/python3.12/site-packages/pip/_internal/locations/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py /usr/local/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py /usr/local/lib/python3.12/site-packages/pip/_internal/locations/base.py /usr/local/lib/python3.12/site-packages/pip/_internal/main.py /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/_json.py /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/base.py /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py /usr/local/lib/python3.12/site-packages/pip/_internal/models/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/index.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/link.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/models/candidate.py /usr/local/lib/python3.12/site-packages/pip/_internal/models/direct_url.py /usr/local/lib/python3.12/site-packages/pip/_internal/models/format_control.py @@ -231,21 +158,13 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/models/wheel.py /usr/local/lib/python3.12/site-packages/pip/_internal/network/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/download.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/session.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/network/auth.py /usr/local/lib/python3.12/site-packages/pip/_internal/network/cache.py /usr/local/lib/python3.12/site-packages/pip/_internal/network/download.py @@ -255,30 +174,18 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py /usr/local/lib/python3.12/site-packages/pip/_internal/operations/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py /usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py /usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py @@ -290,28 +197,19 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/operations/freeze.py /usr/local/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/install/editable_legacy.py /usr/local/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py /usr/local/lib/python3.12/site-packages/pip/_internal/operations/prepare.py /usr/local/lib/python3.12/site-packages/pip/_internal/pyproject.py /usr/local/lib/python3.12/site-packages/pip/_internal/req/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/req/constructors.py /usr/local/lib/python3.12/site-packages/pip/_internal/req/req_file.py /usr/local/lib/python3.12/site-packages/pip/_internal/req/req_install.py @@ -319,35 +217,22 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/base.py /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py @@ -359,59 +244,32 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/models.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/models.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/retry.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/_log.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py @@ -429,8 +287,8 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/utils/hashes.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/logging.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/misc.py -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/models.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/packaging.py +/usr/local/lib/python3.12/site-packages/pip/_internal/utils/retry.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/setuptools_build.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py @@ -440,17 +298,11 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/utils/wheel.py /usr/local/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/vcs/bazaar.py /usr/local/lib/python3.12/site-packages/pip/_internal/vcs/git.py /usr/local/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py @@ -459,40 +311,24 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/wheel_builder.py /usr/local/lib/python3.12/site-packages/pip/_vendor/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/__pycache__/six.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/__pycache__/six.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py @@ -504,227 +340,26 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem /usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/core.py /usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/py.typed -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachinedict.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachinedict.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/macromanprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/macromanprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/resultdict.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/resultdict.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf1632prober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf1632prober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/big5freq.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/big5prober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/chardistribution.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/charsetgroupprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/charsetprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/cli/chardetect.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/codingstatemachine.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/codingstatemachinedict.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/cp949prober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/enums.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/escprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/escsm.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/eucjpprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/euckrfreq.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/euckrprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/euctwfreq.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/euctwprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/gb2312freq.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/gb2312prober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/hebrewprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/jisfreq.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/johabfreq.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/johabprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/jpcntx.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langbulgarianmodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langgreekmodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langhebrewmodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langhungarianmodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langrussianmodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langthaimodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langturkishmodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/latin1prober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/macromanprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/mbcharsetprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/mbcsgroupprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/mbcssm.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/languages.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/py.typed -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/resultdict.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/sbcharsetprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/sbcsgroupprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/sjisprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/universaldetector.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/utf1632prober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/utf8prober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/version.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama.pyi -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/ansi.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/ansitowin32.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/initialise.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/ansi_test.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/ansi_test.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/ansitowin32_test.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/ansitowin32_test.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/initialise_test.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/initialise_test.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/isatty_test.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/isatty_test.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/utils.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/utils.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/winterm_test.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/winterm_test.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/ansi_test.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/initialise_test.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/isatty_test.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/utils.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/winterm_test.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/win32.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/winterm.py /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib.pyi /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/database.py /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/index.py @@ -746,30 +381,19 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distro/distro.py /usr/local/lib/python3.12/site-packages/pip/_vendor/distro/py.typed /usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/idna/codec.py /usr/local/lib/python3.12/site-packages/pip/_vendor/idna/compat.py /usr/local/lib/python3.12/site-packages/pip/_vendor/idna/core.py @@ -781,44 +405,35 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack.pyi /usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py /usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py /usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__about__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/_elffile.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/_parser.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/metadata.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/py.typed /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py @@ -828,25 +443,16 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/pkg_resources.pyi /usr/local/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py /usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py /usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py @@ -858,73 +464,42 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/cmdline.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/console.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatter.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/_mapping.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/bbcode.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/groff.py @@ -941,11 +516,8 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/lexer.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/_mapping.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/python.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/modeline.py @@ -956,98 +528,42 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/style.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/styles/_mapping.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/token.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/unistring.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/util.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/actions.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/actions.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/common.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/common.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/core.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/core.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/exceptions.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/exceptions.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/helpers.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/helpers.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/results.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/results.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/testing.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/testing.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/unicode.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/unicode.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/util.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/util.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/actions.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/common.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/core.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/diagram/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/exceptions.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/helpers.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/py.typed -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/results.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/testing.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/unicode.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/util.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks.pyi /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_compat.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py /usr/local/lib/python3.12/site-packages/pip/_vendor/requests.pyi /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__version__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/adapters.py @@ -1068,20 +584,13 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.pyi /usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py /usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/collections_abc.pyi /usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/providers.py @@ -1096,159 +605,82 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__main__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/_cell_widths.py /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_codes.py /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_replace.py @@ -1325,67 +757,22 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/themes.py /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/traceback.py /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/tree.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/six.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/_asyncio.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/_utils.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/after.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/before.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/before_sleep.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/nap.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/py.typed -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/retry.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/stop.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/tornadoweb.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/wait.py /usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/_parser.py /usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/_re.py /usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/_types.py /usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/py.typed /usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/_api.py /usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/_macos.py /usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/_openssl.py @@ -1397,54 +784,33 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3.pyi /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/_collections.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/_version.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/connection.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/connectionpool.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/appengine.py @@ -1457,16 +823,11 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/filepost.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/six.py @@ -1475,31 +836,18 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/response.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/connection.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/proxy.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/queue.py @@ -1513,20 +861,4 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/url.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/wait.py /usr/local/lib/python3.12/site-packages/pip/_vendor/vendor.txt -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings.pyi -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/labels.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/mklabels.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/tests.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/x_user_defined.py /usr/local/lib/python3.12/site-packages/pip/py.typed diff --git a/manifest/i686/p/py3_pre_commit.filelist b/manifest/i686/p/py3_pre_commit.filelist index 18bc387c7..321535d9a 100644 --- a/manifest/i686/p/py3_pre_commit.filelist +++ b/manifest/i686/p/py3_pre_commit.filelist @@ -1,12 +1,12 @@ /usr/local/bin/pre-commit -/usr/local/lib/python3.12/site-packages/pre_commit-3.7.1.dist-info/INSTALLER -/usr/local/lib/python3.12/site-packages/pre_commit-3.7.1.dist-info/LICENSE -/usr/local/lib/python3.12/site-packages/pre_commit-3.7.1.dist-info/METADATA -/usr/local/lib/python3.12/site-packages/pre_commit-3.7.1.dist-info/RECORD -/usr/local/lib/python3.12/site-packages/pre_commit-3.7.1.dist-info/REQUESTED -/usr/local/lib/python3.12/site-packages/pre_commit-3.7.1.dist-info/WHEEL -/usr/local/lib/python3.12/site-packages/pre_commit-3.7.1.dist-info/entry_points.txt -/usr/local/lib/python3.12/site-packages/pre_commit-3.7.1.dist-info/top_level.txt +/usr/local/lib/python3.12/site-packages/pre_commit-3.8.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/pre_commit-3.8.0.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/pre_commit-3.8.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/pre_commit-3.8.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/pre_commit-3.8.0.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/pre_commit-3.8.0.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/pre_commit-3.8.0.dist-info/entry_points.txt +/usr/local/lib/python3.12/site-packages/pre_commit-3.8.0.dist-info/top_level.txt /usr/local/lib/python3.12/site-packages/pre_commit/__init__.py /usr/local/lib/python3.12/site-packages/pre_commit/__main__.py /usr/local/lib/python3.12/site-packages/pre_commit/__pycache__/__init__.cpython-312.pyc diff --git a/manifest/i686/p/py3_pyicu.filelist b/manifest/i686/p/py3_pyicu.filelist index 317c417c7..69fb30b7e 100644 --- a/manifest/i686/p/py3_pyicu.filelist +++ b/manifest/i686/p/py3_pyicu.filelist @@ -1,8 +1,10 @@ -/usr/local/lib/python3.12/site-packages/PyICU-2.11-py3.12.egg-info/PKG-INFO -/usr/local/lib/python3.12/site-packages/PyICU-2.11-py3.12.egg-info/SOURCES.txt -/usr/local/lib/python3.12/site-packages/PyICU-2.11-py3.12.egg-info/dependency_links.txt -/usr/local/lib/python3.12/site-packages/PyICU-2.11-py3.12.egg-info/top_level.txt +/usr/local/lib/python3.12/site-packages/PyICU-2.13.1.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/PyICU-2.13.1.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/PyICU-2.13.1.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/PyICU-2.13.1.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/PyICU-2.13.1.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/PyICU-2.13.1.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/PyICU-2.13.1.dist-info/top_level.txt /usr/local/lib/python3.12/site-packages/icu/__init__.py -/usr/local/lib/python3.12/site-packages/icu/__pycache__/__init__.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/icu/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/icu/_icu_.cpython-312-i386-linux-gnu.so diff --git a/manifest/i686/p/py3_pyyaml.filelist b/manifest/i686/p/py3_pyyaml.filelist index e91071898..d5707dfa5 100644 --- a/manifest/i686/p/py3_pyyaml.filelist +++ b/manifest/i686/p/py3_pyyaml.filelist @@ -1,45 +1,31 @@ -/usr/local/lib/python3.12/site-packages/PyYAML-6.0.1-py3.12.egg-info/PKG-INFO -/usr/local/lib/python3.12/site-packages/PyYAML-6.0.1-py3.12.egg-info/SOURCES.txt -/usr/local/lib/python3.12/site-packages/PyYAML-6.0.1-py3.12.egg-info/dependency_links.txt -/usr/local/lib/python3.12/site-packages/PyYAML-6.0.1-py3.12.egg-info/top_level.txt +/usr/local/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/top_level.txt /usr/local/lib/python3.12/site-packages/_yaml/__init__.py -/usr/local/lib/python3.12/site-packages/_yaml/__pycache__/__init__.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/_yaml/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/yaml/__init__.py -/usr/local/lib/python3.12/site-packages/yaml/__pycache__/__init__.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/yaml/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/yaml/__pycache__/composer.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/yaml/__pycache__/composer.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/yaml/__pycache__/constructor.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/yaml/__pycache__/constructor.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/yaml/__pycache__/cyaml.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/yaml/__pycache__/cyaml.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/yaml/__pycache__/dumper.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/yaml/__pycache__/dumper.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/yaml/__pycache__/emitter.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/yaml/__pycache__/emitter.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/yaml/__pycache__/error.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/yaml/__pycache__/error.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/yaml/__pycache__/events.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/yaml/__pycache__/events.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/yaml/__pycache__/loader.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/yaml/__pycache__/loader.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/yaml/__pycache__/nodes.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/yaml/__pycache__/nodes.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/yaml/__pycache__/parser.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/yaml/__pycache__/parser.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/yaml/__pycache__/reader.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/yaml/__pycache__/reader.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/yaml/__pycache__/representer.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/yaml/__pycache__/representer.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/yaml/__pycache__/resolver.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/yaml/__pycache__/resolver.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/yaml/__pycache__/scanner.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/yaml/__pycache__/scanner.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/yaml/__pycache__/serializer.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/yaml/__pycache__/serializer.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/yaml/__pycache__/tokens.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/yaml/__pycache__/tokens.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/yaml/_yaml.cpython-312-i386-linux-gnu.so /usr/local/lib/python3.12/site-packages/yaml/composer.py /usr/local/lib/python3.12/site-packages/yaml/constructor.py /usr/local/lib/python3.12/site-packages/yaml/cyaml.py diff --git a/manifest/i686/p/py3_setuptools.filelist b/manifest/i686/p/py3_setuptools.filelist index 8a48cc76c..7dbbc1a9b 100644 --- a/manifest/i686/p/py3_setuptools.filelist +++ b/manifest/i686/p/py3_setuptools.filelist @@ -8,137 +8,46 @@ /usr/local/lib/python3.12/site-packages/pkg_resources/__init__.py /usr/local/lib/python3.12/site-packages/pkg_resources/__pycache__/__init__.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/pkg_resources/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/__init__.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/__pycache__/typing_extensions.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/__pycache__/typing_extensions.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/__pycache__/zipp.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/__pycache__/zipp.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__init__.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_adapters.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_adapters.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_common.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_common.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_compat.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_compat.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_itertools.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_itertools.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_legacy.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_legacy.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/abc.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/abc.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/readers.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/readers.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/simple.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/simple.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/_adapters.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/_common.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/_compat.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/_itertools.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/_legacy.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/abc.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/readers.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/simple.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/jaraco/__init__.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/jaraco/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/jaraco/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/jaraco/__pycache__/context.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/jaraco/__pycache__/context.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/jaraco/__pycache__/functools.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/jaraco/__pycache__/functools.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/jaraco/context.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/jaraco/functools.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/jaraco/text/__init__.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/jaraco/text/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/jaraco/text/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/more_itertools/__init__.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/more.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/more.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/recipes.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/recipes.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/more_itertools/more.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/more_itertools/recipes.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__init__.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/_elffile.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/_manylinux.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/_musllinux.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/_parser.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/_parser.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/_tokenizer.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/metadata.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/metadata.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/tags.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/tags.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/_elffile.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/_manylinux.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/_musllinux.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/_parser.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/_structures.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/_tokenizer.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/markers.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/metadata.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/requirements.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/specifiers.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/tags.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/utils.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/version.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__init__.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__main__.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/__main__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/android.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/android.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/api.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/api.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/macos.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/unix.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/version.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/version.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/windows.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/android.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/api.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/macos.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/unix.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/version.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/windows.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/typing_extensions.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/zipp.py -/usr/local/lib/python3.12/site-packages/pkg_resources/extern/__init__.py -/usr/local/lib/python3.12/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/setuptools-68.2.2.post20231003-py3.12.egg-info/PKG-INFO -/usr/local/lib/python3.12/site-packages/setuptools-68.2.2.post20231003-py3.12.egg-info/SOURCES.txt -/usr/local/lib/python3.12/site-packages/setuptools-68.2.2.post20231003-py3.12.egg-info/dependency_links.txt -/usr/local/lib/python3.12/site-packages/setuptools-68.2.2.post20231003-py3.12.egg-info/entry_points.txt -/usr/local/lib/python3.12/site-packages/setuptools-68.2.2.post20231003-py3.12.egg-info/requires.txt +/usr/local/lib/python3.12/site-packages/pkg_resources/api_tests.txt +/usr/local/lib/python3.12/site-packages/pkg_resources/py.typed +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__init__.py +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/test_find_distributions.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/test_find_distributions.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/test_integration_zope_interface.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/test_integration_zope_interface.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/test_markers.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/test_markers.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/test_pkg_resources.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/test_pkg_resources.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/test_resources.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/test_resources.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/test_working_set.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/test_working_set.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/data/my-test-package-source/__pycache__/setup.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/data/my-test-package-source/__pycache__/setup.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/data/my-test-package-source/setup.cfg +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/data/my-test-package-source/setup.py +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/data/my-test-package-zip/my-test-package.zip +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/data/my-test-package_unpacked-egg/my_test_package-1.0-py3.7.egg/EGG-INFO/PKG-INFO +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/data/my-test-package_unpacked-egg/my_test_package-1.0-py3.7.egg/EGG-INFO/SOURCES.txt +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/data/my-test-package_unpacked-egg/my_test_package-1.0-py3.7.egg/EGG-INFO/dependency_links.txt +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/data/my-test-package_unpacked-egg/my_test_package-1.0-py3.7.egg/EGG-INFO/top_level.txt +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/data/my-test-package_unpacked-egg/my_test_package-1.0-py3.7.egg/EGG-INFO/zip-safe +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/data/my-test-package_zipped-egg/my_test_package-1.0-py3.7.egg +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/test_find_distributions.py +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/test_integration_zope_interface.py +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/test_markers.py +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/test_pkg_resources.py +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/test_resources.py +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/test_working_set.py +/usr/local/lib/python3.12/site-packages/setuptools-72.1.0.post20240803-py3.12.egg-info/PKG-INFO +/usr/local/lib/python3.12/site-packages/setuptools-72.1.0.post20240803-py3.12.egg-info/SOURCES.txt +/usr/local/lib/python3.12/site-packages/setuptools-72.1.0.post20240803-py3.12.egg-info/dependency_links.txt +/usr/local/lib/python3.12/site-packages/setuptools-72.1.0.post20240803-py3.12.egg-info/entry_points.txt +/usr/local/lib/python3.12/site-packages/setuptools-72.1.0.post20240803-py3.12.egg-info/requires.txt +/usr/local/lib/python3.12/site-packages/setuptools-72.1.0.post20240803-py3.12.egg-info/top_level.txt /usr/local/lib/python3.12/site-packages/setuptools/__init__.py /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/__init__.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/__init__.cpython-312.pyc @@ -162,8 +71,6 @@ /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/archive_util.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/build_meta.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/build_meta.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/setuptools/__pycache__/dep_util.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/__pycache__/dep_util.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/depends.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/depends.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/discovery.cpython-312.opt-2.pyc @@ -182,6 +89,8 @@ /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/launch.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/logging.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/logging.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/__pycache__/modified.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/__pycache__/modified.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/monkey.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/monkey.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/msvc.cpython-312.opt-2.pyc @@ -190,8 +99,6 @@ /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/namespaces.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/package_index.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/package_index.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/setuptools/__pycache__/py312compat.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/__pycache__/py312compat.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/sandbox.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/sandbox.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/unicode_utils.cpython-312.opt-2.pyc @@ -212,10 +119,14 @@ /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_collections.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_functools.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_functools.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_itertools.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_itertools.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_log.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_log.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_macos_compat.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_macos_compat.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_modified.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_modified.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_msvccompiler.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_msvccompiler.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/archive_util.cpython-312.opt-2.pyc @@ -256,10 +167,6 @@ /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/msvc9compiler.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/msvccompiler.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/msvccompiler.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/py38compat.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/py38compat.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/py39compat.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/py39compat.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/spawn.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/spawn.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/sysconfig.cpython-312.opt-2.pyc @@ -274,11 +181,61 @@ /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/version.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/versionpredicate.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/versionpredicate.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/zosccompiler.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/zosccompiler.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/_collections.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/_functools.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_itertools.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/_log.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/_macos_compat.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_modified.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/_msvccompiler.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/_elffile.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/_manylinux.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/_musllinux.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/_parser.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/_parser.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/_structures.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/_structures.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/_tokenizer.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/markers.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/markers.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/metadata.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/metadata.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/requirements.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/requirements.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/specifiers.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/tags.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/tags.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/utils.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/utils.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/version.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/version.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/_elffile.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/_manylinux.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/_musllinux.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/_parser.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/_structures.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/_tokenizer.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/markers.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/metadata.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/py.typed +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/requirements.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/specifiers.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/tags.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/utils.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/version.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/archive_util.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/bcppcompiler.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/ccompiler.py @@ -322,8 +279,6 @@ /usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/install_lib.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/install_scripts.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/install_scripts.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/py37compat.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/py37compat.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/register.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/register.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/sdist.cpython-312.opt-2.pyc @@ -348,10 +303,27 @@ /usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/install_headers.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/install_lib.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/install_scripts.py -/usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/py37compat.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/register.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/sdist.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/upload.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/wininst-10.0-amd64.exe +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/wininst-10.0.exe +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/wininst-14.0-amd64.exe +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/wininst-14.0.exe +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/wininst-6.0.exe +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/wininst-7.1.exe +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/wininst-8.0.exe +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/wininst-9.0-amd64.exe +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/wininst-9.0.exe +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/compat/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/compat/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/compat/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/compat/__pycache__/py38.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/compat/__pycache__/py38.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/compat/__pycache__/py39.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/compat/__pycache__/py39.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/compat/py38.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/compat/py39.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/config.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/core.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/cygwinccompiler.py @@ -367,15 +339,155 @@ /usr/local/lib/python3.12/site-packages/setuptools/_distutils/log.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/msvc9compiler.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/msvccompiler.py -/usr/local/lib/python3.12/site-packages/setuptools/_distutils/py38compat.py -/usr/local/lib/python3.12/site-packages/setuptools/_distutils/py39compat.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/spawn.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/sysconfig.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/support.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/support.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_archive_util.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_archive_util.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_bdist.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_bdist.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_bdist_dumb.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_bdist_dumb.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_bdist_rpm.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_bdist_rpm.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_clib.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_clib.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_ext.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_ext.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_py.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_py.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_scripts.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_scripts.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_ccompiler.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_ccompiler.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_check.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_check.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_clean.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_clean.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_cmd.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_cmd.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_config.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_config.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_config_cmd.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_config_cmd.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_core.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_core.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_cygwinccompiler.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_cygwinccompiler.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_dir_util.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_dir_util.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_dist.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_dist.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_extension.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_extension.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_file_util.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_file_util.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_filelist.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_filelist.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_data.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_data.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_headers.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_headers.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_lib.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_lib.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_scripts.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_scripts.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_log.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_log.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_mingwccompiler.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_mingwccompiler.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_modified.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_modified.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_msvc9compiler.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_msvc9compiler.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_msvccompiler.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_msvccompiler.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_register.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_register.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_sdist.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_sdist.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_spawn.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_spawn.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_sysconfig.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_sysconfig.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_text_file.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_text_file.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_unixccompiler.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_unixccompiler.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_upload.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_upload.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_util.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_util.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_version.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_version.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_versionpredicate.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_versionpredicate.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/unix_compat.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/unix_compat.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/__pycache__/py38.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/__pycache__/py38.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/py38.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/support.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_archive_util.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_bdist.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_bdist_dumb.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_bdist_rpm.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_clib.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_ext.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_py.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_scripts.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_ccompiler.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_check.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_clean.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_cmd.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_config.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_config_cmd.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_core.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_cygwinccompiler.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_dir_util.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_dist.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_extension.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_file_util.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_filelist.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_data.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_headers.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_lib.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_scripts.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_log.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_mingwccompiler.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_modified.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_msvc9compiler.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_msvccompiler.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_register.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_sdist.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_spawn.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_sysconfig.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_text_file.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_unixccompiler.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_upload.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_util.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_version.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_versionpredicate.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/unix_compat.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/text_file.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/unixccompiler.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/util.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/version.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/versionpredicate.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/zosccompiler.py /usr/local/lib/python3.12/site-packages/setuptools/_entry_points.py /usr/local/lib/python3.12/site-packages/setuptools/_imp.py /usr/local/lib/python3.12/site-packages/setuptools/_importlib.py @@ -383,15 +495,61 @@ /usr/local/lib/python3.12/site-packages/setuptools/_normalization.py /usr/local/lib/python3.12/site-packages/setuptools/_path.py /usr/local/lib/python3.12/site-packages/setuptools/_reqs.py -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/__init__.py -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/__pycache__/ordered_set.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/__pycache__/ordered_set.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/__pycache__/typing_extensions.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/__pycache__/typing_extensions.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/__pycache__/zipp.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/__pycache__/zipp.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/top_level.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/autoasync.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/autoasync.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/autocommand.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/autocommand.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/automain.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/automain.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/autoparse.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/autoparse.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/errors.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/errors.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/autoasync.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/autocommand.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/automain.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/autoparse.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/errors.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/top_level.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__main__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__pycache__/__main__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__pycache__/__main__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/__pycache__/py38.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/__pycache__/py38.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/py38.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/top_level.txt /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__init__.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/__init__.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/__init__.cpython-312.pyc @@ -407,18 +565,35 @@ /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_itertools.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_meta.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_meta.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_py39compat.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_py39compat.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_text.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_text.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/diagnose.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/diagnose.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_adapters.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_collections.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_compat.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_functools.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_itertools.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_meta.py -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_py39compat.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_text.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__pycache__/py311.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__pycache__/py311.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__pycache__/py39.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__pycache__/py39.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/py311.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/py39.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/diagnose.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/py.typed +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources-6.4.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources-6.4.0.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources-6.4.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources-6.4.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources-6.4.0.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources-6.4.0.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources-6.4.0.dist-info/top_level.txt /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__init__.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/__init__.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/__init__.cpython-312.pyc @@ -426,39 +601,186 @@ /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_adapters.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_common.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_common.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_compat.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_compat.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_itertools.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_itertools.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_legacy.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_legacy.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/abc.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/abc.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/functional.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/functional.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/readers.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/readers.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/simple.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/simple.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/_adapters.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/_common.py -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/_compat.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/_itertools.py -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/_legacy.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/abc.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/compat/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/compat/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/compat/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/compat/__pycache__/py38.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/compat/__pycache__/py38.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/compat/__pycache__/py39.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/compat/__pycache__/py39.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/compat/py38.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/compat/py39.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/functional.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/future/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/future/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/future/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/future/__pycache__/adapters.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/future/__pycache__/adapters.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/future/adapters.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/py.typed /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/readers.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/simple.py -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/__init__.py -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/_path.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/_path.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_compatibilty_files.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_compatibilty_files.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_contents.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_contents.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_custom.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_custom.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_files.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_files.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_functional.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_functional.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_open.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_open.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_path.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_path.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_read.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_read.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_reader.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_reader.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_resource.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_resource.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/util.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/util.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/zip.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/zip.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/_path.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/compat/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/compat/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/compat/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/compat/__pycache__/py312.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/compat/__pycache__/py312.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/compat/__pycache__/py39.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/compat/__pycache__/py39.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/compat/py312.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/compat/py39.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data01/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data01/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data01/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data01/binary.file +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data01/subdirectory/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data01/subdirectory/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data01/subdirectory/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data01/subdirectory/binary.file +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data01/utf-16.file +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data01/utf-8.file +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data02/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data02/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data02/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data02/one/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data02/one/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data02/one/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data02/one/resource1.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data02/subdirectory/subsubdir/resource.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data02/two/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data02/two/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data02/two/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data02/two/resource2.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/namespacedata01/binary.file +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/namespacedata01/subdirectory/binary.file +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/namespacedata01/utf-16.file +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/namespacedata01/utf-8.file +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/test_compatibilty_files.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/test_contents.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/test_custom.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/test_files.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/test_functional.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/test_open.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/test_path.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/test_read.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/test_reader.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/test_resource.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/util.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/zip.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect-7.3.1.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect-7.3.1.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect-7.3.1.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect-7.3.1.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect-7.3.1.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect-7.3.1.dist-info/top_level.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect/compat/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect/compat/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect/compat/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect/compat/__pycache__/py38.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect/compat/__pycache__/py38.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect/compat/py38.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect/py.typed +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.context-5.3.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.context-5.3.0.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.context-5.3.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.context-5.3.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.context-5.3.0.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.context-5.3.0.dist-info/top_level.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.functools-4.0.1.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.functools-4.0.1.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.functools-4.0.1.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.functools-4.0.1.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.functools-4.0.1.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.functools-4.0.1.dist-info/top_level.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/top_level.txt /usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/__pycache__/context.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/__pycache__/context.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/__pycache__/functools.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/__pycache__/functools.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/context.py -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools/__init__.pyi +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools/py.typed +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/Lorem ipsum.txt /usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__init__.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/__init__.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/layouts.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/layouts.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/show-newlines.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/show-newlines.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/strip-prefix.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/strip-prefix.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/to-dvorak.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/to-dvorak.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/to-qwerty.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/to-qwerty.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/layouts.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/show-newlines.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/strip-prefix.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/to-dvorak.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/to-qwerty.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.3.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.3.0.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.3.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.3.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.3.0.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.3.0.dist-info/WHEEL /usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__init__.pyi /usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__pycache__/__init__.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__pycache__/more.cpython-312.opt-2.pyc @@ -466,8 +788,27 @@ /usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__pycache__/recipes.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__pycache__/recipes.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/more.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/more.pyi +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/py.typed /usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/recipes.py -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/ordered_set.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/recipes.pyi +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/ordered_set-4.1.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/ordered_set-4.1.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/ordered_set-4.1.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/ordered_set-4.1.0.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/ordered_set-4.1.0.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/ordered_set/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/ordered_set/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/ordered_set/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/ordered_set/py.typed +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging-24.1.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging-24.1.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging-24.1.dist-info/LICENSE.APACHE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging-24.1.dist-info/LICENSE.BSD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging-24.1.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging-24.1.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging-24.1.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging-24.1.dist-info/WHEEL /usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging/__init__.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-312.pyc @@ -505,11 +846,50 @@ /usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging/_tokenizer.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging/markers.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging/metadata.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging/py.typed /usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging/requirements.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging/specifiers.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging/tags.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging/utils.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging/version.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.2.2.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.2.2.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.2.2.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.2.2.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.2.2.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.2.2.dist-info/licenses/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__main__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/__main__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/android.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/android.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/api.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/api.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/macos.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/unix.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/version.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/version.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/windows.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/android.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/api.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/macos.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/py.typed +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/unix.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/version.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/windows.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/ruff.toml +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.0.1.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.0.1.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.0.1.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.0.1.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.0.1.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.0.1.dist-info/WHEEL /usr/local/lib/python3.12/site-packages/setuptools/_vendor/tomli/__init__.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/tomli/__pycache__/__init__.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/tomli/__pycache__/__init__.cpython-312.pyc @@ -522,8 +902,168 @@ /usr/local/lib/python3.12/site-packages/setuptools/_vendor/tomli/_parser.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/tomli/_re.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/tomli/_types.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/tomli/py.typed +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/entry_points.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/top_level.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_checkers.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_checkers.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_config.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_config.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_decorators.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_decorators.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_exceptions.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_exceptions.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_functions.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_functions.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_importhook.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_importhook.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_memo.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_memo.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_pytest_plugin.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_pytest_plugin.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_suppression.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_suppression.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_transformer.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_transformer.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_union_transformer.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_union_transformer.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_utils.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_utils.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_checkers.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_config.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_decorators.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_exceptions.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_functions.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_importhook.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_memo.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_pytest_plugin.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_suppression.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_transformer.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_union_transformer.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_utils.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/py.typed +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typing_extensions-4.12.2.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typing_extensions-4.12.2.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typing_extensions-4.12.2.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typing_extensions-4.12.2.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typing_extensions-4.12.2.dist-info/WHEEL /usr/local/lib/python3.12/site-packages/setuptools/_vendor/typing_extensions.py -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.43.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.43.0.dist-info/LICENSE.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.43.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.43.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.43.0.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.43.0.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.43.0.dist-info/entry_points.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__main__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/__main__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/__main__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/_setuptools_logging.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/_setuptools_logging.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/bdist_wheel.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/bdist_wheel.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/macosx_libfile.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/macosx_libfile.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/metadata.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/metadata.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/util.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/util.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/wheelfile.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/wheelfile.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/_setuptools_logging.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/bdist_wheel.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/__pycache__/convert.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/__pycache__/convert.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/__pycache__/pack.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/__pycache__/pack.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/__pycache__/tags.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/__pycache__/tags.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/__pycache__/unpack.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/__pycache__/unpack.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/convert.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/pack.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/tags.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/unpack.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/macosx_libfile.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/metadata.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/util.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_elffile.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_elffile.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_manylinux.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_manylinux.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_musllinux.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_musllinux.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_parser.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_parser.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_structures.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_structures.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_tokenizer.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_tokenizer.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/markers.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/markers.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/requirements.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/requirements.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/specifiers.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/specifiers.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/tags.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/tags.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/utils.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/utils.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/version.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/version.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/_elffile.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/_manylinux.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/_musllinux.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/_parser.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/_structures.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/_tokenizer.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/markers.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/requirements.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/specifiers.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/tags.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/utils.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/version.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/vendor.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/wheelfile.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/top_level.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp/__pycache__/glob.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp/__pycache__/glob.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__pycache__/py310.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__pycache__/py310.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/py310.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp/glob.py /usr/local/lib/python3.12/site-packages/setuptools/archive_util.py /usr/local/lib/python3.12/site-packages/setuptools/build_meta.py /usr/local/lib/python3.12/site-packages/setuptools/cli-32.exe @@ -541,6 +1081,8 @@ /usr/local/lib/python3.12/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/command/__pycache__/bdist_wheel.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/command/__pycache__/bdist_wheel.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/command/__pycache__/build.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/command/__pycache__/build.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/command/__pycache__/build_clib.cpython-312.opt-2.pyc @@ -587,6 +1129,7 @@ /usr/local/lib/python3.12/site-packages/setuptools/command/alias.py /usr/local/lib/python3.12/site-packages/setuptools/command/bdist_egg.py /usr/local/lib/python3.12/site-packages/setuptools/command/bdist_rpm.py +/usr/local/lib/python3.12/site-packages/setuptools/command/bdist_wheel.py /usr/local/lib/python3.12/site-packages/setuptools/command/build.py /usr/local/lib/python3.12/site-packages/setuptools/command/build_clib.py /usr/local/lib/python3.12/site-packages/setuptools/command/build_ext.py @@ -609,6 +1152,18 @@ /usr/local/lib/python3.12/site-packages/setuptools/command/test.py /usr/local/lib/python3.12/site-packages/setuptools/command/upload.py /usr/local/lib/python3.12/site-packages/setuptools/command/upload_docs.py +/usr/local/lib/python3.12/site-packages/setuptools/compat/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/compat/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/compat/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/compat/__pycache__/py310.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/compat/__pycache__/py310.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/compat/__pycache__/py311.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/compat/__pycache__/py311.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/compat/__pycache__/py39.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/compat/__pycache__/py39.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/compat/py310.py +/usr/local/lib/python3.12/site-packages/setuptools/compat/py311.py +/usr/local/lib/python3.12/site-packages/setuptools/compat/py39.py /usr/local/lib/python3.12/site-packages/setuptools/config/__init__.py /usr/local/lib/python3.12/site-packages/setuptools/config/__pycache__/__init__.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/config/__pycache__/__init__.cpython-312.pyc @@ -642,15 +1197,11 @@ /usr/local/lib/python3.12/site-packages/setuptools/config/expand.py /usr/local/lib/python3.12/site-packages/setuptools/config/pyprojecttoml.py /usr/local/lib/python3.12/site-packages/setuptools/config/setupcfg.py -/usr/local/lib/python3.12/site-packages/setuptools/dep_util.py /usr/local/lib/python3.12/site-packages/setuptools/depends.py /usr/local/lib/python3.12/site-packages/setuptools/discovery.py /usr/local/lib/python3.12/site-packages/setuptools/dist.py /usr/local/lib/python3.12/site-packages/setuptools/errors.py /usr/local/lib/python3.12/site-packages/setuptools/extension.py -/usr/local/lib/python3.12/site-packages/setuptools/extern/__init__.py -/usr/local/lib/python3.12/site-packages/setuptools/extern/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/extern/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/glob.py /usr/local/lib/python3.12/site-packages/setuptools/gui-32.exe /usr/local/lib/python3.12/site-packages/setuptools/gui-64.exe @@ -659,14 +1210,209 @@ /usr/local/lib/python3.12/site-packages/setuptools/installer.py /usr/local/lib/python3.12/site-packages/setuptools/launch.py /usr/local/lib/python3.12/site-packages/setuptools/logging.py +/usr/local/lib/python3.12/site-packages/setuptools/modified.py /usr/local/lib/python3.12/site-packages/setuptools/monkey.py /usr/local/lib/python3.12/site-packages/setuptools/msvc.py /usr/local/lib/python3.12/site-packages/setuptools/namespaces.py /usr/local/lib/python3.12/site-packages/setuptools/package_index.py -/usr/local/lib/python3.12/site-packages/setuptools/py312compat.py /usr/local/lib/python3.12/site-packages/setuptools/sandbox.py /usr/local/lib/python3.12/site-packages/setuptools/script (dev).tmpl /usr/local/lib/python3.12/site-packages/setuptools/script.tmpl +/usr/local/lib/python3.12/site-packages/setuptools/tests/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/contexts.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/contexts.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/environment.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/environment.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/fixtures.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/fixtures.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/mod_with_constant.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/mod_with_constant.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/namespaces.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/namespaces.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/script-with-bom.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/script-with-bom.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/server.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/server.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_archive_util.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_archive_util.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_bdist_deprecations.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_bdist_deprecations.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_bdist_egg.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_bdist_egg.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_bdist_wheel.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_bdist_wheel.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_clib.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_clib.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_ext.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_ext.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_meta.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_meta.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_py.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_py.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_config_discovery.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_config_discovery.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_core_metadata.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_core_metadata.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_depends.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_depends.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_develop.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_develop.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_dist.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_dist.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_dist_info.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_dist_info.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_distutils_adoption.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_distutils_adoption.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_easy_install.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_easy_install.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_editable_install.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_editable_install.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_egg_info.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_egg_info.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_extern.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_extern.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_find_packages.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_find_packages.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_find_py_modules.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_find_py_modules.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_glob.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_glob.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_install_scripts.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_install_scripts.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_integration.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_integration.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_logging.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_logging.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_manifest.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_manifest.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_msvc14.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_msvc14.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_namespaces.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_namespaces.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_packageindex.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_packageindex.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_register.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_register.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_sandbox.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_sandbox.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_sdist.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_sdist.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_setopt.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_setopt.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_setuptools.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_setuptools.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_unicode_utils.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_unicode_utils.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_upload.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_upload.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_virtualenv.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_virtualenv.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_warnings.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_warnings.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_wheel.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_wheel.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_windows_wrappers.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_windows_wrappers.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/text.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/text.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/textwrap.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/textwrap.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/compat/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/compat/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/compat/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/compat/__pycache__/py39.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/compat/__pycache__/py39.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/compat/py39.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_apply_pyprojecttoml.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_apply_pyprojecttoml.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_expand.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_expand.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_pyprojecttoml.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_pyprojecttoml.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_pyprojecttoml_dynamic_deps.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_pyprojecttoml_dynamic_deps.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_setupcfg.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_setupcfg.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/downloads/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/downloads/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/downloads/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/downloads/__pycache__/preload.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/downloads/__pycache__/preload.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/downloads/preload.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/setupcfg_examples.txt +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/test_apply_pyprojecttoml.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/test_expand.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/test_pyprojecttoml.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/test_pyprojecttoml_dynamic_deps.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/test_setupcfg.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/contexts.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/environment.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/fixtures.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/indexes/test_links_priority/external.html +/usr/local/lib/python3.12/site-packages/setuptools/tests/indexes/test_links_priority/simple/foobar/index.html +/usr/local/lib/python3.12/site-packages/setuptools/tests/integration/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/integration/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/integration/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/integration/__pycache__/helpers.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/integration/__pycache__/helpers.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/integration/__pycache__/test_pip_install_sdist.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/integration/__pycache__/test_pip_install_sdist.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/integration/helpers.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/integration/test_pip_install_sdist.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/mod_with_constant.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/namespaces.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/script-with-bom.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/server.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_archive_util.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_bdist_deprecations.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_bdist_egg.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_bdist_wheel.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_build.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_build_clib.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_build_ext.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_build_meta.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_build_py.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_config_discovery.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_core_metadata.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_depends.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_develop.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_dist.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_dist_info.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_distutils_adoption.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_easy_install.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_editable_install.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_egg_info.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_extern.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_find_packages.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_find_py_modules.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_glob.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_install_scripts.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_integration.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_logging.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_manifest.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_msvc14.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_namespaces.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_packageindex.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_register.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_sandbox.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_sdist.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_setopt.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_setuptools.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_unicode_utils.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_upload.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_virtualenv.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_warnings.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_wheel.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_windows_wrappers.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/text.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/textwrap.py /usr/local/lib/python3.12/site-packages/setuptools/unicode_utils.py /usr/local/lib/python3.12/site-packages/setuptools/version.py /usr/local/lib/python3.12/site-packages/setuptools/warnings.py diff --git a/manifest/i686/p/py3_sphinxcontrib_applehelp.filelist b/manifest/i686/p/py3_sphinxcontrib_applehelp.filelist index 31a2b09e7..345f8e8aa 100644 --- a/manifest/i686/p/py3_sphinxcontrib_applehelp.filelist +++ b/manifest/i686/p/py3_sphinxcontrib_applehelp.filelist @@ -102,10 +102,10 @@ /usr/local/lib/python3.12/site-packages/sphinxcontrib/applehelp/locales/zh_CN/LC_MESSAGES/sphinxcontrib.applehelp.po /usr/local/lib/python3.12/site-packages/sphinxcontrib/applehelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.applehelp.mo /usr/local/lib/python3.12/site-packages/sphinxcontrib/applehelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.applehelp.po +/usr/local/lib/python3.12/site-packages/sphinxcontrib/applehelp/py.typed /usr/local/lib/python3.12/site-packages/sphinxcontrib/applehelp/templates/_access.html_t -/usr/local/lib/python3.12/site-packages/sphinxcontrib_applehelp-1.0.8.dist-info/INSTALLER -/usr/local/lib/python3.12/site-packages/sphinxcontrib_applehelp-1.0.8.dist-info/LICENSE -/usr/local/lib/python3.12/site-packages/sphinxcontrib_applehelp-1.0.8.dist-info/METADATA -/usr/local/lib/python3.12/site-packages/sphinxcontrib_applehelp-1.0.8.dist-info/RECORD -/usr/local/lib/python3.12/site-packages/sphinxcontrib_applehelp-1.0.8.dist-info/REQUESTED -/usr/local/lib/python3.12/site-packages/sphinxcontrib_applehelp-1.0.8.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/sphinxcontrib_applehelp-2.0.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/sphinxcontrib_applehelp-2.0.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/sphinxcontrib_applehelp-2.0.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/sphinxcontrib_applehelp-2.0.0.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/sphinxcontrib_applehelp-2.0.0.dist-info/WHEEL diff --git a/manifest/i686/p/py3_sphinxcontrib_devhelp.filelist b/manifest/i686/p/py3_sphinxcontrib_devhelp.filelist index a43abe000..a08953ef6 100644 --- a/manifest/i686/p/py3_sphinxcontrib_devhelp.filelist +++ b/manifest/i686/p/py3_sphinxcontrib_devhelp.filelist @@ -98,9 +98,8 @@ /usr/local/lib/python3.12/site-packages/sphinxcontrib/devhelp/locales/zh_CN/LC_MESSAGES/sphinxcontrib.devhelp.po /usr/local/lib/python3.12/site-packages/sphinxcontrib/devhelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.devhelp.mo /usr/local/lib/python3.12/site-packages/sphinxcontrib/devhelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.devhelp.po -/usr/local/lib/python3.12/site-packages/sphinxcontrib_devhelp-1.0.6.dist-info/INSTALLER -/usr/local/lib/python3.12/site-packages/sphinxcontrib_devhelp-1.0.6.dist-info/LICENSE -/usr/local/lib/python3.12/site-packages/sphinxcontrib_devhelp-1.0.6.dist-info/METADATA -/usr/local/lib/python3.12/site-packages/sphinxcontrib_devhelp-1.0.6.dist-info/RECORD -/usr/local/lib/python3.12/site-packages/sphinxcontrib_devhelp-1.0.6.dist-info/REQUESTED -/usr/local/lib/python3.12/site-packages/sphinxcontrib_devhelp-1.0.6.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/sphinxcontrib_devhelp-2.0.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/sphinxcontrib_devhelp-2.0.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/sphinxcontrib_devhelp-2.0.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/sphinxcontrib_devhelp-2.0.0.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/sphinxcontrib_devhelp-2.0.0.dist-info/WHEEL diff --git a/manifest/i686/p/py3_sphinxcontrib_htmlhelp.filelist b/manifest/i686/p/py3_sphinxcontrib_htmlhelp.filelist index 83ee7cc79..db5fa521f 100644 --- a/manifest/i686/p/py3_sphinxcontrib_htmlhelp.filelist +++ b/manifest/i686/p/py3_sphinxcontrib_htmlhelp.filelist @@ -110,12 +110,12 @@ /usr/local/lib/python3.12/site-packages/sphinxcontrib/htmlhelp/locales/zh_CN/LC_MESSAGES/sphinxcontrib.htmlhelp.po /usr/local/lib/python3.12/site-packages/sphinxcontrib/htmlhelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.htmlhelp.mo /usr/local/lib/python3.12/site-packages/sphinxcontrib/htmlhelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.htmlhelp.po +/usr/local/lib/python3.12/site-packages/sphinxcontrib/htmlhelp/py.typed /usr/local/lib/python3.12/site-packages/sphinxcontrib/htmlhelp/templates/project.hhc /usr/local/lib/python3.12/site-packages/sphinxcontrib/htmlhelp/templates/project.hhp /usr/local/lib/python3.12/site-packages/sphinxcontrib/htmlhelp/templates/project.stp -/usr/local/lib/python3.12/site-packages/sphinxcontrib_htmlhelp-2.0.5.dist-info/INSTALLER -/usr/local/lib/python3.12/site-packages/sphinxcontrib_htmlhelp-2.0.5.dist-info/LICENSE -/usr/local/lib/python3.12/site-packages/sphinxcontrib_htmlhelp-2.0.5.dist-info/METADATA -/usr/local/lib/python3.12/site-packages/sphinxcontrib_htmlhelp-2.0.5.dist-info/RECORD -/usr/local/lib/python3.12/site-packages/sphinxcontrib_htmlhelp-2.0.5.dist-info/REQUESTED -/usr/local/lib/python3.12/site-packages/sphinxcontrib_htmlhelp-2.0.5.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/sphinxcontrib_htmlhelp-2.1.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/sphinxcontrib_htmlhelp-2.1.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/sphinxcontrib_htmlhelp-2.1.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/sphinxcontrib_htmlhelp-2.1.0.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/sphinxcontrib_htmlhelp-2.1.0.dist-info/WHEEL diff --git a/manifest/i686/p/py3_sphinxcontrib_qthelp.filelist b/manifest/i686/p/py3_sphinxcontrib_qthelp.filelist index c5c58fe35..1fe0b26be 100644 --- a/manifest/i686/p/py3_sphinxcontrib_qthelp.filelist +++ b/manifest/i686/p/py3_sphinxcontrib_qthelp.filelist @@ -98,11 +98,11 @@ /usr/local/lib/python3.12/site-packages/sphinxcontrib/qthelp/locales/zh_CN/LC_MESSAGES/sphinxcontrib.qthelp.po /usr/local/lib/python3.12/site-packages/sphinxcontrib/qthelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.qthelp.mo /usr/local/lib/python3.12/site-packages/sphinxcontrib/qthelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.qthelp.po +/usr/local/lib/python3.12/site-packages/sphinxcontrib/qthelp/py.typed /usr/local/lib/python3.12/site-packages/sphinxcontrib/qthelp/templates/project.qhcp /usr/local/lib/python3.12/site-packages/sphinxcontrib/qthelp/templates/project.qhp -/usr/local/lib/python3.12/site-packages/sphinxcontrib_qthelp-1.0.7.dist-info/INSTALLER -/usr/local/lib/python3.12/site-packages/sphinxcontrib_qthelp-1.0.7.dist-info/LICENSE -/usr/local/lib/python3.12/site-packages/sphinxcontrib_qthelp-1.0.7.dist-info/METADATA -/usr/local/lib/python3.12/site-packages/sphinxcontrib_qthelp-1.0.7.dist-info/RECORD -/usr/local/lib/python3.12/site-packages/sphinxcontrib_qthelp-1.0.7.dist-info/REQUESTED -/usr/local/lib/python3.12/site-packages/sphinxcontrib_qthelp-1.0.7.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/sphinxcontrib_qthelp-2.0.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/sphinxcontrib_qthelp-2.0.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/sphinxcontrib_qthelp-2.0.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/sphinxcontrib_qthelp-2.0.0.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/sphinxcontrib_qthelp-2.0.0.dist-info/WHEEL diff --git a/manifest/i686/p/py3_sphinxcontrib_serializinghtml.filelist b/manifest/i686/p/py3_sphinxcontrib_serializinghtml.filelist index c0ab39876..ba177f1d2 100644 --- a/manifest/i686/p/py3_sphinxcontrib_serializinghtml.filelist +++ b/manifest/i686/p/py3_sphinxcontrib_serializinghtml.filelist @@ -112,9 +112,9 @@ /usr/local/lib/python3.12/site-packages/sphinxcontrib/serializinghtml/locales/zh_CN/LC_MESSAGES/sphinxcontrib.serializinghtml.po /usr/local/lib/python3.12/site-packages/sphinxcontrib/serializinghtml/locales/zh_TW/LC_MESSAGES/sphinxcontrib.serializinghtml.mo /usr/local/lib/python3.12/site-packages/sphinxcontrib/serializinghtml/locales/zh_TW/LC_MESSAGES/sphinxcontrib.serializinghtml.po -/usr/local/lib/python3.12/site-packages/sphinxcontrib_serializinghtml-1.1.10.dist-info/INSTALLER -/usr/local/lib/python3.12/site-packages/sphinxcontrib_serializinghtml-1.1.10.dist-info/LICENSE -/usr/local/lib/python3.12/site-packages/sphinxcontrib_serializinghtml-1.1.10.dist-info/METADATA -/usr/local/lib/python3.12/site-packages/sphinxcontrib_serializinghtml-1.1.10.dist-info/RECORD -/usr/local/lib/python3.12/site-packages/sphinxcontrib_serializinghtml-1.1.10.dist-info/REQUESTED -/usr/local/lib/python3.12/site-packages/sphinxcontrib_serializinghtml-1.1.10.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/sphinxcontrib/serializinghtml/py.typed +/usr/local/lib/python3.12/site-packages/sphinxcontrib_serializinghtml-2.0.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/sphinxcontrib_serializinghtml-2.0.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/sphinxcontrib_serializinghtml-2.0.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/sphinxcontrib_serializinghtml-2.0.0.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/sphinxcontrib_serializinghtml-2.0.0.dist-info/WHEEL diff --git a/manifest/i686/p/py3_virtualenv.filelist b/manifest/i686/p/py3_virtualenv.filelist index 26710663d..112a34684 100644 --- a/manifest/i686/p/py3_virtualenv.filelist +++ b/manifest/i686/p/py3_virtualenv.filelist @@ -2,7 +2,10 @@ /usr/local/lib/python3.12/site-packages/virtualenv-20.26.3.dist-info/INSTALLER /usr/local/lib/python3.12/site-packages/virtualenv-20.26.3.dist-info/METADATA /usr/local/lib/python3.12/site-packages/virtualenv-20.26.3.dist-info/RECORD +<<<<<<< HEAD /usr/local/lib/python3.12/site-packages/virtualenv-20.26.3.dist-info/REQUESTED +======= +>>>>>>> b85a8d8da (python updates) /usr/local/lib/python3.12/site-packages/virtualenv-20.26.3.dist-info/WHEEL /usr/local/lib/python3.12/site-packages/virtualenv-20.26.3.dist-info/entry_points.txt /usr/local/lib/python3.12/site-packages/virtualenv-20.26.3.dist-info/licenses/LICENSE diff --git a/manifest/i686/p/python3.filelist b/manifest/i686/p/python3.filelist index 724acce8f..629e2c86b 100644 --- a/manifest/i686/p/python3.filelist +++ b/manifest/i686/p/python3.filelist @@ -1652,7 +1652,7 @@ /usr/local/lib/python3.12/ensurepip/__pycache__/_uninstall.cpython-312.opt-1.pyc /usr/local/lib/python3.12/ensurepip/__pycache__/_uninstall.cpython-312.opt-2.pyc /usr/local/lib/python3.12/ensurepip/__pycache__/_uninstall.cpython-312.pyc -/usr/local/lib/python3.12/ensurepip/_bundled/pip-24.0-py3-none-any.whl +/usr/local/lib/python3.12/ensurepip/_bundled/pip-24.2-py3-none-any.whl /usr/local/lib/python3.12/ensurepip/_uninstall.py /usr/local/lib/python3.12/enum.py /usr/local/lib/python3.12/filecmp.py @@ -2435,9 +2435,9 @@ /usr/local/lib/python3.12/lib-dynload/xxsubtype.cpython-312-i386-linux-gnu.so /usr/local/lib/python3.12/lib-dynload/zlib.cpython-312-i386-linux-gnu.so /usr/local/lib/python3.12/lib2to3/Grammar.txt -/usr/local/lib/python3.12/lib2to3/Grammar3.12.4.final.0.pickle +/usr/local/lib/python3.12/lib2to3/Grammar3.12.5.final.0.pickle /usr/local/lib/python3.12/lib2to3/PatternGrammar.txt -/usr/local/lib/python3.12/lib2to3/PatternGrammar3.12.4.final.0.pickle +/usr/local/lib/python3.12/lib2to3/PatternGrammar3.12.5.final.0.pickle /usr/local/lib/python3.12/lib2to3/__init__.py /usr/local/lib/python3.12/lib2to3/__main__.py /usr/local/lib/python3.12/lib2to3/__pycache__/__init__.cpython-312.opt-1.pyc @@ -2910,15 +2910,15 @@ /usr/local/lib/python3.12/shutil.py /usr/local/lib/python3.12/signal.py /usr/local/lib/python3.12/site-packages/README.txt -/usr/local/lib/python3.12/site-packages/pip-24.0.dist-info/AUTHORS.txt -/usr/local/lib/python3.12/site-packages/pip-24.0.dist-info/INSTALLER -/usr/local/lib/python3.12/site-packages/pip-24.0.dist-info/LICENSE.txt -/usr/local/lib/python3.12/site-packages/pip-24.0.dist-info/METADATA -/usr/local/lib/python3.12/site-packages/pip-24.0.dist-info/RECORD -/usr/local/lib/python3.12/site-packages/pip-24.0.dist-info/REQUESTED -/usr/local/lib/python3.12/site-packages/pip-24.0.dist-info/WHEEL -/usr/local/lib/python3.12/site-packages/pip-24.0.dist-info/entry_points.txt -/usr/local/lib/python3.12/site-packages/pip-24.0.dist-info/top_level.txt +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/AUTHORS.txt +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/LICENSE.txt +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/entry_points.txt +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/top_level.txt /usr/local/lib/python3.12/site-packages/pip/__init__.py /usr/local/lib/python3.12/site-packages/pip/__main__.py /usr/local/lib/python3.12/site-packages/pip/__pip-runner__.py @@ -2943,6 +2943,7 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc @@ -2954,6 +2955,7 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/cli/base_command.py /usr/local/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py /usr/local/lib/python3.12/site-packages/pip/_internal/cli/command_context.py +/usr/local/lib/python3.12/site-packages/pip/_internal/cli/index_command.py /usr/local/lib/python3.12/site-packages/pip/_internal/cli/main.py /usr/local/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py /usr/local/lib/python3.12/site-packages/pip/_internal/cli/parser.py @@ -3171,8 +3173,8 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/models.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/retry.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc @@ -3197,8 +3199,8 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/utils/hashes.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/logging.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/misc.py -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/models.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/packaging.py +/usr/local/lib/python3.12/site-packages/pip/_internal/utils/retry.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/setuptools_build.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py @@ -3221,7 +3223,6 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/wheel_builder.py /usr/local/lib/python3.12/site-packages/pip/_vendor/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/__pycache__/six.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc @@ -3256,129 +3257,6 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem /usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/core.py /usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/py.typed -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachinedict.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/macromanprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/resultdict.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf1632prober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/big5freq.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/big5prober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/chardistribution.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/charsetgroupprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/charsetprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/cli/chardetect.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/codingstatemachine.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/codingstatemachinedict.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/cp949prober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/enums.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/escprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/escsm.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/eucjpprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/euckrfreq.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/euckrprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/euctwfreq.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/euctwprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/gb2312freq.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/gb2312prober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/hebrewprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/jisfreq.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/johabfreq.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/johabprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/jpcntx.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langbulgarianmodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langgreekmodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langhebrewmodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langhungarianmodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langrussianmodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langthaimodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langturkishmodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/latin1prober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/macromanprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/mbcharsetprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/mbcsgroupprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/mbcssm.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/languages.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/py.typed -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/resultdict.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/sbcharsetprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/sbcsgroupprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/sjisprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/universaldetector.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/utf1632prober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/utf8prober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/version.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/ansi.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/ansitowin32.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/initialise.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/ansi_test.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/ansitowin32_test.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/initialise_test.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/isatty_test.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/utils.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/winterm_test.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/ansi_test.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/initialise_test.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/isatty_test.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/utils.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/winterm_test.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/win32.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/winterm.py /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc @@ -3443,23 +3321,29 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py /usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py /usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__about__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/_elffile.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/_parser.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/metadata.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/py.typed /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py @@ -3552,32 +3436,11 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/style.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/styles/_mapping.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/token.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/unistring.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/util.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/actions.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/common.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/core.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/exceptions.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/helpers.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/results.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/testing.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/unicode.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/util.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/actions.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/common.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/core.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/diagram/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/exceptions.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/helpers.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/py.typed -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/results.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/testing.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/unicode.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/util.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-312.pyc @@ -3794,30 +3657,6 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/themes.py /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/traceback.py /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/tree.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/six.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/_asyncio.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/_utils.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/after.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/before.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/before_sleep.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/nap.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/py.typed -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/retry.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/stop.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/tornadoweb.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/wait.py /usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc @@ -3920,16 +3759,6 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/url.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/wait.py /usr/local/lib/python3.12/site-packages/pip/_vendor/vendor.txt -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/labels.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/mklabels.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/tests.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/x_user_defined.py /usr/local/lib/python3.12/site-packages/pip/py.typed /usr/local/lib/python3.12/site.py /usr/local/lib/python3.12/smtplib.py @@ -4122,9 +3951,6 @@ /usr/local/lib/python3.12/test/__pycache__/test_asdl_parser.cpython-312.opt-1.pyc /usr/local/lib/python3.12/test/__pycache__/test_asdl_parser.cpython-312.opt-2.pyc /usr/local/lib/python3.12/test/__pycache__/test_asdl_parser.cpython-312.pyc -/usr/local/lib/python3.12/test/__pycache__/test_ast.cpython-312.opt-1.pyc -/usr/local/lib/python3.12/test/__pycache__/test_ast.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/test/__pycache__/test_ast.cpython-312.pyc /usr/local/lib/python3.12/test/__pycache__/test_asyncgen.cpython-312.opt-1.pyc /usr/local/lib/python3.12/test/__pycache__/test_asyncgen.cpython-312.opt-2.pyc /usr/local/lib/python3.12/test/__pycache__/test_asyncgen.cpython-312.pyc @@ -5918,7 +5744,22 @@ /usr/local/lib/python3.12/test/test_argparse.py /usr/local/lib/python3.12/test/test_array.py /usr/local/lib/python3.12/test/test_asdl_parser.py -/usr/local/lib/python3.12/test/test_ast.py +/usr/local/lib/python3.12/test/test_ast/__init__.py +/usr/local/lib/python3.12/test/test_ast/__pycache__/__init__.cpython-312.opt-1.pyc +/usr/local/lib/python3.12/test/test_ast/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/test/test_ast/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/test/test_ast/__pycache__/snippets.cpython-312.opt-1.pyc +/usr/local/lib/python3.12/test/test_ast/__pycache__/snippets.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/test/test_ast/__pycache__/snippets.cpython-312.pyc +/usr/local/lib/python3.12/test/test_ast/__pycache__/test_ast.cpython-312.opt-1.pyc +/usr/local/lib/python3.12/test/test_ast/__pycache__/test_ast.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/test/test_ast/__pycache__/test_ast.cpython-312.pyc +/usr/local/lib/python3.12/test/test_ast/__pycache__/utils.cpython-312.opt-1.pyc +/usr/local/lib/python3.12/test/test_ast/__pycache__/utils.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/test/test_ast/__pycache__/utils.cpython-312.pyc +/usr/local/lib/python3.12/test/test_ast/snippets.py +/usr/local/lib/python3.12/test/test_ast/test_ast.py +/usr/local/lib/python3.12/test/test_ast/utils.py /usr/local/lib/python3.12/test/test_asyncgen.py /usr/local/lib/python3.12/test/test_asyncio/__init__.py /usr/local/lib/python3.12/test/test_asyncio/__main__.py @@ -7381,6 +7222,9 @@ /usr/local/lib/python3.12/test/test_inspect/__pycache__/inspect_stringized_annotations_2.cpython-312.opt-1.pyc /usr/local/lib/python3.12/test/test_inspect/__pycache__/inspect_stringized_annotations_2.cpython-312.opt-2.pyc /usr/local/lib/python3.12/test/test_inspect/__pycache__/inspect_stringized_annotations_2.cpython-312.pyc +/usr/local/lib/python3.12/test/test_inspect/__pycache__/inspect_stringized_annotations_pep695.cpython-312.opt-1.pyc +/usr/local/lib/python3.12/test/test_inspect/__pycache__/inspect_stringized_annotations_pep695.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/test/test_inspect/__pycache__/inspect_stringized_annotations_pep695.cpython-312.pyc /usr/local/lib/python3.12/test/test_inspect/__pycache__/test_inspect.cpython-312.opt-1.pyc /usr/local/lib/python3.12/test/test_inspect/__pycache__/test_inspect.cpython-312.opt-2.pyc /usr/local/lib/python3.12/test/test_inspect/__pycache__/test_inspect.cpython-312.pyc @@ -7389,6 +7233,7 @@ /usr/local/lib/python3.12/test/test_inspect/inspect_stock_annotations.py /usr/local/lib/python3.12/test/test_inspect/inspect_stringized_annotations.py /usr/local/lib/python3.12/test/test_inspect/inspect_stringized_annotations_2.py +/usr/local/lib/python3.12/test/test_inspect/inspect_stringized_annotations_pep695.py /usr/local/lib/python3.12/test/test_inspect/test_inspect.py /usr/local/lib/python3.12/test/test_int.py /usr/local/lib/python3.12/test/test_int_literal.py @@ -8157,6 +8002,9 @@ /usr/local/lib/python3.12/test/test_unittest/__pycache__/test_suite.cpython-312.opt-1.pyc /usr/local/lib/python3.12/test/test_unittest/__pycache__/test_suite.cpython-312.opt-2.pyc /usr/local/lib/python3.12/test/test_unittest/__pycache__/test_suite.cpython-312.pyc +/usr/local/lib/python3.12/test/test_unittest/__pycache__/test_util.cpython-312.opt-1.pyc +/usr/local/lib/python3.12/test/test_unittest/__pycache__/test_util.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/test/test_unittest/__pycache__/test_util.cpython-312.pyc /usr/local/lib/python3.12/test/test_unittest/_test_warnings.py /usr/local/lib/python3.12/test/test_unittest/dummy.py /usr/local/lib/python3.12/test/test_unittest/support.py @@ -8173,6 +8021,7 @@ /usr/local/lib/python3.12/test/test_unittest/test_setups.py /usr/local/lib/python3.12/test/test_unittest/test_skipping.py /usr/local/lib/python3.12/test/test_unittest/test_suite.py +/usr/local/lib/python3.12/test/test_unittest/test_util.py /usr/local/lib/python3.12/test/test_unittest/testmock/__init__.py /usr/local/lib/python3.12/test/test_unittest/testmock/__main__.py /usr/local/lib/python3.12/test/test_unittest/testmock/__pycache__/__init__.cpython-312.opt-1.pyc diff --git a/manifest/i686/s/shared_mime_info.filelist b/manifest/i686/s/shared_mime_info.filelist index dd7004986..f598ee1e8 100644 --- a/manifest/i686/s/shared_mime_info.filelist +++ b/manifest/i686/s/shared_mime_info.filelist @@ -1,4 +1,7 @@ /usr/local/bin/update-mime-database +/usr/local/share/gettext/its/shared-mime-info.its +/usr/local/share/gettext/its/shared-mime-info.loc +/usr/local/share/locale/af/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/ar/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/as/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/ast/LC_MESSAGES/shared-mime-info.mo @@ -33,12 +36,14 @@ /usr/local/share/locale/hu/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/ia/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/id/LC_MESSAGES/shared-mime-info.mo +/usr/local/share/locale/is/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/it/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/ja/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/ka/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/kk/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/kn/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/ko/LC_MESSAGES/shared-mime-info.mo +/usr/local/share/locale/ky/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/lt/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/lv/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/ml/LC_MESSAGES/shared-mime-info.mo @@ -56,6 +61,7 @@ /usr/local/share/locale/ro/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/ru/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/rw/LC_MESSAGES/shared-mime-info.mo +/usr/local/share/locale/si/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/sk/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/sl/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/sq/LC_MESSAGES/shared-mime-info.mo @@ -72,797 +78,6 @@ /usr/local/share/locale/zh_CN/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/zh_HK/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/zh_TW/LC_MESSAGES/shared-mime-info.mo -/usr/local/share/man/man1/update-mime-database.1.gz -/usr/local/share/mime/XMLnamespaces -/usr/local/share/mime/aliases -/usr/local/share/mime/application/andrew-inset.xml -/usr/local/share/mime/application/annodex.xml -/usr/local/share/mime/application/atom+xml.xml -/usr/local/share/mime/application/dicom.xml -/usr/local/share/mime/application/ecmascript.xml -/usr/local/share/mime/application/epub+zip.xml -/usr/local/share/mime/application/geo+json.xml -/usr/local/share/mime/application/gml+xml.xml -/usr/local/share/mime/application/gnunet-directory.xml -/usr/local/share/mime/application/gpx+xml.xml -/usr/local/share/mime/application/gzip.xml -/usr/local/share/mime/application/illustrator.xml -/usr/local/share/mime/application/javascript.xml -/usr/local/share/mime/application/jrd+json.xml -/usr/local/share/mime/application/json-patch+json.xml -/usr/local/share/mime/application/json.xml -/usr/local/share/mime/application/ld+json.xml -/usr/local/share/mime/application/mac-binhex40.xml -/usr/local/share/mime/application/mathematica.xml -/usr/local/share/mime/application/mathml+xml.xml -/usr/local/share/mime/application/mbox.xml -/usr/local/share/mime/application/metalink+xml.xml -/usr/local/share/mime/application/metalink4+xml.xml -/usr/local/share/mime/application/msword-template.xml -/usr/local/share/mime/application/msword.xml -/usr/local/share/mime/application/mxf.xml -/usr/local/share/mime/application/octet-stream.xml -/usr/local/share/mime/application/oda.xml -/usr/local/share/mime/application/ogg.xml -/usr/local/share/mime/application/owl+xml.xml -/usr/local/share/mime/application/oxps.xml -/usr/local/share/mime/application/pdf.xml -/usr/local/share/mime/application/pgp-encrypted.xml -/usr/local/share/mime/application/pgp-keys.xml -/usr/local/share/mime/application/pgp-signature.xml -/usr/local/share/mime/application/pkcs10.xml -/usr/local/share/mime/application/pkcs12.xml -/usr/local/share/mime/application/pkcs7-mime.xml -/usr/local/share/mime/application/pkcs7-signature.xml -/usr/local/share/mime/application/pkcs8-encrypted.xml -/usr/local/share/mime/application/pkcs8.xml -/usr/local/share/mime/application/pkix-cert.xml -/usr/local/share/mime/application/pkix-crl.xml -/usr/local/share/mime/application/pkix-pkipath.xml -/usr/local/share/mime/application/postscript.xml -/usr/local/share/mime/application/prs.plucker.xml -/usr/local/share/mime/application/ram.xml -/usr/local/share/mime/application/raml+yaml.xml -/usr/local/share/mime/application/rdf+xml.xml -/usr/local/share/mime/application/relax-ng-compact-syntax.xml -/usr/local/share/mime/application/rss+xml.xml -/usr/local/share/mime/application/rtf.xml -/usr/local/share/mime/application/sdp.xml -/usr/local/share/mime/application/sieve.xml -/usr/local/share/mime/application/smil+xml.xml -/usr/local/share/mime/application/sql.xml -/usr/local/share/mime/application/trig.xml -/usr/local/share/mime/application/vnd.adobe.flash.movie.xml -/usr/local/share/mime/application/vnd.android.package-archive.xml -/usr/local/share/mime/application/vnd.appimage.xml -/usr/local/share/mime/application/vnd.apple.mpegurl.xml -/usr/local/share/mime/application/vnd.chess-pgn.xml -/usr/local/share/mime/application/vnd.coffeescript.xml -/usr/local/share/mime/application/vnd.comicbook+zip.xml -/usr/local/share/mime/application/vnd.comicbook-rar.xml -/usr/local/share/mime/application/vnd.corel-draw.xml -/usr/local/share/mime/application/vnd.debian.binary-package.xml -/usr/local/share/mime/application/vnd.emusic-emusic_package.xml -/usr/local/share/mime/application/vnd.flatpak.ref.xml -/usr/local/share/mime/application/vnd.flatpak.repo.xml -/usr/local/share/mime/application/vnd.flatpak.xml -/usr/local/share/mime/application/vnd.framemaker.xml -/usr/local/share/mime/application/vnd.google-earth.kml+xml.xml -/usr/local/share/mime/application/vnd.google-earth.kmz.xml -/usr/local/share/mime/application/vnd.hp-hpgl.xml -/usr/local/share/mime/application/vnd.hp-pcl.xml -/usr/local/share/mime/application/vnd.iccprofile.xml -/usr/local/share/mime/application/vnd.lotus-1-2-3.xml -/usr/local/share/mime/application/vnd.lotus-wordpro.xml -/usr/local/share/mime/application/vnd.mozilla.xul+xml.xml -/usr/local/share/mime/application/vnd.ms-access.xml -/usr/local/share/mime/application/vnd.ms-asf.xml -/usr/local/share/mime/application/vnd.ms-cab-compressed.xml -/usr/local/share/mime/application/vnd.ms-excel.addin.macroenabled.12.xml -/usr/local/share/mime/application/vnd.ms-excel.sheet.binary.macroenabled.12.xml -/usr/local/share/mime/application/vnd.ms-excel.sheet.macroenabled.12.xml -/usr/local/share/mime/application/vnd.ms-excel.template.macroenabled.12.xml -/usr/local/share/mime/application/vnd.ms-excel.xml -/usr/local/share/mime/application/vnd.ms-htmlhelp.xml -/usr/local/share/mime/application/vnd.ms-powerpoint.addin.macroenabled.12.xml -/usr/local/share/mime/application/vnd.ms-powerpoint.presentation.macroenabled.12.xml -/usr/local/share/mime/application/vnd.ms-powerpoint.slide.macroenabled.12.xml -/usr/local/share/mime/application/vnd.ms-powerpoint.slideshow.macroenabled.12.xml -/usr/local/share/mime/application/vnd.ms-powerpoint.template.macroenabled.12.xml -/usr/local/share/mime/application/vnd.ms-powerpoint.xml -/usr/local/share/mime/application/vnd.ms-publisher.xml -/usr/local/share/mime/application/vnd.ms-tnef.xml -/usr/local/share/mime/application/vnd.ms-visio.drawing.macroenabled.main+xml.xml -/usr/local/share/mime/application/vnd.ms-visio.drawing.main+xml.xml -/usr/local/share/mime/application/vnd.ms-visio.stencil.macroenabled.main+xml.xml -/usr/local/share/mime/application/vnd.ms-visio.stencil.main+xml.xml -/usr/local/share/mime/application/vnd.ms-visio.template.macroenabled.main+xml.xml -/usr/local/share/mime/application/vnd.ms-visio.template.main+xml.xml -/usr/local/share/mime/application/vnd.ms-word.document.macroenabled.12.xml -/usr/local/share/mime/application/vnd.ms-word.template.macroenabled.12.xml -/usr/local/share/mime/application/vnd.ms-works.xml -/usr/local/share/mime/application/vnd.ms-wpl.xml -/usr/local/share/mime/application/vnd.nintendo.snes.rom.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.chart-template.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.chart.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.database.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.formula-template.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.formula.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.graphics-flat-xml.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.graphics-template.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.graphics.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.image.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.presentation-flat-xml.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.presentation-template.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.presentation.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.spreadsheet-flat-xml.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.spreadsheet-template.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.spreadsheet.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.text-flat-xml.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.text-master.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.text-template.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.text-web.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.text.xml -/usr/local/share/mime/application/vnd.openofficeorg.extension.xml -/usr/local/share/mime/application/vnd.openxmlformats-officedocument.presentationml.presentation.xml -/usr/local/share/mime/application/vnd.openxmlformats-officedocument.presentationml.slide.xml -/usr/local/share/mime/application/vnd.openxmlformats-officedocument.presentationml.slideshow.xml -/usr/local/share/mime/application/vnd.openxmlformats-officedocument.presentationml.template.xml -/usr/local/share/mime/application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.xml -/usr/local/share/mime/application/vnd.openxmlformats-officedocument.spreadsheetml.template.xml -/usr/local/share/mime/application/vnd.openxmlformats-officedocument.wordprocessingml.document.xml -/usr/local/share/mime/application/vnd.openxmlformats-officedocument.wordprocessingml.template.xml -/usr/local/share/mime/application/vnd.palm.xml -/usr/local/share/mime/application/vnd.rar.xml -/usr/local/share/mime/application/vnd.rn-realmedia.xml -/usr/local/share/mime/application/vnd.snap.xml -/usr/local/share/mime/application/vnd.sqlite3.xml -/usr/local/share/mime/application/vnd.squashfs.xml -/usr/local/share/mime/application/vnd.stardivision.calc.xml -/usr/local/share/mime/application/vnd.stardivision.chart.xml -/usr/local/share/mime/application/vnd.stardivision.draw.xml -/usr/local/share/mime/application/vnd.stardivision.impress.xml -/usr/local/share/mime/application/vnd.stardivision.mail.xml -/usr/local/share/mime/application/vnd.stardivision.math.xml -/usr/local/share/mime/application/vnd.stardivision.writer.xml -/usr/local/share/mime/application/vnd.sun.xml.calc.template.xml -/usr/local/share/mime/application/vnd.sun.xml.calc.xml -/usr/local/share/mime/application/vnd.sun.xml.draw.template.xml -/usr/local/share/mime/application/vnd.sun.xml.draw.xml -/usr/local/share/mime/application/vnd.sun.xml.impress.template.xml -/usr/local/share/mime/application/vnd.sun.xml.impress.xml -/usr/local/share/mime/application/vnd.sun.xml.math.xml -/usr/local/share/mime/application/vnd.sun.xml.writer.global.xml -/usr/local/share/mime/application/vnd.sun.xml.writer.template.xml -/usr/local/share/mime/application/vnd.sun.xml.writer.xml -/usr/local/share/mime/application/vnd.symbian.install.xml -/usr/local/share/mime/application/vnd.tcpdump.pcap.xml -/usr/local/share/mime/application/vnd.visio.xml -/usr/local/share/mime/application/vnd.wordperfect.xml -/usr/local/share/mime/application/vnd.youtube.yt.xml -/usr/local/share/mime/application/winhlp.xml -/usr/local/share/mime/application/x-7z-compressed.xml -/usr/local/share/mime/application/x-abiword.xml -/usr/local/share/mime/application/x-ace.xml -/usr/local/share/mime/application/x-alz.xml -/usr/local/share/mime/application/x-amiga-disk-format.xml -/usr/local/share/mime/application/x-amipro.xml -/usr/local/share/mime/application/x-aportisdoc.xml -/usr/local/share/mime/application/x-apple-diskimage.xml -/usr/local/share/mime/application/x-applix-spreadsheet.xml -/usr/local/share/mime/application/x-applix-word.xml -/usr/local/share/mime/application/x-arc.xml -/usr/local/share/mime/application/x-archive.xml -/usr/local/share/mime/application/x-arj.xml -/usr/local/share/mime/application/x-asp.xml -/usr/local/share/mime/application/x-atari-2600-rom.xml -/usr/local/share/mime/application/x-atari-7800-rom.xml -/usr/local/share/mime/application/x-atari-lynx-rom.xml -/usr/local/share/mime/application/x-awk.xml -/usr/local/share/mime/application/x-bcpio.xml -/usr/local/share/mime/application/x-bittorrent.xml -/usr/local/share/mime/application/x-blender.xml -/usr/local/share/mime/application/x-bsdiff.xml -/usr/local/share/mime/application/x-bzdvi.xml -/usr/local/share/mime/application/x-bzip-compressed-tar.xml -/usr/local/share/mime/application/x-bzip.xml -/usr/local/share/mime/application/x-bzpdf.xml -/usr/local/share/mime/application/x-bzpostscript.xml -/usr/local/share/mime/application/x-cb7.xml -/usr/local/share/mime/application/x-cbt.xml -/usr/local/share/mime/application/x-ccmx.xml -/usr/local/share/mime/application/x-cd-image.xml -/usr/local/share/mime/application/x-cdrdao-toc.xml -/usr/local/share/mime/application/x-cisco-vpn-settings.xml -/usr/local/share/mime/application/x-class-file.xml -/usr/local/share/mime/application/x-compress.xml -/usr/local/share/mime/application/x-compressed-tar.xml -/usr/local/share/mime/application/x-core.xml -/usr/local/share/mime/application/x-cpio-compressed.xml -/usr/local/share/mime/application/x-cpio.xml -/usr/local/share/mime/application/x-csh.xml -/usr/local/share/mime/application/x-cue.xml -/usr/local/share/mime/application/x-dar.xml -/usr/local/share/mime/application/x-dbf.xml -/usr/local/share/mime/application/x-dc-rom.xml -/usr/local/share/mime/application/x-designer.xml -/usr/local/share/mime/application/x-desktop.xml -/usr/local/share/mime/application/x-dia-diagram.xml -/usr/local/share/mime/application/x-dia-shape.xml -/usr/local/share/mime/application/x-docbook+xml.xml -/usr/local/share/mime/application/x-doom-wad.xml -/usr/local/share/mime/application/x-dvi.xml -/usr/local/share/mime/application/x-e-theme.xml -/usr/local/share/mime/application/x-egon.xml -/usr/local/share/mime/application/x-executable.xml -/usr/local/share/mime/application/x-fds-disk.xml -/usr/local/share/mime/application/x-fictionbook+xml.xml -/usr/local/share/mime/application/x-fluid.xml -/usr/local/share/mime/application/x-font-afm.xml -/usr/local/share/mime/application/x-font-bdf.xml -/usr/local/share/mime/application/x-font-dos.xml -/usr/local/share/mime/application/x-font-framemaker.xml -/usr/local/share/mime/application/x-font-libgrx.xml -/usr/local/share/mime/application/x-font-linux-psf.xml -/usr/local/share/mime/application/x-font-pcf.xml -/usr/local/share/mime/application/x-font-speedo.xml -/usr/local/share/mime/application/x-font-sunos-news.xml -/usr/local/share/mime/application/x-font-tex-tfm.xml -/usr/local/share/mime/application/x-font-tex.xml -/usr/local/share/mime/application/x-font-ttx.xml -/usr/local/share/mime/application/x-font-type1.xml -/usr/local/share/mime/application/x-font-vfont.xml -/usr/local/share/mime/application/x-gameboy-color-rom.xml -/usr/local/share/mime/application/x-gameboy-rom.xml -/usr/local/share/mime/application/x-gamecube-rom.xml -/usr/local/share/mime/application/x-gamegear-rom.xml -/usr/local/share/mime/application/x-gba-rom.xml -/usr/local/share/mime/application/x-gdbm.xml -/usr/local/share/mime/application/x-gedcom.xml -/usr/local/share/mime/application/x-genesis-32x-rom.xml -/usr/local/share/mime/application/x-genesis-rom.xml -/usr/local/share/mime/application/x-gettext-translation.xml -/usr/local/share/mime/application/x-glade.xml -/usr/local/share/mime/application/x-gnucash.xml -/usr/local/share/mime/application/x-gnumeric.xml -/usr/local/share/mime/application/x-gnuplot.xml -/usr/local/share/mime/application/x-go-sgf.xml -/usr/local/share/mime/application/x-graphite.xml -/usr/local/share/mime/application/x-gtk-builder.xml -/usr/local/share/mime/application/x-gtktalog.xml -/usr/local/share/mime/application/x-gz-font-linux-psf.xml -/usr/local/share/mime/application/x-gzdvi.xml -/usr/local/share/mime/application/x-gzpdf.xml -/usr/local/share/mime/application/x-gzpostscript.xml -/usr/local/share/mime/application/x-hdf.xml -/usr/local/share/mime/application/x-hfe-floppy-image.xml -/usr/local/share/mime/application/x-hwp.xml -/usr/local/share/mime/application/x-hwt.xml -/usr/local/share/mime/application/x-ica.xml -/usr/local/share/mime/application/x-iff.xml -/usr/local/share/mime/application/x-ipod-firmware.xml -/usr/local/share/mime/application/x-ipynb+json.xml -/usr/local/share/mime/application/x-iso9660-appimage.xml -/usr/local/share/mime/application/x-it87.xml -/usr/local/share/mime/application/x-iwork-keynote-sffkey.xml -/usr/local/share/mime/application/x-java-archive.xml -/usr/local/share/mime/application/x-java-jce-keystore.xml -/usr/local/share/mime/application/x-java-jnlp-file.xml -/usr/local/share/mime/application/x-java-keystore.xml -/usr/local/share/mime/application/x-java-pack200.xml -/usr/local/share/mime/application/x-java.xml -/usr/local/share/mime/application/x-jbuilder-project.xml -/usr/local/share/mime/application/x-karbon.xml -/usr/local/share/mime/application/x-kchart.xml -/usr/local/share/mime/application/x-kexi-connectiondata.xml -/usr/local/share/mime/application/x-kexiproject-shortcut.xml -/usr/local/share/mime/application/x-kexiproject-sqlite2.xml -/usr/local/share/mime/application/x-kexiproject-sqlite3.xml -/usr/local/share/mime/application/x-kformula.xml -/usr/local/share/mime/application/x-killustrator.xml -/usr/local/share/mime/application/x-kivio.xml -/usr/local/share/mime/application/x-kontour.xml -/usr/local/share/mime/application/x-kpovmodeler.xml -/usr/local/share/mime/application/x-kpresenter.xml -/usr/local/share/mime/application/x-krita.xml -/usr/local/share/mime/application/x-kspread-crypt.xml -/usr/local/share/mime/application/x-kspread.xml -/usr/local/share/mime/application/x-ksysv-package.xml -/usr/local/share/mime/application/x-kugar.xml -/usr/local/share/mime/application/x-kword-crypt.xml -/usr/local/share/mime/application/x-kword.xml -/usr/local/share/mime/application/x-lha.xml -/usr/local/share/mime/application/x-lhz.xml -/usr/local/share/mime/application/x-lrzip-compressed-tar.xml -/usr/local/share/mime/application/x-lrzip.xml -/usr/local/share/mime/application/x-lyx.xml -/usr/local/share/mime/application/x-lz4-compressed-tar.xml -/usr/local/share/mime/application/x-lz4.xml -/usr/local/share/mime/application/x-lzip-compressed-tar.xml -/usr/local/share/mime/application/x-lzip.xml -/usr/local/share/mime/application/x-lzma-compressed-tar.xml -/usr/local/share/mime/application/x-lzma.xml -/usr/local/share/mime/application/x-lzop.xml -/usr/local/share/mime/application/x-lzpdf.xml -/usr/local/share/mime/application/x-m4.xml -/usr/local/share/mime/application/x-macbinary.xml -/usr/local/share/mime/application/x-magicpoint.xml -/usr/local/share/mime/application/x-markaby.xml -/usr/local/share/mime/application/x-matroska.xml -/usr/local/share/mime/application/x-mif.xml -/usr/local/share/mime/application/x-mimearchive.xml -/usr/local/share/mime/application/x-mobipocket-ebook.xml -/usr/local/share/mime/application/x-mozilla-bookmarks.xml -/usr/local/share/mime/application/x-ms-dos-executable.xml -/usr/local/share/mime/application/x-ms-wim.xml -/usr/local/share/mime/application/x-msi.xml -/usr/local/share/mime/application/x-mswinurl.xml -/usr/local/share/mime/application/x-mswrite.xml -/usr/local/share/mime/application/x-msx-rom.xml -/usr/local/share/mime/application/x-n64-rom.xml -/usr/local/share/mime/application/x-nautilus-link.xml -/usr/local/share/mime/application/x-navi-animation.xml -/usr/local/share/mime/application/x-neo-geo-pocket-color-rom.xml -/usr/local/share/mime/application/x-neo-geo-pocket-rom.xml -/usr/local/share/mime/application/x-nes-rom.xml -/usr/local/share/mime/application/x-netcdf.xml -/usr/local/share/mime/application/x-netshow-channel.xml -/usr/local/share/mime/application/x-nintendo-ds-rom.xml -/usr/local/share/mime/application/x-nzb.xml -/usr/local/share/mime/application/x-object.xml -/usr/local/share/mime/application/x-ole-storage.xml -/usr/local/share/mime/application/x-oleo.xml -/usr/local/share/mime/application/x-pagemaker.xml -/usr/local/share/mime/application/x-pak.xml -/usr/local/share/mime/application/x-par2.xml -/usr/local/share/mime/application/x-partial-download.xml -/usr/local/share/mime/application/x-pc-engine-rom.xml -/usr/local/share/mime/application/x-pef-executable.xml -/usr/local/share/mime/application/x-perl.xml -/usr/local/share/mime/application/x-php.xml -/usr/local/share/mime/application/x-pkcs7-certificates.xml -/usr/local/share/mime/application/x-planperfect.xml -/usr/local/share/mime/application/x-pocket-word.xml -/usr/local/share/mime/application/x-profile.xml -/usr/local/share/mime/application/x-pw.xml -/usr/local/share/mime/application/x-python-bytecode.xml -/usr/local/share/mime/application/x-qpress.xml -/usr/local/share/mime/application/x-qtiplot.xml -/usr/local/share/mime/application/x-quattropro.xml -/usr/local/share/mime/application/x-quicktime-media-link.xml -/usr/local/share/mime/application/x-qw.xml -/usr/local/share/mime/application/x-raw-disk-image-xz-compressed.xml -/usr/local/share/mime/application/x-raw-disk-image.xml -/usr/local/share/mime/application/x-raw-floppy-disk-image.xml -/usr/local/share/mime/application/x-riff.xml -/usr/local/share/mime/application/x-rpm.xml -/usr/local/share/mime/application/x-ruby.xml -/usr/local/share/mime/application/x-sami.xml -/usr/local/share/mime/application/x-saturn-rom.xml -/usr/local/share/mime/application/x-sc.xml -/usr/local/share/mime/application/x-sega-cd-rom.xml -/usr/local/share/mime/application/x-sega-pico-rom.xml -/usr/local/share/mime/application/x-sg1000-rom.xml -/usr/local/share/mime/application/x-shar.xml -/usr/local/share/mime/application/x-shared-library-la.xml -/usr/local/share/mime/application/x-sharedlib.xml -/usr/local/share/mime/application/x-shellscript.xml -/usr/local/share/mime/application/x-shorten.xml -/usr/local/share/mime/application/x-siag.xml -/usr/local/share/mime/application/x-slp.xml -/usr/local/share/mime/application/x-smaf.xml -/usr/local/share/mime/application/x-sms-rom.xml -/usr/local/share/mime/application/x-source-rpm.xml -/usr/local/share/mime/application/x-spss-por.xml -/usr/local/share/mime/application/x-spss-sav.xml -/usr/local/share/mime/application/x-sqlite2.xml -/usr/local/share/mime/application/x-stuffit.xml -/usr/local/share/mime/application/x-subrip.xml -/usr/local/share/mime/application/x-sv4cpio.xml -/usr/local/share/mime/application/x-sv4crc.xml -/usr/local/share/mime/application/x-t602.xml -/usr/local/share/mime/application/x-tar.xml -/usr/local/share/mime/application/x-tarz.xml -/usr/local/share/mime/application/x-tex-gf.xml -/usr/local/share/mime/application/x-tex-pk.xml -/usr/local/share/mime/application/x-tgif.xml -/usr/local/share/mime/application/x-theme.xml -/usr/local/share/mime/application/x-thomson-cartridge-memo7.xml -/usr/local/share/mime/application/x-thomson-cassette.xml -/usr/local/share/mime/application/x-thomson-sap-image.xml -/usr/local/share/mime/application/x-toutdoux.xml -/usr/local/share/mime/application/x-trash.xml -/usr/local/share/mime/application/x-troff-man-compressed.xml -/usr/local/share/mime/application/x-troff-man.xml -/usr/local/share/mime/application/x-tzo.xml -/usr/local/share/mime/application/x-ufraw.xml -/usr/local/share/mime/application/x-ustar.xml -/usr/local/share/mime/application/x-virtual-boy-rom.xml -/usr/local/share/mime/application/x-wais-source.xml -/usr/local/share/mime/application/x-wii-rom.xml -/usr/local/share/mime/application/x-wii-wad.xml -/usr/local/share/mime/application/x-windows-themepack.xml -/usr/local/share/mime/application/x-wonderswan-color-rom.xml -/usr/local/share/mime/application/x-wonderswan-rom.xml -/usr/local/share/mime/application/x-wpg.xml -/usr/local/share/mime/application/x-wwf.xml -/usr/local/share/mime/application/x-x509-ca-cert.xml -/usr/local/share/mime/application/x-xar.xml -/usr/local/share/mime/application/x-xbel.xml -/usr/local/share/mime/application/x-xpinstall.xml -/usr/local/share/mime/application/x-xz-compressed-tar.xml -/usr/local/share/mime/application/x-xz.xml -/usr/local/share/mime/application/x-xzpdf.xml -/usr/local/share/mime/application/x-yaml.xml -/usr/local/share/mime/application/x-zerosize.xml -/usr/local/share/mime/application/x-zip-compressed-fb2.xml -/usr/local/share/mime/application/x-zoo.xml -/usr/local/share/mime/application/xhtml+xml.xml -/usr/local/share/mime/application/xliff+xml.xml -/usr/local/share/mime/application/xml-dtd.xml -/usr/local/share/mime/application/xml-external-parsed-entity.xml -/usr/local/share/mime/application/xml.xml -/usr/local/share/mime/application/xslt+xml.xml -/usr/local/share/mime/application/xspf+xml.xml -/usr/local/share/mime/application/zip.xml -/usr/local/share/mime/application/zlib.xml -/usr/local/share/mime/audio/aac.xml -/usr/local/share/mime/audio/ac3.xml -/usr/local/share/mime/audio/amr-wb.xml -/usr/local/share/mime/audio/amr.xml -/usr/local/share/mime/audio/annodex.xml -/usr/local/share/mime/audio/basic.xml -/usr/local/share/mime/audio/flac.xml -/usr/local/share/mime/audio/midi.xml -/usr/local/share/mime/audio/mp2.xml -/usr/local/share/mime/audio/mp4.xml -/usr/local/share/mime/audio/mpeg.xml -/usr/local/share/mime/audio/ogg.xml -/usr/local/share/mime/audio/prs.sid.xml -/usr/local/share/mime/audio/usac.xml -/usr/local/share/mime/audio/vnd.dts.hd.xml -/usr/local/share/mime/audio/vnd.dts.xml -/usr/local/share/mime/audio/vnd.rn-realaudio.xml -/usr/local/share/mime/audio/webm.xml -/usr/local/share/mime/audio/x-adpcm.xml -/usr/local/share/mime/audio/x-aifc.xml -/usr/local/share/mime/audio/x-aiff.xml -/usr/local/share/mime/audio/x-amzxml.xml -/usr/local/share/mime/audio/x-ape.xml -/usr/local/share/mime/audio/x-flac+ogg.xml -/usr/local/share/mime/audio/x-gsm.xml -/usr/local/share/mime/audio/x-iriver-pla.xml -/usr/local/share/mime/audio/x-it.xml -/usr/local/share/mime/audio/x-m4b.xml -/usr/local/share/mime/audio/x-m4r.xml -/usr/local/share/mime/audio/x-matroska.xml -/usr/local/share/mime/audio/x-minipsf.xml -/usr/local/share/mime/audio/x-mo3.xml -/usr/local/share/mime/audio/x-mod.xml -/usr/local/share/mime/audio/x-mpegurl.xml -/usr/local/share/mime/audio/x-ms-asx.xml -/usr/local/share/mime/audio/x-ms-wma.xml -/usr/local/share/mime/audio/x-musepack.xml -/usr/local/share/mime/audio/x-opus+ogg.xml -/usr/local/share/mime/audio/x-pn-audibleaudio.xml -/usr/local/share/mime/audio/x-psf.xml -/usr/local/share/mime/audio/x-psflib.xml -/usr/local/share/mime/audio/x-riff.xml -/usr/local/share/mime/audio/x-s3m.xml -/usr/local/share/mime/audio/x-scpls.xml -/usr/local/share/mime/audio/x-speex+ogg.xml -/usr/local/share/mime/audio/x-speex.xml -/usr/local/share/mime/audio/x-stm.xml -/usr/local/share/mime/audio/x-tta.xml -/usr/local/share/mime/audio/x-voc.xml -/usr/local/share/mime/audio/x-vorbis+ogg.xml -/usr/local/share/mime/audio/x-wav.xml -/usr/local/share/mime/audio/x-wavpack-correction.xml -/usr/local/share/mime/audio/x-wavpack.xml -/usr/local/share/mime/audio/x-xi.xml -/usr/local/share/mime/audio/x-xm.xml -/usr/local/share/mime/audio/x-xmf.xml -/usr/local/share/mime/font/collection.xml -/usr/local/share/mime/font/otf.xml -/usr/local/share/mime/font/ttf.xml -/usr/local/share/mime/font/woff.xml -/usr/local/share/mime/generic-icons -/usr/local/share/mime/globs -/usr/local/share/mime/globs2 -/usr/local/share/mime/icons -/usr/local/share/mime/image/bmp.xml -/usr/local/share/mime/image/cgm.xml -/usr/local/share/mime/image/dpx.xml -/usr/local/share/mime/image/emf.xml -/usr/local/share/mime/image/fax-g3.xml -/usr/local/share/mime/image/fits.xml -/usr/local/share/mime/image/g3fax.xml -/usr/local/share/mime/image/gif.xml -/usr/local/share/mime/image/heif.xml -/usr/local/share/mime/image/ief.xml -/usr/local/share/mime/image/jp2.xml -/usr/local/share/mime/image/jpeg.xml -/usr/local/share/mime/image/jpm.xml -/usr/local/share/mime/image/jpx.xml -/usr/local/share/mime/image/ktx.xml -/usr/local/share/mime/image/openraster.xml -/usr/local/share/mime/image/png.xml -/usr/local/share/mime/image/rle.xml -/usr/local/share/mime/image/svg+xml-compressed.xml -/usr/local/share/mime/image/svg+xml.xml -/usr/local/share/mime/image/tiff.xml -/usr/local/share/mime/image/vnd.adobe.photoshop.xml -/usr/local/share/mime/image/vnd.djvu+multipage.xml -/usr/local/share/mime/image/vnd.djvu.xml -/usr/local/share/mime/image/vnd.dwg.xml -/usr/local/share/mime/image/vnd.dxf.xml -/usr/local/share/mime/image/vnd.microsoft.icon.xml -/usr/local/share/mime/image/vnd.ms-modi.xml -/usr/local/share/mime/image/vnd.rn-realpix.xml -/usr/local/share/mime/image/vnd.wap.wbmp.xml -/usr/local/share/mime/image/vnd.zbrush.pcx.xml -/usr/local/share/mime/image/webp.xml -/usr/local/share/mime/image/wmf.xml -/usr/local/share/mime/image/x-3ds.xml -/usr/local/share/mime/image/x-adobe-dng.xml -/usr/local/share/mime/image/x-applix-graphics.xml -/usr/local/share/mime/image/x-bzeps.xml -/usr/local/share/mime/image/x-canon-cr2.xml -/usr/local/share/mime/image/x-canon-crw.xml -/usr/local/share/mime/image/x-cmu-raster.xml -/usr/local/share/mime/image/x-compressed-xcf.xml -/usr/local/share/mime/image/x-dcraw.xml -/usr/local/share/mime/image/x-dds.xml -/usr/local/share/mime/image/x-dib.xml -/usr/local/share/mime/image/x-eps.xml -/usr/local/share/mime/image/x-exr.xml -/usr/local/share/mime/image/x-fpx.xml -/usr/local/share/mime/image/x-fuji-raf.xml -/usr/local/share/mime/image/x-gimp-gbr.xml -/usr/local/share/mime/image/x-gimp-gih.xml -/usr/local/share/mime/image/x-gimp-pat.xml -/usr/local/share/mime/image/x-gzeps.xml -/usr/local/share/mime/image/x-icns.xml -/usr/local/share/mime/image/x-ilbm.xml -/usr/local/share/mime/image/x-jng.xml -/usr/local/share/mime/image/x-jp2-codestream.xml -/usr/local/share/mime/image/x-kodak-dcr.xml -/usr/local/share/mime/image/x-kodak-k25.xml -/usr/local/share/mime/image/x-kodak-kdc.xml -/usr/local/share/mime/image/x-lwo.xml -/usr/local/share/mime/image/x-lws.xml -/usr/local/share/mime/image/x-macpaint.xml -/usr/local/share/mime/image/x-minolta-mrw.xml -/usr/local/share/mime/image/x-msod.xml -/usr/local/share/mime/image/x-niff.xml -/usr/local/share/mime/image/x-nikon-nef.xml -/usr/local/share/mime/image/x-olympus-orf.xml -/usr/local/share/mime/image/x-panasonic-rw.xml -/usr/local/share/mime/image/x-panasonic-rw2.xml -/usr/local/share/mime/image/x-pentax-pef.xml -/usr/local/share/mime/image/x-photo-cd.xml -/usr/local/share/mime/image/x-pict.xml -/usr/local/share/mime/image/x-portable-anymap.xml -/usr/local/share/mime/image/x-portable-bitmap.xml -/usr/local/share/mime/image/x-portable-graymap.xml -/usr/local/share/mime/image/x-portable-pixmap.xml -/usr/local/share/mime/image/x-quicktime.xml -/usr/local/share/mime/image/x-rgb.xml -/usr/local/share/mime/image/x-sgi.xml -/usr/local/share/mime/image/x-sigma-x3f.xml -/usr/local/share/mime/image/x-skencil.xml -/usr/local/share/mime/image/x-sony-arw.xml -/usr/local/share/mime/image/x-sony-sr2.xml -/usr/local/share/mime/image/x-sony-srf.xml -/usr/local/share/mime/image/x-sun-raster.xml -/usr/local/share/mime/image/x-tga.xml -/usr/local/share/mime/image/x-tiff-multipage.xml -/usr/local/share/mime/image/x-win-bitmap.xml -/usr/local/share/mime/image/x-xbitmap.xml -/usr/local/share/mime/image/x-xcf.xml -/usr/local/share/mime/image/x-xcursor.xml -/usr/local/share/mime/image/x-xfig.xml -/usr/local/share/mime/image/x-xpixmap.xml -/usr/local/share/mime/image/x-xwindowdump.xml -/usr/local/share/mime/inode/blockdevice.xml -/usr/local/share/mime/inode/chardevice.xml -/usr/local/share/mime/inode/directory.xml -/usr/local/share/mime/inode/fifo.xml -/usr/local/share/mime/inode/mount-point.xml -/usr/local/share/mime/inode/socket.xml -/usr/local/share/mime/inode/symlink.xml -/usr/local/share/mime/magic -/usr/local/share/mime/message/delivery-status.xml -/usr/local/share/mime/message/disposition-notification.xml -/usr/local/share/mime/message/external-body.xml -/usr/local/share/mime/message/news.xml -/usr/local/share/mime/message/partial.xml -/usr/local/share/mime/message/rfc822.xml -/usr/local/share/mime/message/x-gnu-rmail.xml -/usr/local/share/mime/mime.cache -/usr/local/share/mime/model/iges.xml -/usr/local/share/mime/model/stl.xml -/usr/local/share/mime/model/vrml.xml -/usr/local/share/mime/multipart/alternative.xml -/usr/local/share/mime/multipart/appledouble.xml -/usr/local/share/mime/multipart/digest.xml -/usr/local/share/mime/multipart/encrypted.xml -/usr/local/share/mime/multipart/mixed.xml -/usr/local/share/mime/multipart/related.xml -/usr/local/share/mime/multipart/report.xml -/usr/local/share/mime/multipart/signed.xml -/usr/local/share/mime/multipart/x-mixed-replace.xml +/usr/local/share/man/man1/update-mime-database.1.zst /usr/local/share/mime/packages/freedesktop.org.xml -/usr/local/share/mime/subclasses -/usr/local/share/mime/text/cache-manifest.xml -/usr/local/share/mime/text/calendar.xml -/usr/local/share/mime/text/css.xml -/usr/local/share/mime/text/csv-schema.xml -/usr/local/share/mime/text/csv.xml -/usr/local/share/mime/text/enriched.xml -/usr/local/share/mime/text/html.xml -/usr/local/share/mime/text/htmlh.xml -/usr/local/share/mime/text/markdown.xml -/usr/local/share/mime/text/plain.xml -/usr/local/share/mime/text/rfc822-headers.xml -/usr/local/share/mime/text/richtext.xml -/usr/local/share/mime/text/rust.xml -/usr/local/share/mime/text/sgml.xml -/usr/local/share/mime/text/spreadsheet.xml -/usr/local/share/mime/text/tab-separated-values.xml -/usr/local/share/mime/text/troff.xml -/usr/local/share/mime/text/turtle.xml -/usr/local/share/mime/text/vcard.xml -/usr/local/share/mime/text/vnd.graphviz.xml -/usr/local/share/mime/text/vnd.qt.linguist.xml -/usr/local/share/mime/text/vnd.rn-realtext.xml -/usr/local/share/mime/text/vnd.sun.j2me.app-descriptor.xml -/usr/local/share/mime/text/vnd.wap.wml.xml -/usr/local/share/mime/text/vnd.wap.wmlscript.xml -/usr/local/share/mime/text/vtt.xml -/usr/local/share/mime/text/x-adasrc.xml -/usr/local/share/mime/text/x-authors.xml -/usr/local/share/mime/text/x-bibtex.xml -/usr/local/share/mime/text/x-c++hdr.xml -/usr/local/share/mime/text/x-c++src.xml -/usr/local/share/mime/text/x-changelog.xml -/usr/local/share/mime/text/x-chdr.xml -/usr/local/share/mime/text/x-cmake.xml -/usr/local/share/mime/text/x-cobol.xml -/usr/local/share/mime/text/x-copying.xml -/usr/local/share/mime/text/x-credits.xml -/usr/local/share/mime/text/x-csharp.xml -/usr/local/share/mime/text/x-csrc.xml -/usr/local/share/mime/text/x-dbus-service.xml -/usr/local/share/mime/text/x-dcl.xml -/usr/local/share/mime/text/x-dsl.xml -/usr/local/share/mime/text/x-dsrc.xml -/usr/local/share/mime/text/x-eiffel.xml -/usr/local/share/mime/text/x-emacs-lisp.xml -/usr/local/share/mime/text/x-erlang.xml -/usr/local/share/mime/text/x-fortran.xml -/usr/local/share/mime/text/x-genie.xml -/usr/local/share/mime/text/x-gettext-translation-template.xml -/usr/local/share/mime/text/x-gettext-translation.xml -/usr/local/share/mime/text/x-gherkin.xml -/usr/local/share/mime/text/x-go.xml -/usr/local/share/mime/text/x-google-video-pointer.xml -/usr/local/share/mime/text/x-haskell.xml -/usr/local/share/mime/text/x-idl.xml -/usr/local/share/mime/text/x-imelody.xml -/usr/local/share/mime/text/x-install.xml -/usr/local/share/mime/text/x-iptables.xml -/usr/local/share/mime/text/x-java.xml -/usr/local/share/mime/text/x-ldif.xml -/usr/local/share/mime/text/x-lilypond.xml -/usr/local/share/mime/text/x-literate-haskell.xml -/usr/local/share/mime/text/x-log.xml -/usr/local/share/mime/text/x-lua.xml -/usr/local/share/mime/text/x-makefile.xml -/usr/local/share/mime/text/x-matlab.xml -/usr/local/share/mime/text/x-meson.xml -/usr/local/share/mime/text/x-microdvd.xml -/usr/local/share/mime/text/x-moc.xml -/usr/local/share/mime/text/x-modelica.xml -/usr/local/share/mime/text/x-mof.xml -/usr/local/share/mime/text/x-mpsub.xml -/usr/local/share/mime/text/x-mrml.xml -/usr/local/share/mime/text/x-ms-regedit.xml -/usr/local/share/mime/text/x-mup.xml -/usr/local/share/mime/text/x-nfo.xml -/usr/local/share/mime/text/x-objcsrc.xml -/usr/local/share/mime/text/x-ocaml.xml -/usr/local/share/mime/text/x-ocl.xml -/usr/local/share/mime/text/x-ooc.xml -/usr/local/share/mime/text/x-opencl-src.xml -/usr/local/share/mime/text/x-opml+xml.xml -/usr/local/share/mime/text/x-pascal.xml -/usr/local/share/mime/text/x-patch.xml -/usr/local/share/mime/text/x-python.xml -/usr/local/share/mime/text/x-python3.xml -/usr/local/share/mime/text/x-qml.xml -/usr/local/share/mime/text/x-readme.xml -/usr/local/share/mime/text/x-reject.xml -/usr/local/share/mime/text/x-rpm-spec.xml -/usr/local/share/mime/text/x-sass.xml -/usr/local/share/mime/text/x-scala.xml -/usr/local/share/mime/text/x-scheme.xml -/usr/local/share/mime/text/x-scons.xml -/usr/local/share/mime/text/x-scss.xml -/usr/local/share/mime/text/x-setext.xml -/usr/local/share/mime/text/x-ssa.xml -/usr/local/share/mime/text/x-subviewer.xml -/usr/local/share/mime/text/x-svhdr.xml -/usr/local/share/mime/text/x-svsrc.xml -/usr/local/share/mime/text/x-systemd-unit.xml -/usr/local/share/mime/text/x-tcl.xml -/usr/local/share/mime/text/x-tex.xml -/usr/local/share/mime/text/x-texinfo.xml -/usr/local/share/mime/text/x-troff-me.xml -/usr/local/share/mime/text/x-troff-mm.xml -/usr/local/share/mime/text/x-troff-ms.xml -/usr/local/share/mime/text/x-twig.xml -/usr/local/share/mime/text/x-txt2tags.xml -/usr/local/share/mime/text/x-uil.xml -/usr/local/share/mime/text/x-uri.xml -/usr/local/share/mime/text/x-uuencode.xml -/usr/local/share/mime/text/x-vala.xml -/usr/local/share/mime/text/x-verilog.xml -/usr/local/share/mime/text/x-vhdl.xml -/usr/local/share/mime/text/x-xmi.xml -/usr/local/share/mime/text/x-xslfo.xml -/usr/local/share/mime/text/x.gcode.xml -/usr/local/share/mime/text/xmcd.xml -/usr/local/share/mime/treemagic -/usr/local/share/mime/types -/usr/local/share/mime/version -/usr/local/share/mime/video/3gpp.xml -/usr/local/share/mime/video/3gpp2.xml -/usr/local/share/mime/video/annodex.xml -/usr/local/share/mime/video/dv.xml -/usr/local/share/mime/video/isivideo.xml -/usr/local/share/mime/video/mj2.xml -/usr/local/share/mime/video/mp2t.xml -/usr/local/share/mime/video/mp4.xml -/usr/local/share/mime/video/mpeg.xml -/usr/local/share/mime/video/ogg.xml -/usr/local/share/mime/video/quicktime.xml -/usr/local/share/mime/video/vnd.mpegurl.xml -/usr/local/share/mime/video/vnd.rn-realvideo.xml -/usr/local/share/mime/video/vnd.vivo.xml -/usr/local/share/mime/video/wavelet.xml -/usr/local/share/mime/video/webm.xml -/usr/local/share/mime/video/x-anim.xml -/usr/local/share/mime/video/x-flic.xml -/usr/local/share/mime/video/x-flv.xml -/usr/local/share/mime/video/x-javafx.xml -/usr/local/share/mime/video/x-matroska-3d.xml -/usr/local/share/mime/video/x-matroska.xml -/usr/local/share/mime/video/x-mjpeg.xml -/usr/local/share/mime/video/x-mng.xml -/usr/local/share/mime/video/x-ms-wmv.xml -/usr/local/share/mime/video/x-msvideo.xml -/usr/local/share/mime/video/x-nsv.xml -/usr/local/share/mime/video/x-ogm+ogg.xml -/usr/local/share/mime/video/x-sgi-movie.xml -/usr/local/share/mime/video/x-theora+ogg.xml -/usr/local/share/mime/x-content/audio-cdda.xml -/usr/local/share/mime/x-content/audio-dvd.xml -/usr/local/share/mime/x-content/audio-player.xml -/usr/local/share/mime/x-content/blank-bd.xml -/usr/local/share/mime/x-content/blank-cd.xml -/usr/local/share/mime/x-content/blank-dvd.xml -/usr/local/share/mime/x-content/blank-hddvd.xml -/usr/local/share/mime/x-content/ebook-reader.xml -/usr/local/share/mime/x-content/image-dcf.xml -/usr/local/share/mime/x-content/image-picturecd.xml -/usr/local/share/mime/x-content/software.xml -/usr/local/share/mime/x-content/unix-software.xml -/usr/local/share/mime/x-content/video-bluray.xml -/usr/local/share/mime/x-content/video-dvd.xml -/usr/local/share/mime/x-content/video-hddvd.xml -/usr/local/share/mime/x-content/video-svcd.xml -/usr/local/share/mime/x-content/video-vcd.xml -/usr/local/share/mime/x-content/win32-software.xml -/usr/local/share/mime/x-epoc/x-sisx-app.xml /usr/local/share/pkgconfig/shared-mime-info.pc diff --git a/manifest/i686/s/sphinx.filelist b/manifest/i686/s/sphinx.filelist index 351f73019..26ee80c37 100644 --- a/manifest/i686/s/sphinx.filelist +++ b/manifest/i686/s/sphinx.filelist @@ -2,13 +2,13 @@ /usr/local/bin/sphinx-autogen /usr/local/bin/sphinx-build /usr/local/bin/sphinx-quickstart -/usr/local/lib/python3.12/site-packages/sphinx-7.4.5.dist-info/INSTALLER -/usr/local/lib/python3.12/site-packages/sphinx-7.4.5.dist-info/LICENSE.rst -/usr/local/lib/python3.12/site-packages/sphinx-7.4.5.dist-info/METADATA -/usr/local/lib/python3.12/site-packages/sphinx-7.4.5.dist-info/RECORD -/usr/local/lib/python3.12/site-packages/sphinx-7.4.5.dist-info/REQUESTED -/usr/local/lib/python3.12/site-packages/sphinx-7.4.5.dist-info/WHEEL -/usr/local/lib/python3.12/site-packages/sphinx-7.4.5.dist-info/entry_points.txt +/usr/local/lib/python3.12/site-packages/sphinx-8.0.2.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/sphinx-8.0.2.dist-info/LICENSE.rst +/usr/local/lib/python3.12/site-packages/sphinx-8.0.2.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/sphinx-8.0.2.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/sphinx-8.0.2.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/sphinx-8.0.2.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/sphinx-8.0.2.dist-info/entry_points.txt /usr/local/lib/python3.12/site-packages/sphinx/__init__.py /usr/local/lib/python3.12/site-packages/sphinx/__main__.py /usr/local/lib/python3.12/site-packages/sphinx/__pycache__/__init__.cpython-312.pyc @@ -548,10 +548,8 @@ /usr/local/lib/python3.12/site-packages/sphinx/templates/latex/sphinxmessages.sty.jinja /usr/local/lib/python3.12/site-packages/sphinx/templates/latex/tabular.tex.jinja /usr/local/lib/python3.12/site-packages/sphinx/templates/latex/tabulary.tex.jinja -/usr/local/lib/python3.12/site-packages/sphinx/templates/quickstart/Makefile.jinja /usr/local/lib/python3.12/site-packages/sphinx/templates/quickstart/Makefile.new.jinja /usr/local/lib/python3.12/site-packages/sphinx/templates/quickstart/conf.py.jinja -/usr/local/lib/python3.12/site-packages/sphinx/templates/quickstart/make.bat.jinja /usr/local/lib/python3.12/site-packages/sphinx/templates/quickstart/make.bat.new.jinja /usr/local/lib/python3.12/site-packages/sphinx/templates/quickstart/root_doc.rst.jinja /usr/local/lib/python3.12/site-packages/sphinx/templates/texinfo/Makefile @@ -711,6 +709,7 @@ /usr/local/lib/python3.12/site-packages/sphinx/util/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/sphinx/util/__pycache__/_io.cpython-312.pyc /usr/local/lib/python3.12/site-packages/sphinx/util/__pycache__/_pathlib.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/sphinx/util/__pycache__/_timestamps.cpython-312.pyc /usr/local/lib/python3.12/site-packages/sphinx/util/__pycache__/build_phase.cpython-312.pyc /usr/local/lib/python3.12/site-packages/sphinx/util/__pycache__/cfamily.cpython-312.pyc /usr/local/lib/python3.12/site-packages/sphinx/util/__pycache__/console.cpython-312.pyc @@ -742,6 +741,7 @@ /usr/local/lib/python3.12/site-packages/sphinx/util/__pycache__/typing.cpython-312.pyc /usr/local/lib/python3.12/site-packages/sphinx/util/_io.py /usr/local/lib/python3.12/site-packages/sphinx/util/_pathlib.py +/usr/local/lib/python3.12/site-packages/sphinx/util/_timestamps.py /usr/local/lib/python3.12/site-packages/sphinx/util/build_phase.py /usr/local/lib/python3.12/site-packages/sphinx/util/cfamily.py /usr/local/lib/python3.12/site-packages/sphinx/util/console.py diff --git a/manifest/i686/t/tdb.filelist b/manifest/i686/t/tdb.filelist index 9c2d54c6e..a4027b5de 100644 --- a/manifest/i686/t/tdb.filelist +++ b/manifest/i686/t/tdb.filelist @@ -5,7 +5,7 @@ /usr/local/include/tdb.h /usr/local/lib/libtdb.so /usr/local/lib/libtdb.so.1 -/usr/local/lib/libtdb.so.1.4.10 +/usr/local/lib/libtdb.so.1.4.12 /usr/local/lib/pkgconfig/tdb.pc /usr/local/lib/python3.12/site-packages/_tdb_text.py /usr/local/lib/python3.12/site-packages/tdb.cpython-312-i386-linux-gnu.so diff --git a/manifest/i686/u/uriparser.filelist b/manifest/i686/u/uriparser.filelist new file mode 100644 index 000000000..7fa569ea4 --- /dev/null +++ b/manifest/i686/u/uriparser.filelist @@ -0,0 +1,15 @@ +/usr/local/bin/uriparse +/usr/local/include/uriparser/Uri.h +/usr/local/include/uriparser/UriBase.h +/usr/local/include/uriparser/UriDefsAnsi.h +/usr/local/include/uriparser/UriDefsConfig.h +/usr/local/include/uriparser/UriDefsUnicode.h +/usr/local/include/uriparser/UriIp4.h +/usr/local/lib/cmake/uriparser-0.9.8/uriparser-config-version.cmake +/usr/local/lib/cmake/uriparser-0.9.8/uriparser-config.cmake +/usr/local/lib/cmake/uriparser-0.9.8/uriparser-release.cmake +/usr/local/lib/cmake/uriparser-0.9.8/uriparser.cmake +/usr/local/lib/liburiparser.so +/usr/local/lib/liburiparser.so.1 +/usr/local/lib/liburiparser.so.1.0.31 +/usr/local/lib/pkgconfig/liburiparser.pc diff --git a/manifest/i686/x/xmlto.filelist b/manifest/i686/x/xmlto.filelist index 894af0bdf..5d636573b 100644 --- a/manifest/i686/x/xmlto.filelist +++ b/manifest/i686/x/xmlto.filelist @@ -1,7 +1,7 @@ /usr/local/bin/xmlif /usr/local/bin/xmlto -/usr/local/share/man/man1/xmlif.1.gz -/usr/local/share/man/man1/xmlto.1.gz +/usr/local/share/man/man1/xmlif.1.zst +/usr/local/share/man/man1/xmlto.1.zst /usr/local/share/xmlto/format/docbook/awt /usr/local/share/xmlto/format/docbook/dvi /usr/local/share/xmlto/format/docbook/epub diff --git a/manifest/x86_64/a/appstream.filelist b/manifest/x86_64/a/appstream.filelist index a94f6bd34..86defa75f 100644 --- a/manifest/x86_64/a/appstream.filelist +++ b/manifest/x86_64/a/appstream.filelist @@ -55,9 +55,9 @@ /usr/local/lib64/girepository-1.0/AppStreamCompose-1.0.typelib /usr/local/lib64/libappstream-compose.so /usr/local/lib64/libappstream-compose.so.0 -/usr/local/lib64/libappstream-compose.so.1.0.2 +/usr/local/lib64/libappstream-compose.so.1.0.3 /usr/local/lib64/libappstream.so -/usr/local/lib64/libappstream.so.1.0.2 +/usr/local/lib64/libappstream.so.1.0.3 /usr/local/lib64/libappstream.so.5 /usr/local/lib64/pkgconfig/appstream-compose.pc /usr/local/lib64/pkgconfig/appstream.pc @@ -1201,6 +1201,7 @@ /usr/local/share/locale/hi/LC_MESSAGES/appstream.mo /usr/local/share/locale/hr/LC_MESSAGES/appstream.mo /usr/local/share/locale/hu/LC_MESSAGES/appstream.mo +/usr/local/share/locale/ia/LC_MESSAGES/appstream.mo /usr/local/share/locale/id/LC_MESSAGES/appstream.mo /usr/local/share/locale/it/LC_MESSAGES/appstream.mo /usr/local/share/locale/ja/LC_MESSAGES/appstream.mo diff --git a/manifest/x86_64/d/dehtml.filelist b/manifest/x86_64/d/dehtml.filelist index cd0d8f24e..987f0a8bd 100644 --- a/manifest/x86_64/d/dehtml.filelist +++ b/manifest/x86_64/d/dehtml.filelist @@ -1,5 +1,5 @@ /usr/local/bin/dehtml /usr/local/share/locale/de/LC_MESSAGES/dehtml.mo /usr/local/share/locale/nl/LC_MESSAGES/dehtml.mo -/usr/local/share/man/de/man1/dehtml.1.gz -/usr/local/share/man/man1/dehtml.1.gz +/usr/local/share/man/de/man1/dehtml.1.zst +/usr/local/share/man/man1/dehtml.1.zst diff --git a/manifest/x86_64/e/evolution_data_server.filelist b/manifest/x86_64/e/evolution_data_server.filelist index cb4be796a..82a040c7c 100644 --- a/manifest/x86_64/e/evolution_data_server.filelist +++ b/manifest/x86_64/e/evolution_data_server.filelist @@ -354,80 +354,80 @@ /usr/local/include/evolution-data-server/libedataserverui4/e-trust-prompt.h /usr/local/include/evolution-data-server/libedataserverui4/e-webdav-discover-widget.h /usr/local/include/evolution-data-server/libedataserverui4/libedataserverui4.h +/usr/local/lib/evolution-data-server/addressbook-backends/libebookbackendcarddav.so +/usr/local/lib/evolution-data-server/addressbook-backends/libebookbackendfile.so +/usr/local/lib/evolution-data-server/calendar-backends/libecalbackendcaldav.so +/usr/local/lib/evolution-data-server/calendar-backends/libecalbackendcontacts.so +/usr/local/lib/evolution-data-server/calendar-backends/libecalbackendfile.so +/usr/local/lib/evolution-data-server/calendar-backends/libecalbackendgtasks.so +/usr/local/lib/evolution-data-server/calendar-backends/libecalbackendhttp.so +/usr/local/lib/evolution-data-server/calendar-backends/libecalbackendwebdavnotes.so +/usr/local/lib/evolution-data-server/camel-providers/libcamelimapx.so +/usr/local/lib/evolution-data-server/camel-providers/libcamelimapx.urls +/usr/local/lib/evolution-data-server/camel-providers/libcamellocal.so +/usr/local/lib/evolution-data-server/camel-providers/libcamellocal.urls +/usr/local/lib/evolution-data-server/camel-providers/libcamelnntp.so +/usr/local/lib/evolution-data-server/camel-providers/libcamelnntp.urls +/usr/local/lib/evolution-data-server/camel-providers/libcamelpop3.so +/usr/local/lib/evolution-data-server/camel-providers/libcamelpop3.urls +/usr/local/lib/evolution-data-server/camel-providers/libcamelsendmail.so +/usr/local/lib/evolution-data-server/camel-providers/libcamelsendmail.urls +/usr/local/lib/evolution-data-server/camel-providers/libcamelsmtp.so +/usr/local/lib/evolution-data-server/camel-providers/libcamelsmtp.urls +/usr/local/lib/evolution-data-server/libedbus-private.so +/usr/local/lib/evolution-data-server/registry-modules/module-cache-reaper.so +/usr/local/lib/evolution-data-server/registry-modules/module-google-backend.so +/usr/local/lib/evolution-data-server/registry-modules/module-oauth2-services.so +/usr/local/lib/evolution-data-server/registry-modules/module-outlook-backend.so +/usr/local/lib/evolution-data-server/registry-modules/module-secret-monitor.so +/usr/local/lib/evolution-data-server/registry-modules/module-trust-prompt.so +/usr/local/lib/evolution-data-server/registry-modules/module-webdav-backend.so +/usr/local/lib/evolution-data-server/registry-modules/module-yahoo-backend.so +/usr/local/lib/libcamel-1.2.so +/usr/local/lib/libcamel-1.2.so.64 +/usr/local/lib/libcamel-1.2.so.64.0.0 +/usr/local/lib/libebackend-1.2.so +/usr/local/lib/libebackend-1.2.so.11 +/usr/local/lib/libebackend-1.2.so.11.0.0 +/usr/local/lib/libebook-1.2.so +/usr/local/lib/libebook-1.2.so.21 +/usr/local/lib/libebook-1.2.so.21.1.3 +/usr/local/lib/libebook-contacts-1.2.so +/usr/local/lib/libebook-contacts-1.2.so.4 +/usr/local/lib/libebook-contacts-1.2.so.4.0.0 +/usr/local/lib/libecal-2.0.so +/usr/local/lib/libecal-2.0.so.3 +/usr/local/lib/libecal-2.0.so.3.0.0 +/usr/local/lib/libedata-book-1.2.so +/usr/local/lib/libedata-book-1.2.so.27 +/usr/local/lib/libedata-book-1.2.so.27.0.0 +/usr/local/lib/libedata-cal-2.0.so +/usr/local/lib/libedata-cal-2.0.so.2 +/usr/local/lib/libedata-cal-2.0.so.2.0.0 +/usr/local/lib/libedataserver-1.2.so +/usr/local/lib/libedataserver-1.2.so.27 +/usr/local/lib/libedataserver-1.2.so.27.0.0 +/usr/local/lib/libedataserverui-1.2.so +/usr/local/lib/libedataserverui-1.2.so.4 +/usr/local/lib/libedataserverui-1.2.so.4.0.0 +/usr/local/lib/libedataserverui4-1.0.so +/usr/local/lib/libedataserverui4-1.0.so.0 +/usr/local/lib/libedataserverui4-1.0.so.0.0.0 +/usr/local/lib/pkgconfig/camel-1.2.pc +/usr/local/lib/pkgconfig/evolution-data-server-1.2.pc +/usr/local/lib/pkgconfig/libebackend-1.2.pc +/usr/local/lib/pkgconfig/libebook-1.2.pc +/usr/local/lib/pkgconfig/libebook-contacts-1.2.pc +/usr/local/lib/pkgconfig/libecal-2.0.pc +/usr/local/lib/pkgconfig/libedata-book-1.2.pc +/usr/local/lib/pkgconfig/libedata-cal-2.0.pc +/usr/local/lib/pkgconfig/libedataserver-1.2.pc +/usr/local/lib/pkgconfig/libedataserverui-1.2.pc +/usr/local/lib/pkgconfig/libedataserverui4-1.0.pc /usr/local/lib/systemd/user/evolution-addressbook-factory.service /usr/local/lib/systemd/user/evolution-calendar-factory.service /usr/local/lib/systemd/user/evolution-source-registry.service /usr/local/lib/systemd/user/evolution-user-prompter.service -/usr/local/lib64/evolution-data-server/addressbook-backends/libebookbackendcarddav.so -/usr/local/lib64/evolution-data-server/addressbook-backends/libebookbackendfile.so -/usr/local/lib64/evolution-data-server/calendar-backends/libecalbackendcaldav.so -/usr/local/lib64/evolution-data-server/calendar-backends/libecalbackendcontacts.so -/usr/local/lib64/evolution-data-server/calendar-backends/libecalbackendfile.so -/usr/local/lib64/evolution-data-server/calendar-backends/libecalbackendgtasks.so -/usr/local/lib64/evolution-data-server/calendar-backends/libecalbackendhttp.so -/usr/local/lib64/evolution-data-server/calendar-backends/libecalbackendwebdavnotes.so -/usr/local/lib64/evolution-data-server/camel-providers/libcamelimapx.so -/usr/local/lib64/evolution-data-server/camel-providers/libcamelimapx.urls -/usr/local/lib64/evolution-data-server/camel-providers/libcamellocal.so -/usr/local/lib64/evolution-data-server/camel-providers/libcamellocal.urls -/usr/local/lib64/evolution-data-server/camel-providers/libcamelnntp.so -/usr/local/lib64/evolution-data-server/camel-providers/libcamelnntp.urls -/usr/local/lib64/evolution-data-server/camel-providers/libcamelpop3.so -/usr/local/lib64/evolution-data-server/camel-providers/libcamelpop3.urls -/usr/local/lib64/evolution-data-server/camel-providers/libcamelsendmail.so -/usr/local/lib64/evolution-data-server/camel-providers/libcamelsendmail.urls -/usr/local/lib64/evolution-data-server/camel-providers/libcamelsmtp.so -/usr/local/lib64/evolution-data-server/camel-providers/libcamelsmtp.urls -/usr/local/lib64/evolution-data-server/libedbus-private.so -/usr/local/lib64/evolution-data-server/registry-modules/module-cache-reaper.so -/usr/local/lib64/evolution-data-server/registry-modules/module-google-backend.so -/usr/local/lib64/evolution-data-server/registry-modules/module-oauth2-services.so -/usr/local/lib64/evolution-data-server/registry-modules/module-outlook-backend.so -/usr/local/lib64/evolution-data-server/registry-modules/module-secret-monitor.so -/usr/local/lib64/evolution-data-server/registry-modules/module-trust-prompt.so -/usr/local/lib64/evolution-data-server/registry-modules/module-webdav-backend.so -/usr/local/lib64/evolution-data-server/registry-modules/module-yahoo-backend.so -/usr/local/lib64/libcamel-1.2.so -/usr/local/lib64/libcamel-1.2.so.64 -/usr/local/lib64/libcamel-1.2.so.64.0.0 -/usr/local/lib64/libebackend-1.2.so -/usr/local/lib64/libebackend-1.2.so.11 -/usr/local/lib64/libebackend-1.2.so.11.0.0 -/usr/local/lib64/libebook-1.2.so -/usr/local/lib64/libebook-1.2.so.21 -/usr/local/lib64/libebook-1.2.so.21.1.3 -/usr/local/lib64/libebook-contacts-1.2.so -/usr/local/lib64/libebook-contacts-1.2.so.4 -/usr/local/lib64/libebook-contacts-1.2.so.4.0.0 -/usr/local/lib64/libecal-2.0.so -/usr/local/lib64/libecal-2.0.so.3 -/usr/local/lib64/libecal-2.0.so.3.0.0 -/usr/local/lib64/libedata-book-1.2.so -/usr/local/lib64/libedata-book-1.2.so.27 -/usr/local/lib64/libedata-book-1.2.so.27.0.0 -/usr/local/lib64/libedata-cal-2.0.so -/usr/local/lib64/libedata-cal-2.0.so.2 -/usr/local/lib64/libedata-cal-2.0.so.2.0.0 -/usr/local/lib64/libedataserver-1.2.so -/usr/local/lib64/libedataserver-1.2.so.27 -/usr/local/lib64/libedataserver-1.2.so.27.0.0 -/usr/local/lib64/libedataserverui-1.2.so -/usr/local/lib64/libedataserverui-1.2.so.4 -/usr/local/lib64/libedataserverui-1.2.so.4.0.0 -/usr/local/lib64/libedataserverui4-1.0.so -/usr/local/lib64/libedataserverui4-1.0.so.0 -/usr/local/lib64/libedataserverui4-1.0.so.0.0.0 -/usr/local/lib64/pkgconfig/camel-1.2.pc -/usr/local/lib64/pkgconfig/evolution-data-server-1.2.pc -/usr/local/lib64/pkgconfig/libebackend-1.2.pc -/usr/local/lib64/pkgconfig/libebook-1.2.pc -/usr/local/lib64/pkgconfig/libebook-contacts-1.2.pc -/usr/local/lib64/pkgconfig/libecal-2.0.pc -/usr/local/lib64/pkgconfig/libedata-book-1.2.pc -/usr/local/lib64/pkgconfig/libedata-cal-2.0.pc -/usr/local/lib64/pkgconfig/libedataserver-1.2.pc -/usr/local/lib64/pkgconfig/libedataserverui-1.2.pc -/usr/local/lib64/pkgconfig/libedataserverui4-1.0.pc /usr/local/libexec/camel-gpg-photo-saver /usr/local/libexec/camel-index-control-1.2 /usr/local/libexec/camel-lock-helper-1.2 diff --git a/manifest/x86_64/g/geany_plugins.filelist b/manifest/x86_64/g/geany_plugins.filelist index 965f12a88..9a432a534 100644 --- a/manifest/x86_64/g/geany_plugins.filelist +++ b/manifest/x86_64/g/geany_plugins.filelist @@ -52,8 +52,6 @@ /usr/local/lib64/geany/pohelper.so /usr/local/lib64/geany/pretty-printer.la /usr/local/lib64/geany/pretty-printer.so -/usr/local/lib64/geany/projectorganizer.la -/usr/local/lib64/geany/projectorganizer.so /usr/local/lib64/geany/scope.la /usr/local/lib64/geany/scope.so /usr/local/lib64/geany/sendmail.la @@ -237,11 +235,6 @@ /usr/local/share/doc/geany-plugins/pohelper/ChangeLog /usr/local/share/doc/geany-plugins/pohelper/NEWS /usr/local/share/doc/geany-plugins/pohelper/README -/usr/local/share/doc/geany-plugins/projectorganizer/AUTHORS -/usr/local/share/doc/geany-plugins/projectorganizer/COPYING -/usr/local/share/doc/geany-plugins/projectorganizer/ChangeLog -/usr/local/share/doc/geany-plugins/projectorganizer/NEWS -/usr/local/share/doc/geany-plugins/projectorganizer/README /usr/local/share/doc/geany-plugins/scope/AUTHORS /usr/local/share/doc/geany-plugins/scope/COPYING /usr/local/share/doc/geany-plugins/scope/ChangeLog diff --git a/manifest/x86_64/g/glib.filelist b/manifest/x86_64/g/glib.filelist index 524aa0d76..8e1c3691d 100644 --- a/manifest/x86_64/g/glib.filelist +++ b/manifest/x86_64/g/glib.filelist @@ -331,23 +331,23 @@ /usr/local/lib64/glib-2.0/include/glibconfig.h /usr/local/lib64/libgio-2.0.so /usr/local/lib64/libgio-2.0.so.0 -/usr/local/lib64/libgio-2.0.so.0.8000.0 +/usr/local/lib64/libgio-2.0.so.0.8101.0 /usr/local/lib64/libgirepository-2.0.so /usr/local/lib64/libgirepository-2.0.so.0 -/usr/local/lib64/libgirepository-2.0.so.0.8000.0 +/usr/local/lib64/libgirepository-2.0.so.0.8101.0 /usr/local/lib64/libglib-2.0.la /usr/local/lib64/libglib-2.0.so /usr/local/lib64/libglib-2.0.so.0 -/usr/local/lib64/libglib-2.0.so.0.8000.0 +/usr/local/lib64/libglib-2.0.so.0.8101.0 /usr/local/lib64/libgmodule-2.0.so /usr/local/lib64/libgmodule-2.0.so.0 -/usr/local/lib64/libgmodule-2.0.so.0.8000.0 +/usr/local/lib64/libgmodule-2.0.so.0.8101.0 /usr/local/lib64/libgobject-2.0.so /usr/local/lib64/libgobject-2.0.so.0 -/usr/local/lib64/libgobject-2.0.so.0.8000.0 +/usr/local/lib64/libgobject-2.0.so.0.8101.0 /usr/local/lib64/libgthread-2.0.so /usr/local/lib64/libgthread-2.0.so.0 -/usr/local/lib64/libgthread-2.0.so.0.8000.0 +/usr/local/lib64/libgthread-2.0.so.0.8101.0 /usr/local/lib64/pkgconfig/gio-2.0.pc /usr/local/lib64/pkgconfig/gio-unix-2.0.pc /usr/local/lib64/pkgconfig/girepository-2.0.pc @@ -366,8 +366,8 @@ /usr/local/share/bash-completion/completions/gio /usr/local/share/bash-completion/completions/gresource /usr/local/share/bash-completion/completions/gsettings -/usr/local/share/gdb/auto-load/usr/local/lib64/libglib-2.0.so.0.8000.0-gdb.py -/usr/local/share/gdb/auto-load/usr/local/lib64/libgobject-2.0.so.0.8000.0-gdb.py +/usr/local/share/gdb/auto-load/usr/local/lib64/libglib-2.0.so.0.8101.0-gdb.py +/usr/local/share/gdb/auto-load/usr/local/lib64/libgobject-2.0.so.0.8101.0-gdb.py /usr/local/share/gettext/its/gschema.its /usr/local/share/gettext/its/gschema.loc /usr/local/share/gir-1.0/GIRepository-3.0.gir @@ -441,6 +441,7 @@ /usr/local/share/locale/it/LC_MESSAGES/glib20.mo /usr/local/share/locale/ja/LC_MESSAGES/glib20.mo /usr/local/share/locale/ka/LC_MESSAGES/glib20.mo +/usr/local/share/locale/kab/LC_MESSAGES/glib20.mo /usr/local/share/locale/kk/LC_MESSAGES/glib20.mo /usr/local/share/locale/kn/LC_MESSAGES/glib20.mo /usr/local/share/locale/ko/LC_MESSAGES/glib20.mo diff --git a/manifest/x86_64/g/gnome_text_editor.filelist b/manifest/x86_64/g/gnome_text_editor.filelist index 002a97243..1ada2c588 100644 --- a/manifest/x86_64/g/gnome_text_editor.filelist +++ b/manifest/x86_64/g/gnome_text_editor.filelist @@ -1,266 +1,12 @@ /usr/local/bin/gnome-text-editor -/usr/local/include/gtksourceview-5/gtksourceview/completion-providers/snippets/gtksourcecompletionsnippets.h -/usr/local/include/gtksourceview-5/gtksourceview/completion-providers/words/gtksourcecompletionwords.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksource-enumtypes.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksource.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcebuffer.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcecompletion.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcecompletioncell.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcecompletioncontext.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcecompletionproposal.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcecompletionprovider.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourceencoding.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcefile.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcefileloader.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcefilesaver.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcegutter.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcegutterlines.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcegutterrenderer.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcegutterrendererpixbuf.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcegutterrenderertext.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcehover.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcehovercontext.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcehoverdisplay.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcehoverprovider.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourceindenter.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourceinit.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcelanguage.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcelanguagemanager.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcemap.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcemark.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcemarkattributes.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourceprintcompositor.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourceregion.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcescheduler.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcesearchcontext.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcesearchsettings.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcesnippet.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcesnippetchunk.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcesnippetcontext.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcesnippetmanager.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcespacedrawer.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcestyle.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcestylescheme.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcestyleschemechooser.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcestyleschemechooserbutton.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcestyleschemechooserwidget.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcestyleschememanager.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcestyleschemepreview.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcetag.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcetypes.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourceutils.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourceversion.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourceview.h -/usr/local/include/gtksourceview-5/gtksourceview/gtksourcevimimcontext.h -/usr/local/lib64/girepository-1.0/GtkSource-5.typelib -/usr/local/lib64/libgtksourceview-5.so -/usr/local/lib64/libgtksourceview-5.so.0 -/usr/local/lib64/libgtksourceview-5.so.0.0.0 -/usr/local/lib64/pkgconfig/gtksourceview-5.pc /usr/local/share/applications/org.gnome.TextEditor.desktop /usr/local/share/dbus-1/services/org.gnome.TextEditor.service -/usr/local/share/gir-1.0/GtkSource-5.gir /usr/local/share/glib-2.0/schemas/org.gnome.TextEditor.gschema.xml /usr/local/share/gnome-text-editor/styles/builder-dark.xml /usr/local/share/gnome-text-editor/styles/builder.xml /usr/local/share/gnome-text-editor/styles/peninsula-dark.xml /usr/local/share/gnome-text-editor/styles/peninsula.xml /usr/local/share/gnome-text-editor/styles/printing.xml -/usr/local/share/gtksourceview-5/fonts/BuilderBlocks.ttf -/usr/local/share/gtksourceview-5/language-specs/R.lang -/usr/local/share/gtksourceview-5/language-specs/abnf.lang -/usr/local/share/gtksourceview-5/language-specs/actionscript.lang -/usr/local/share/gtksourceview-5/language-specs/ada.lang -/usr/local/share/gtksourceview-5/language-specs/ansforth94.lang -/usr/local/share/gtksourceview-5/language-specs/asciidoc.lang -/usr/local/share/gtksourceview-5/language-specs/asp.lang -/usr/local/share/gtksourceview-5/language-specs/automake.lang -/usr/local/share/gtksourceview-5/language-specs/awk.lang -/usr/local/share/gtksourceview-5/language-specs/bennugd.lang -/usr/local/share/gtksourceview-5/language-specs/bibtex.lang -/usr/local/share/gtksourceview-5/language-specs/blueprint.lang -/usr/local/share/gtksourceview-5/language-specs/bluespec.lang -/usr/local/share/gtksourceview-5/language-specs/boo.lang -/usr/local/share/gtksourceview-5/language-specs/c.lang -/usr/local/share/gtksourceview-5/language-specs/cg.lang -/usr/local/share/gtksourceview-5/language-specs/changelog.lang -/usr/local/share/gtksourceview-5/language-specs/chdr.lang -/usr/local/share/gtksourceview-5/language-specs/cmake.lang -/usr/local/share/gtksourceview-5/language-specs/cobol.lang -/usr/local/share/gtksourceview-5/language-specs/commonlisp.lang -/usr/local/share/gtksourceview-5/language-specs/cpp.lang -/usr/local/share/gtksourceview-5/language-specs/cpphdr.lang -/usr/local/share/gtksourceview-5/language-specs/csharp.lang -/usr/local/share/gtksourceview-5/language-specs/css.lang -/usr/local/share/gtksourceview-5/language-specs/csv.lang -/usr/local/share/gtksourceview-5/language-specs/cuda.lang -/usr/local/share/gtksourceview-5/language-specs/d.lang -/usr/local/share/gtksourceview-5/language-specs/dart.lang -/usr/local/share/gtksourceview-5/language-specs/def.lang -/usr/local/share/gtksourceview-5/language-specs/desktop.lang -/usr/local/share/gtksourceview-5/language-specs/diff.lang -/usr/local/share/gtksourceview-5/language-specs/docbook.lang -/usr/local/share/gtksourceview-5/language-specs/docker.lang -/usr/local/share/gtksourceview-5/language-specs/dosbatch.lang -/usr/local/share/gtksourceview-5/language-specs/dot.lang -/usr/local/share/gtksourceview-5/language-specs/dpatch.lang -/usr/local/share/gtksourceview-5/language-specs/dtd.lang -/usr/local/share/gtksourceview-5/language-specs/dtl.lang -/usr/local/share/gtksourceview-5/language-specs/eiffel.lang -/usr/local/share/gtksourceview-5/language-specs/elixir.lang -/usr/local/share/gtksourceview-5/language-specs/erb-html.lang -/usr/local/share/gtksourceview-5/language-specs/erb-js.lang -/usr/local/share/gtksourceview-5/language-specs/erb.lang -/usr/local/share/gtksourceview-5/language-specs/erlang.lang -/usr/local/share/gtksourceview-5/language-specs/fcl.lang -/usr/local/share/gtksourceview-5/language-specs/fish.lang -/usr/local/share/gtksourceview-5/language-specs/forth.lang -/usr/local/share/gtksourceview-5/language-specs/fortran.lang -/usr/local/share/gtksourceview-5/language-specs/fsharp.lang -/usr/local/share/gtksourceview-5/language-specs/ftl.lang -/usr/local/share/gtksourceview-5/language-specs/gap.lang -/usr/local/share/gtksourceview-5/language-specs/gdb-log.lang -/usr/local/share/gtksourceview-5/language-specs/gdscript.lang -/usr/local/share/gtksourceview-5/language-specs/genie.lang -/usr/local/share/gtksourceview-5/language-specs/glsl.lang -/usr/local/share/gtksourceview-5/language-specs/go.lang -/usr/local/share/gtksourceview-5/language-specs/gradle.lang -/usr/local/share/gtksourceview-5/language-specs/groovy.lang -/usr/local/share/gtksourceview-5/language-specs/gtk-doc.lang -/usr/local/share/gtksourceview-5/language-specs/gtkrc.lang -/usr/local/share/gtksourceview-5/language-specs/haddock.lang -/usr/local/share/gtksourceview-5/language-specs/haskell-literate.lang -/usr/local/share/gtksourceview-5/language-specs/haskell.lang -/usr/local/share/gtksourceview-5/language-specs/haxe.lang -/usr/local/share/gtksourceview-5/language-specs/html.lang -/usr/local/share/gtksourceview-5/language-specs/idl-exelis.lang -/usr/local/share/gtksourceview-5/language-specs/idl.lang -/usr/local/share/gtksourceview-5/language-specs/imagej.lang -/usr/local/share/gtksourceview-5/language-specs/ini.lang -/usr/local/share/gtksourceview-5/language-specs/j.lang -/usr/local/share/gtksourceview-5/language-specs/jade.lang -/usr/local/share/gtksourceview-5/language-specs/java.lang -/usr/local/share/gtksourceview-5/language-specs/javascript-expressions.lang -/usr/local/share/gtksourceview-5/language-specs/javascript-functions-classes.lang -/usr/local/share/gtksourceview-5/language-specs/javascript-literals.lang -/usr/local/share/gtksourceview-5/language-specs/javascript-modules.lang -/usr/local/share/gtksourceview-5/language-specs/javascript-statements.lang -/usr/local/share/gtksourceview-5/language-specs/javascript-values.lang -/usr/local/share/gtksourceview-5/language-specs/javascript.lang -/usr/local/share/gtksourceview-5/language-specs/jsdoc.lang -/usr/local/share/gtksourceview-5/language-specs/json.lang -/usr/local/share/gtksourceview-5/language-specs/jsx.lang -/usr/local/share/gtksourceview-5/language-specs/julia.lang -/usr/local/share/gtksourceview-5/language-specs/kotlin.lang -/usr/local/share/gtksourceview-5/language-specs/language.dtd -/usr/local/share/gtksourceview-5/language-specs/language.rng -/usr/local/share/gtksourceview-5/language-specs/language2.rng -/usr/local/share/gtksourceview-5/language-specs/latex.lang -/usr/local/share/gtksourceview-5/language-specs/lean.lang -/usr/local/share/gtksourceview-5/language-specs/less.lang -/usr/local/share/gtksourceview-5/language-specs/lex.lang -/usr/local/share/gtksourceview-5/language-specs/libtool.lang -/usr/local/share/gtksourceview-5/language-specs/llvm.lang -/usr/local/share/gtksourceview-5/language-specs/logcat.lang -/usr/local/share/gtksourceview-5/language-specs/logtalk.lang -/usr/local/share/gtksourceview-5/language-specs/lua.lang -/usr/local/share/gtksourceview-5/language-specs/m4.lang -/usr/local/share/gtksourceview-5/language-specs/makefile.lang -/usr/local/share/gtksourceview-5/language-specs/mallard.lang -/usr/local/share/gtksourceview-5/language-specs/markdown.lang -/usr/local/share/gtksourceview-5/language-specs/matlab.lang -/usr/local/share/gtksourceview-5/language-specs/maxima.lang -/usr/local/share/gtksourceview-5/language-specs/mediawiki.lang -/usr/local/share/gtksourceview-5/language-specs/meson.lang -/usr/local/share/gtksourceview-5/language-specs/modelica.lang -/usr/local/share/gtksourceview-5/language-specs/mxml.lang -/usr/local/share/gtksourceview-5/language-specs/nemerle.lang -/usr/local/share/gtksourceview-5/language-specs/netrexx.lang -/usr/local/share/gtksourceview-5/language-specs/nix.lang -/usr/local/share/gtksourceview-5/language-specs/nsis.lang -/usr/local/share/gtksourceview-5/language-specs/objc.lang -/usr/local/share/gtksourceview-5/language-specs/objj.lang -/usr/local/share/gtksourceview-5/language-specs/ocaml.lang -/usr/local/share/gtksourceview-5/language-specs/ocl.lang -/usr/local/share/gtksourceview-5/language-specs/octave.lang -/usr/local/share/gtksourceview-5/language-specs/ooc.lang -/usr/local/share/gtksourceview-5/language-specs/opal.lang -/usr/local/share/gtksourceview-5/language-specs/opencl.lang -/usr/local/share/gtksourceview-5/language-specs/pascal.lang -/usr/local/share/gtksourceview-5/language-specs/perl.lang -/usr/local/share/gtksourceview-5/language-specs/php.lang -/usr/local/share/gtksourceview-5/language-specs/pig.lang -/usr/local/share/gtksourceview-5/language-specs/pkgconfig.lang -/usr/local/share/gtksourceview-5/language-specs/po.lang -/usr/local/share/gtksourceview-5/language-specs/powershell.lang -/usr/local/share/gtksourceview-5/language-specs/prolog.lang -/usr/local/share/gtksourceview-5/language-specs/protobuf.lang -/usr/local/share/gtksourceview-5/language-specs/puppet.lang -/usr/local/share/gtksourceview-5/language-specs/python.lang -/usr/local/share/gtksourceview-5/language-specs/python3.lang -/usr/local/share/gtksourceview-5/language-specs/reasonml.lang -/usr/local/share/gtksourceview-5/language-specs/rpmspec.lang -/usr/local/share/gtksourceview-5/language-specs/rst.lang -/usr/local/share/gtksourceview-5/language-specs/ruby.lang -/usr/local/share/gtksourceview-5/language-specs/rust.lang -/usr/local/share/gtksourceview-5/language-specs/scala.lang -/usr/local/share/gtksourceview-5/language-specs/scheme.lang -/usr/local/share/gtksourceview-5/language-specs/scilab.lang -/usr/local/share/gtksourceview-5/language-specs/scss.lang -/usr/local/share/gtksourceview-5/language-specs/sh.lang -/usr/local/share/gtksourceview-5/language-specs/sml.lang -/usr/local/share/gtksourceview-5/language-specs/solidity.lang -/usr/local/share/gtksourceview-5/language-specs/sparql.lang -/usr/local/share/gtksourceview-5/language-specs/spice.lang -/usr/local/share/gtksourceview-5/language-specs/sql.lang -/usr/local/share/gtksourceview-5/language-specs/star.lang -/usr/local/share/gtksourceview-5/language-specs/sweave.lang -/usr/local/share/gtksourceview-5/language-specs/swift.lang -/usr/local/share/gtksourceview-5/language-specs/systemverilog.lang -/usr/local/share/gtksourceview-5/language-specs/t2t.lang -/usr/local/share/gtksourceview-5/language-specs/tcl.lang -/usr/local/share/gtksourceview-5/language-specs/tera.lang -/usr/local/share/gtksourceview-5/language-specs/terraform.lang -/usr/local/share/gtksourceview-5/language-specs/texinfo.lang -/usr/local/share/gtksourceview-5/language-specs/thrift.lang -/usr/local/share/gtksourceview-5/language-specs/todotxt.lang -/usr/local/share/gtksourceview-5/language-specs/toml.lang -/usr/local/share/gtksourceview-5/language-specs/twig.lang -/usr/local/share/gtksourceview-5/language-specs/typescript-js-expressions.lang -/usr/local/share/gtksourceview-5/language-specs/typescript-js-functions-classes.lang -/usr/local/share/gtksourceview-5/language-specs/typescript-js-literals.lang -/usr/local/share/gtksourceview-5/language-specs/typescript-js-modules.lang -/usr/local/share/gtksourceview-5/language-specs/typescript-js-statements.lang -/usr/local/share/gtksourceview-5/language-specs/typescript-jsx.lang -/usr/local/share/gtksourceview-5/language-specs/typescript-type-expressions.lang -/usr/local/share/gtksourceview-5/language-specs/typescript-type-generics.lang -/usr/local/share/gtksourceview-5/language-specs/typescript-type-literals.lang -/usr/local/share/gtksourceview-5/language-specs/typescript.lang -/usr/local/share/gtksourceview-5/language-specs/vala.lang -/usr/local/share/gtksourceview-5/language-specs/vbnet.lang -/usr/local/share/gtksourceview-5/language-specs/verilog.lang -/usr/local/share/gtksourceview-5/language-specs/vhdl.lang -/usr/local/share/gtksourceview-5/language-specs/wren.lang -/usr/local/share/gtksourceview-5/language-specs/xml.lang -/usr/local/share/gtksourceview-5/language-specs/xslt.lang -/usr/local/share/gtksourceview-5/language-specs/yacc.lang -/usr/local/share/gtksourceview-5/language-specs/yaml.lang -/usr/local/share/gtksourceview-5/language-specs/yara.lang -/usr/local/share/gtksourceview-5/snippets/licenses.snippets -/usr/local/share/gtksourceview-5/snippets/snippets.rng -/usr/local/share/gtksourceview-5/styles/Adwaita-dark.xml -/usr/local/share/gtksourceview-5/styles/Adwaita.xml -/usr/local/share/gtksourceview-5/styles/classic-dark.xml -/usr/local/share/gtksourceview-5/styles/classic.xml -/usr/local/share/gtksourceview-5/styles/cobalt-light.xml -/usr/local/share/gtksourceview-5/styles/cobalt.xml -/usr/local/share/gtksourceview-5/styles/kate-dark.xml -/usr/local/share/gtksourceview-5/styles/kate.xml -/usr/local/share/gtksourceview-5/styles/oblivion.xml -/usr/local/share/gtksourceview-5/styles/solarized-dark.xml -/usr/local/share/gtksourceview-5/styles/solarized-light.xml -/usr/local/share/gtksourceview-5/styles/styles.rng -/usr/local/share/gtksourceview-5/styles/tango.xml /usr/local/share/help/C/gnome-text-editor/basics-create-new-file.page /usr/local/share/help/C/gnome-text-editor/basics-draft-folder.page /usr/local/share/help/C/gnome-text-editor/basics-open-file.page @@ -459,159 +205,58 @@ /usr/local/share/help/zh_CN/gnome-text-editor/legal.xml /usr/local/share/help/zh_CN/gnome-text-editor/media/org.gnome.TextEditor.svg /usr/local/share/help/zh_CN/gnome-text-editor/media/search-recent.png -/usr/local/share/icons/hicolor/scalable/actions/completion-snippet-symbolic.svg -/usr/local/share/icons/hicolor/scalable/actions/completion-word-symbolic.svg -/usr/local/share/icons/hicolor/scalable/actions/lang-class-symbolic.svg -/usr/local/share/icons/hicolor/scalable/actions/lang-define-symbolic.svg -/usr/local/share/icons/hicolor/scalable/actions/lang-enum-symbolic.svg -/usr/local/share/icons/hicolor/scalable/actions/lang-enum-value-symbolic.svg -/usr/local/share/icons/hicolor/scalable/actions/lang-function-symbolic.svg -/usr/local/share/icons/hicolor/scalable/actions/lang-include-symbolic.svg -/usr/local/share/icons/hicolor/scalable/actions/lang-method-symbolic.svg -/usr/local/share/icons/hicolor/scalable/actions/lang-namespace-symbolic.svg -/usr/local/share/icons/hicolor/scalable/actions/lang-struct-field-symbolic.svg -/usr/local/share/icons/hicolor/scalable/actions/lang-struct-symbolic.svg -/usr/local/share/icons/hicolor/scalable/actions/lang-typedef-symbolic.svg -/usr/local/share/icons/hicolor/scalable/actions/lang-union-symbolic.svg -/usr/local/share/icons/hicolor/scalable/actions/lang-variable-symbolic.svg /usr/local/share/icons/hicolor/scalable/apps/org.gnome.TextEditor.svg /usr/local/share/icons/hicolor/symbolic/apps/org.gnome.TextEditor-symbolic.svg /usr/local/share/locale/ab/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/ab/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/ar/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/as/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/ast/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/az/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/be/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/be/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/bg/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/bg/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/bn/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/bn_IN/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/bs/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/ca/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/ca/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/ca@valencia/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/cs/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/cs/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/cy/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/da/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/da/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/de/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/de/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/dz/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/el/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/el/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/en@shaw/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/en_CA/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/en_GB/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/en_GB/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/eo/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/eo/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/es/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/es/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/et/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/eu/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/eu/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/fa/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/fa/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/fi/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/fi/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/fr/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/fr/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/fur/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/fur/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/ga/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/gl/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/gl/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/gu/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/he/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/he/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/hi/LC_MESSAGES/gtksourceview-5.mo +/usr/local/share/locale/hi/LC_MESSAGES/gnome-text-editor.mo /usr/local/share/locale/hr/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/hr/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/hu/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/hu/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/id/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/id/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/ie/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/ie/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/is/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/is/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/it/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/it/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/ja/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/ja/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/ka/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/ka/LC_MESSAGES/gtksourceview-5.mo +/usr/local/share/locale/kab/LC_MESSAGES/gnome-text-editor.mo /usr/local/share/locale/kk/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/kk/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/kn/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/ko/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/ko/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/lt/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/lt/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/lv/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/lv/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/mai/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/mg/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/mk/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/ml/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/mn/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/mr/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/ms/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/nb/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/nb/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/ne/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/ne/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/nl/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/nl/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/nn/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/oc/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/oc/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/or/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/pa/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/pa/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/pl/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/pl/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/pt/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/pt/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/pt_BR/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/pt_BR/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/ro/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/ro/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/ru/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/ru/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/rw/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/si/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/sk/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/sk/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/sl/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/sl/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/sq/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/sr/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/sr/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/sr@latin/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/sv/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/sv/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/ta/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/te/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/tg/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/th/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/th/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/tr/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/tr/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/ug/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/uk/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/uk/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/vi/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/vi/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/xh/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/zh_CN/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/zh_CN/LC_MESSAGES/gtksourceview-5.mo -/usr/local/share/locale/zh_HK/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/zh_TW/LC_MESSAGES/gnome-text-editor.mo -/usr/local/share/locale/zh_TW/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/metainfo/org.gnome.TextEditor.appdata.xml -/usr/local/share/vala/vapi/gtksourceview-5.deps -/usr/local/share/vala/vapi/gtksourceview-5.vapi diff --git a/manifest/x86_64/g/graphicsmagick.filelist b/manifest/x86_64/g/graphicsmagick.filelist index 7f5023d63..3fa8e82ac 100644 --- a/manifest/x86_64/g/graphicsmagick.filelist +++ b/manifest/x86_64/g/graphicsmagick.filelist @@ -95,227 +95,227 @@ /usr/local/include/GraphicsMagick/wand/pixel_wand.h /usr/local/include/GraphicsMagick/wand/wand_api.h /usr/local/include/GraphicsMagick/wand/wand_symbols.h -/usr/local/lib64/GraphicsMagick-1.3.40/config/delegates.mgk -/usr/local/lib64/GraphicsMagick-1.3.40/config/type-ghostscript.mgk -/usr/local/lib64/GraphicsMagick-1.3.40/config/type-solaris.mgk -/usr/local/lib64/GraphicsMagick-1.3.40/config/type-windows.mgk -/usr/local/lib64/GraphicsMagick-1.3.40/config/type.mgk -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/art.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/art.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/avs.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/avs.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/bmp.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/bmp.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/braille.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/braille.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/cals.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/cals.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/caption.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/caption.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/cineon.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/cineon.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/cmyk.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/cmyk.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/cut.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/cut.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/dcm.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/dcm.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/dcraw.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/dcraw.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/dib.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/dib.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/dpx.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/dpx.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/ept.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/ept.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/fax.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/fax.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/fits.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/fits.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/gif.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/gif.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/gradient.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/gradient.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/gray.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/gray.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/heif.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/heif.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/histogram.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/histogram.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/hrz.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/hrz.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/html.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/html.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/icon.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/icon.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/identity.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/identity.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/info.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/info.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/jbig.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/jbig.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/jnx.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/jnx.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/jp2.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/jp2.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/jpeg.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/jpeg.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/jxl.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/jxl.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/label.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/label.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/locale.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/locale.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/logo.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/logo.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/mac.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/mac.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/map.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/map.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/mat.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/mat.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/matte.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/matte.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/meta.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/meta.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/miff.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/miff.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/mono.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/mono.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/mpc.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/mpc.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/mpeg.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/mpeg.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/mpr.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/mpr.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/msl.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/msl.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/mtv.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/mtv.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/mvg.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/mvg.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/null.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/null.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/otb.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/otb.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/palm.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/palm.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/pcd.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/pcd.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/pcl.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/pcl.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/pcx.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/pcx.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/pdb.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/pdb.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/pdf.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/pdf.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/pict.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/pict.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/pix.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/pix.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/plasma.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/plasma.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/png.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/png.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/pnm.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/pnm.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/preview.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/preview.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/ps.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/ps.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/ps2.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/ps2.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/ps3.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/ps3.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/pwp.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/pwp.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/rgb.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/rgb.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/rla.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/rla.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/rle.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/rle.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/sct.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/sct.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/sfw.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/sfw.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/sgi.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/sgi.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/stegano.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/stegano.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/sun.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/sun.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/svg.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/svg.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/tga.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/tga.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/tiff.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/tiff.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/tile.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/tile.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/tim.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/tim.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/topol.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/topol.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/ttf.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/ttf.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/txt.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/txt.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/uil.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/uil.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/url.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/url.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/uyvy.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/uyvy.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/vicar.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/vicar.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/vid.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/vid.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/viff.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/viff.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/wbmp.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/wbmp.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/webp.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/webp.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/wmf.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/wmf.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/wpg.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/wpg.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/x.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/x.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/xbm.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/xbm.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/xc.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/xc.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/xcf.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/xcf.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/xpm.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/xpm.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/xwd.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/xwd.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/yuv.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/coders/yuv.so -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/filters/analyze.la -/usr/local/lib64/GraphicsMagick-1.3.40/modules-Q8/filters/analyze.so +/usr/local/lib64/GraphicsMagick-1.3.43/config/delegates.mgk +/usr/local/lib64/GraphicsMagick-1.3.43/config/type-ghostscript.mgk +/usr/local/lib64/GraphicsMagick-1.3.43/config/type-solaris.mgk +/usr/local/lib64/GraphicsMagick-1.3.43/config/type-windows.mgk +/usr/local/lib64/GraphicsMagick-1.3.43/config/type.mgk +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/art.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/art.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/avs.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/avs.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/bmp.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/bmp.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/braille.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/braille.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/cals.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/cals.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/caption.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/caption.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/cineon.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/cineon.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/cmyk.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/cmyk.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/cut.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/cut.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/dcm.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/dcm.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/dcraw.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/dcraw.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/dib.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/dib.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/dpx.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/dpx.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/ept.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/ept.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/fax.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/fax.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/fits.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/fits.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/gif.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/gif.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/gradient.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/gradient.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/gray.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/gray.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/heif.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/heif.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/histogram.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/histogram.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/hrz.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/hrz.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/html.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/html.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/icon.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/icon.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/identity.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/identity.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/info.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/info.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/jbig.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/jbig.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/jnx.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/jnx.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/jp2.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/jp2.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/jpeg.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/jpeg.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/jxl.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/jxl.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/label.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/label.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/locale.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/locale.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/logo.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/logo.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/mac.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/mac.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/map.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/map.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/mat.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/mat.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/matte.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/matte.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/meta.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/meta.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/miff.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/miff.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/mono.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/mono.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/mpc.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/mpc.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/mpeg.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/mpeg.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/mpr.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/mpr.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/msl.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/msl.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/mtv.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/mtv.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/mvg.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/mvg.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/null.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/null.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/otb.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/otb.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/palm.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/palm.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/pcd.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/pcd.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/pcl.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/pcl.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/pcx.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/pcx.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/pdb.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/pdb.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/pdf.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/pdf.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/pict.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/pict.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/pix.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/pix.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/plasma.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/plasma.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/png.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/png.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/pnm.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/pnm.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/preview.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/preview.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/ps.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/ps.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/ps2.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/ps2.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/ps3.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/ps3.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/pwp.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/pwp.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/rgb.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/rgb.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/rla.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/rla.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/rle.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/rle.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/sct.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/sct.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/sfw.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/sfw.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/sgi.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/sgi.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/stegano.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/stegano.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/sun.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/sun.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/svg.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/svg.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/tga.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/tga.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/tiff.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/tiff.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/tile.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/tile.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/tim.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/tim.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/topol.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/topol.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/ttf.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/ttf.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/txt.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/txt.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/uil.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/uil.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/url.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/url.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/uyvy.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/uyvy.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/vicar.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/vicar.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/vid.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/vid.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/viff.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/viff.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/wbmp.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/wbmp.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/webp.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/webp.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/wmf.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/wmf.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/wpg.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/wpg.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/x.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/x.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/xbm.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/xbm.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/xc.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/xc.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/xcf.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/xcf.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/xpm.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/xpm.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/xwd.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/xwd.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/yuv.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/coders/yuv.so +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/filters/analyze.la +/usr/local/lib64/GraphicsMagick-1.3.43/modules-Q8/filters/analyze.so /usr/local/lib64/libGraphicsMagick++.la /usr/local/lib64/libGraphicsMagick++.so /usr/local/lib64/libGraphicsMagick++.so.12 -/usr/local/lib64/libGraphicsMagick++.so.12.7.0 +/usr/local/lib64/libGraphicsMagick++.so.12.8.0 /usr/local/lib64/libGraphicsMagick.la /usr/local/lib64/libGraphicsMagick.so /usr/local/lib64/libGraphicsMagick.so.3 -/usr/local/lib64/libGraphicsMagick.so.3.24.2 +/usr/local/lib64/libGraphicsMagick.so.3.25.0 /usr/local/lib64/libGraphicsMagickWand.la /usr/local/lib64/libGraphicsMagickWand.so /usr/local/lib64/libGraphicsMagickWand.so.2 -/usr/local/lib64/libGraphicsMagickWand.so.2.9.8 +/usr/local/lib64/libGraphicsMagickWand.so.2.10.0 /usr/local/lib64/pkgconfig/GraphicsMagick++.pc /usr/local/lib64/pkgconfig/GraphicsMagick.pc /usr/local/lib64/pkgconfig/GraphicsMagickWand.pc -/usr/local/share/GraphicsMagick-1.3.40/config/colors.mgk -/usr/local/share/GraphicsMagick-1.3.40/config/log.mgk -/usr/local/share/GraphicsMagick-1.3.40/config/modules.mgk +/usr/local/share/GraphicsMagick-1.3.43/config/colors.mgk +/usr/local/share/GraphicsMagick-1.3.43/config/log.mgk +/usr/local/share/GraphicsMagick-1.3.43/config/modules.mgk /usr/local/share/doc/GraphicsMagick/ChangeLog /usr/local/share/doc/GraphicsMagick/ChangeLog.2001 /usr/local/share/doc/GraphicsMagick/ChangeLog.2002 @@ -337,6 +337,8 @@ /usr/local/share/doc/GraphicsMagick/ChangeLog.2018 /usr/local/share/doc/GraphicsMagick/ChangeLog.2019 /usr/local/share/doc/GraphicsMagick/ChangeLog.2020 +/usr/local/share/doc/GraphicsMagick/ChangeLog.2021 +/usr/local/share/doc/GraphicsMagick/ChangeLog.2022 /usr/local/share/doc/GraphicsMagick/Copyright.txt /usr/local/share/doc/GraphicsMagick/NEWS.txt /usr/local/share/doc/GraphicsMagick/www/ChangeLog-2001.html @@ -361,7 +363,8 @@ /usr/local/share/doc/GraphicsMagick/www/ChangeLog-2020.html /usr/local/share/doc/GraphicsMagick/www/ChangeLog-2021.html /usr/local/share/doc/GraphicsMagick/www/ChangeLog-2022.html -/usr/local/share/doc/GraphicsMagick/www/Changelog.html +/usr/local/share/doc/GraphicsMagick/www/ChangeLog-2023.html +/usr/local/share/doc/GraphicsMagick/www/ChangeLog.html /usr/local/share/doc/GraphicsMagick/www/Changes.html /usr/local/share/doc/GraphicsMagick/www/Copyright.html /usr/local/share/doc/GraphicsMagick/www/FAQ.html diff --git a/manifest/x86_64/g/gspell.filelist b/manifest/x86_64/g/gspell.filelist index 93721b634..eee25e3d2 100644 --- a/manifest/x86_64/g/gspell.filelist +++ b/manifest/x86_64/g/gspell.filelist @@ -14,10 +14,8 @@ /usr/local/include/gspell-1/gspell/gspell-text-view.h /usr/local/include/gspell-1/gspell/gspell.h /usr/local/lib64/girepository-1.0/Gspell-1.typelib -/usr/local/lib64/libgspell-1.la /usr/local/lib64/libgspell-1.so -/usr/local/lib64/libgspell-1.so.2 -/usr/local/lib64/libgspell-1.so.2.3.2 +/usr/local/lib64/libgspell-1.so.3 /usr/local/lib64/pkgconfig/gspell-1.pc /usr/local/share/gir-1.0/Gspell-1.gir /usr/local/share/locale/ab/LC_MESSAGES/gspell-1.mo diff --git a/manifest/x86_64/g/gtk3.filelist b/manifest/x86_64/g/gtk3.filelist index 032922001..55112a087 100644 --- a/manifest/x86_64/g/gtk3.filelist +++ b/manifest/x86_64/g/gtk3.filelist @@ -439,10 +439,10 @@ /usr/local/lib64/libgailutil-3.so.0.0.0 /usr/local/lib64/libgdk-3.so /usr/local/lib64/libgdk-3.so.0 -/usr/local/lib64/libgdk-3.so.0.2409.32 +/usr/local/lib64/libgdk-3.so.0.2410.32 /usr/local/lib64/libgtk-3.so /usr/local/lib64/libgtk-3.so.0 -/usr/local/lib64/libgtk-3.so.0.2409.32 +/usr/local/lib64/libgtk-3.so.0.2410.32 /usr/local/lib64/pkgconfig/gail-3.0.pc /usr/local/lib64/pkgconfig/gdk-3.0.pc /usr/local/lib64/pkgconfig/gdk-broadway-3.0.pc @@ -600,6 +600,8 @@ /usr/local/share/locale/ja/LC_MESSAGES/gtk30.mo /usr/local/share/locale/ka/LC_MESSAGES/gtk30-properties.mo /usr/local/share/locale/ka/LC_MESSAGES/gtk30.mo +/usr/local/share/locale/kab/LC_MESSAGES/gtk30-properties.mo +/usr/local/share/locale/kab/LC_MESSAGES/gtk30.mo /usr/local/share/locale/kg/LC_MESSAGES/gtk30-properties.mo /usr/local/share/locale/kg/LC_MESSAGES/gtk30.mo /usr/local/share/locale/kk/LC_MESSAGES/gtk30-properties.mo diff --git a/manifest/x86_64/g/gtk4.filelist b/manifest/x86_64/g/gtk4.filelist index df0d746a3..ad361dde3 100644 --- a/manifest/x86_64/g/gtk4.filelist +++ b/manifest/x86_64/g/gtk4.filelist @@ -2,6 +2,7 @@ /usr/local/bin/gtk4-broadwayd /usr/local/bin/gtk4-builder-tool /usr/local/bin/gtk4-encode-symbolic-svg +/usr/local/bin/gtk4-image-tool /usr/local/bin/gtk4-launch /usr/local/bin/gtk4-path-tool /usr/local/bin/gtk4-query-settings @@ -17,7 +18,9 @@ /usr/local/include/gtk-4.0/gdk/gdkapplaunchcontext.h /usr/local/include/gtk-4.0/gdk/gdkcairo.h /usr/local/include/gtk-4.0/gdk/gdkcairocontext.h +/usr/local/include/gtk-4.0/gdk/gdkcicpparams.h /usr/local/include/gtk-4.0/gdk/gdkclipboard.h +/usr/local/include/gtk-4.0/gdk/gdkcolorstate.h /usr/local/include/gtk-4.0/gdk/gdkconfig.h /usr/local/include/gtk-4.0/gdk/gdkcontentdeserializer.h /usr/local/include/gtk-4.0/gdk/gdkcontentformats.h @@ -49,6 +52,7 @@ /usr/local/include/gtk-4.0/gdk/gdkkeys.h /usr/local/include/gtk-4.0/gdk/gdkkeysyms.h /usr/local/include/gtk-4.0/gdk/gdkmemorytexture.h +/usr/local/include/gtk-4.0/gdk/gdkmemorytexturebuilder.h /usr/local/include/gtk-4.0/gdk/gdkmonitor.h /usr/local/include/gtk-4.0/gdk/gdkpaintable.h /usr/local/include/gtk-4.0/gdk/gdkpango.h @@ -411,7 +415,7 @@ /usr/local/lib64/gtk-4.0/4.0.0/printbackends/libprintbackend-file.so /usr/local/lib64/libgtk-4.so /usr/local/lib64/libgtk-4.so.1 -/usr/local/lib64/libgtk-4.so.1.1502.0 +/usr/local/lib64/libgtk-4.so.1.1504.0 /usr/local/lib64/pkgconfig/gtk4-atspi.pc /usr/local/lib64/pkgconfig/gtk4-broadway.pc /usr/local/lib64/pkgconfig/gtk4-unix-print.pc diff --git a/manifest/x86_64/g/gtksourceview_5.filelist b/manifest/x86_64/g/gtksourceview_5.filelist index ec4744c4c..9e03e89f8 100644 --- a/manifest/x86_64/g/gtksourceview_5.filelist +++ b/manifest/x86_64/g/gtksourceview_5.filelist @@ -69,6 +69,7 @@ /usr/local/share/gtksourceview-5/language-specs/awk.lang /usr/local/share/gtksourceview-5/language-specs/bennugd.lang /usr/local/share/gtksourceview-5/language-specs/bibtex.lang +/usr/local/share/gtksourceview-5/language-specs/blueprint.lang /usr/local/share/gtksourceview-5/language-specs/bluespec.lang /usr/local/share/gtksourceview-5/language-specs/boo.lang /usr/local/share/gtksourceview-5/language-specs/c.lang @@ -97,6 +98,7 @@ /usr/local/share/gtksourceview-5/language-specs/dtd.lang /usr/local/share/gtksourceview-5/language-specs/dtl.lang /usr/local/share/gtksourceview-5/language-specs/eiffel.lang +/usr/local/share/gtksourceview-5/language-specs/elixir.lang /usr/local/share/gtksourceview-5/language-specs/erb-html.lang /usr/local/share/gtksourceview-5/language-specs/erb-js.lang /usr/local/share/gtksourceview-5/language-specs/erb.lang @@ -165,6 +167,7 @@ /usr/local/share/gtksourceview-5/language-specs/mxml.lang /usr/local/share/gtksourceview-5/language-specs/nemerle.lang /usr/local/share/gtksourceview-5/language-specs/netrexx.lang +/usr/local/share/gtksourceview-5/language-specs/nix.lang /usr/local/share/gtksourceview-5/language-specs/nsis.lang /usr/local/share/gtksourceview-5/language-specs/objc.lang /usr/local/share/gtksourceview-5/language-specs/objj.lang @@ -186,6 +189,7 @@ /usr/local/share/gtksourceview-5/language-specs/puppet.lang /usr/local/share/gtksourceview-5/language-specs/python.lang /usr/local/share/gtksourceview-5/language-specs/python3.lang +/usr/local/share/gtksourceview-5/language-specs/reasonml.lang /usr/local/share/gtksourceview-5/language-specs/rpmspec.lang /usr/local/share/gtksourceview-5/language-specs/rst.lang /usr/local/share/gtksourceview-5/language-specs/ruby.lang @@ -210,6 +214,7 @@ /usr/local/share/gtksourceview-5/language-specs/terraform.lang /usr/local/share/gtksourceview-5/language-specs/texinfo.lang /usr/local/share/gtksourceview-5/language-specs/thrift.lang +/usr/local/share/gtksourceview-5/language-specs/todotxt.lang /usr/local/share/gtksourceview-5/language-specs/toml.lang /usr/local/share/gtksourceview-5/language-specs/twig.lang /usr/local/share/gtksourceview-5/language-specs/typescript-js-expressions.lang @@ -226,6 +231,7 @@ /usr/local/share/gtksourceview-5/language-specs/vbnet.lang /usr/local/share/gtksourceview-5/language-specs/verilog.lang /usr/local/share/gtksourceview-5/language-specs/vhdl.lang +/usr/local/share/gtksourceview-5/language-specs/wren.lang /usr/local/share/gtksourceview-5/language-specs/xml.lang /usr/local/share/gtksourceview-5/language-specs/xslt.lang /usr/local/share/gtksourceview-5/language-specs/yacc.lang @@ -298,10 +304,12 @@ /usr/local/share/locale/hr/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/hu/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/id/LC_MESSAGES/gtksourceview-5.mo +/usr/local/share/locale/ie/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/is/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/it/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/ja/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/ka/LC_MESSAGES/gtksourceview-5.mo +/usr/local/share/locale/kab/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/kk/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/kn/LC_MESSAGES/gtksourceview-5.mo /usr/local/share/locale/ko/LC_MESSAGES/gtksourceview-5.mo diff --git a/manifest/x86_64/h/harfbuzz.filelist b/manifest/x86_64/h/harfbuzz.filelist index eba9fece3..14e7b7162 100644 --- a/manifest/x86_64/h/harfbuzz.filelist +++ b/manifest/x86_64/h/harfbuzz.filelist @@ -134,7 +134,7 @@ /usr/local/lib64/libharfbuzz-cairo.a /usr/local/lib64/libharfbuzz-cairo.so /usr/local/lib64/libharfbuzz-cairo.so.0 -/usr/local/lib64/libharfbuzz-cairo.so.0.60850.0 +/usr/local/lib64/libharfbuzz-cairo.so.0.60900.0 /usr/local/lib64/libharfbuzz-freetype.a /usr/local/lib64/libharfbuzz-freetype.so /usr/local/lib64/libharfbuzz-freetype.so.6 @@ -142,20 +142,20 @@ /usr/local/lib64/libharfbuzz-gobject.a /usr/local/lib64/libharfbuzz-gobject.so /usr/local/lib64/libharfbuzz-gobject.so.0 -/usr/local/lib64/libharfbuzz-gobject.so.0.60850.0 +/usr/local/lib64/libharfbuzz-gobject.so.0.60900.0 /usr/local/lib64/libharfbuzz-icu.a /usr/local/lib64/libharfbuzz-icu.so /usr/local/lib64/libharfbuzz-icu.so.0 -/usr/local/lib64/libharfbuzz-icu.so.0.60850.0 +/usr/local/lib64/libharfbuzz-icu.so.0.60900.0 /usr/local/lib64/libharfbuzz-subset.a /usr/local/lib64/libharfbuzz-subset.so /usr/local/lib64/libharfbuzz-subset.so.0 -/usr/local/lib64/libharfbuzz-subset.so.0.60850.0 +/usr/local/lib64/libharfbuzz-subset.so.0.60900.0 /usr/local/lib64/libharfbuzz.a /usr/local/lib64/libharfbuzz.la /usr/local/lib64/libharfbuzz.so /usr/local/lib64/libharfbuzz.so.0 -/usr/local/lib64/libharfbuzz.so.0.60850.0 +/usr/local/lib64/libharfbuzz.so.0.60900.0 /usr/local/lib64/pkgconfig/cairo.pc /usr/local/lib64/pkgconfig/freetype2.pc /usr/local/lib64/pkgconfig/harfbuzz-cairo.pc diff --git a/manifest/x86_64/i/icu4c.filelist b/manifest/x86_64/i/icu4c.filelist index ce6c967f1..edc16457b 100644 --- a/manifest/x86_64/i/icu4c.filelist +++ b/manifest/x86_64/i/icu4c.filelist @@ -65,6 +65,12 @@ /usr/local/include/unicode/measfmt.h /usr/local/include/unicode/measunit.h /usr/local/include/unicode/measure.h +/usr/local/include/unicode/messageformat2.h +/usr/local/include/unicode/messageformat2_arguments.h +/usr/local/include/unicode/messageformat2_data_model.h +/usr/local/include/unicode/messageformat2_data_model_names.h +/usr/local/include/unicode/messageformat2_formattable.h +/usr/local/include/unicode/messageformat2_function_registry.h /usr/local/include/unicode/messagepattern.h /usr/local/include/unicode/msgfmt.h /usr/local/include/unicode/normalizer2.h @@ -207,41 +213,35 @@ /usr/local/include/unicode/uvernum.h /usr/local/include/unicode/uversion.h /usr/local/include/unicode/vtzone.h -/usr/local/lib64/icu/74.2/Makefile.inc -/usr/local/lib64/icu/74.2/pkgdata.inc +/usr/local/lib64/icu/75.1/Makefile.inc +/usr/local/lib64/icu/75.1/pkgdata.inc /usr/local/lib64/icu/Makefile.inc /usr/local/lib64/icu/current /usr/local/lib64/icu/pkgdata.inc -/usr/local/lib64/libicudata.a /usr/local/lib64/libicudata.so -/usr/local/lib64/libicudata.so.73 /usr/local/lib64/libicudata.so.74 -/usr/local/lib64/libicudata.so.74.2 -/usr/local/lib64/libicui18n.a +/usr/local/lib64/libicudata.so.75 +/usr/local/lib64/libicudata.so.75.1 /usr/local/lib64/libicui18n.so -/usr/local/lib64/libicui18n.so.73 /usr/local/lib64/libicui18n.so.74 -/usr/local/lib64/libicui18n.so.74.2 -/usr/local/lib64/libicuio.a +/usr/local/lib64/libicui18n.so.75 +/usr/local/lib64/libicui18n.so.75.1 /usr/local/lib64/libicuio.so -/usr/local/lib64/libicuio.so.73 /usr/local/lib64/libicuio.so.74 -/usr/local/lib64/libicuio.so.74.2 -/usr/local/lib64/libicutest.a +/usr/local/lib64/libicuio.so.75 +/usr/local/lib64/libicuio.so.75.1 /usr/local/lib64/libicutest.so -/usr/local/lib64/libicutest.so.73 /usr/local/lib64/libicutest.so.74 -/usr/local/lib64/libicutest.so.74.2 -/usr/local/lib64/libicutu.a +/usr/local/lib64/libicutest.so.75 +/usr/local/lib64/libicutest.so.75.1 /usr/local/lib64/libicutu.so -/usr/local/lib64/libicutu.so.73 /usr/local/lib64/libicutu.so.74 -/usr/local/lib64/libicutu.so.74.2 -/usr/local/lib64/libicuuc.a +/usr/local/lib64/libicutu.so.75 +/usr/local/lib64/libicutu.so.75.1 /usr/local/lib64/libicuuc.so -/usr/local/lib64/libicuuc.so.73 /usr/local/lib64/libicuuc.so.74 -/usr/local/lib64/libicuuc.so.74.2 +/usr/local/lib64/libicuuc.so.75 +/usr/local/lib64/libicuuc.so.75.1 /usr/local/lib64/pkgconfig/icu-i18n.pc /usr/local/lib64/pkgconfig/icu-io.pc /usr/local/lib64/pkgconfig/icu-uc.pc @@ -251,10 +251,10 @@ /usr/local/sbin/gennorm2 /usr/local/sbin/gensprep /usr/local/sbin/icupkg -/usr/local/share/icu/74.2/LICENSE -/usr/local/share/icu/74.2/config/mh-linux -/usr/local/share/icu/74.2/install-sh -/usr/local/share/icu/74.2/mkinstalldirs +/usr/local/share/icu/75.1/LICENSE +/usr/local/share/icu/75.1/config/mh-linux +/usr/local/share/icu/75.1/install-sh +/usr/local/share/icu/75.1/mkinstalldirs /usr/local/share/man/man1/derb.1.zst /usr/local/share/man/man1/genbrk.1.zst /usr/local/share/man/man1/gencfu.1.zst diff --git a/manifest/x86_64/i/imlib2.filelist b/manifest/x86_64/i/imlib2.filelist index 29fa94e4b..961176e83 100644 --- a/manifest/x86_64/i/imlib2.filelist +++ b/manifest/x86_64/i/imlib2.filelist @@ -8,12 +8,15 @@ /usr/local/bin/imlib2_test /usr/local/bin/imlib2_view /usr/local/include/Imlib2.h +/usr/local/include/Imlib2_Loader.h /usr/local/lib64/imlib2/filters/bumpmap.la /usr/local/lib64/imlib2/filters/bumpmap.so /usr/local/lib64/imlib2/filters/colormod.la /usr/local/lib64/imlib2/filters/colormod.so /usr/local/lib64/imlib2/filters/testfilter.la /usr/local/lib64/imlib2/filters/testfilter.so +/usr/local/lib64/imlib2/loaders/ani.la +/usr/local/lib64/imlib2/loaders/ani.so /usr/local/lib64/imlib2/loaders/argb.la /usr/local/lib64/imlib2/loaders/argb.so /usr/local/lib64/imlib2/loaders/bmp.la @@ -24,6 +27,8 @@ /usr/local/lib64/imlib2/loaders/ff.so /usr/local/lib64/imlib2/loaders/gif.la /usr/local/lib64/imlib2/loaders/gif.so +/usr/local/lib64/imlib2/loaders/heif.la +/usr/local/lib64/imlib2/loaders/heif.so /usr/local/lib64/imlib2/loaders/ico.la /usr/local/lib64/imlib2/loaders/ico.so /usr/local/lib64/imlib2/loaders/j2k.la @@ -40,6 +45,8 @@ /usr/local/lib64/imlib2/loaders/png.so /usr/local/lib64/imlib2/loaders/pnm.la /usr/local/lib64/imlib2/loaders/pnm.so +/usr/local/lib64/imlib2/loaders/qoi.la +/usr/local/lib64/imlib2/loaders/qoi.so /usr/local/lib64/imlib2/loaders/svg.la /usr/local/lib64/imlib2/loaders/svg.so /usr/local/lib64/imlib2/loaders/tga.la @@ -58,7 +65,7 @@ /usr/local/lib64/libImlib2.la /usr/local/lib64/libImlib2.so /usr/local/lib64/libImlib2.so.1 -/usr/local/lib64/libImlib2.so.1.9.1 +/usr/local/lib64/libImlib2.so.1.12.3 /usr/local/lib64/pkgconfig/imlib2.pc /usr/local/share/imlib2/data/fonts/cinema.ttf /usr/local/share/imlib2/data/fonts/grunge.ttf @@ -82,3 +89,4 @@ /usr/local/share/imlib2/data/images/sh3.png /usr/local/share/imlib2/data/images/stop.png /usr/local/share/imlib2/data/images/tnt.png +/usr/local/share/imlib2/rgb.txt diff --git a/manifest/x86_64/l/ldb.filelist b/manifest/x86_64/l/ldb.filelist index 63463985f..a2f872a82 100644 --- a/manifest/x86_64/l/ldb.filelist +++ b/manifest/x86_64/l/ldb.filelist @@ -27,10 +27,10 @@ /usr/local/lib64/ldb/modules/ldb/tdb.so /usr/local/lib64/libldb.so /usr/local/lib64/libldb.so.2 -/usr/local/lib64/libldb.so.2.9.0 +/usr/local/lib64/libldb.so.2.9.1 /usr/local/lib64/libpyldb-util.cpython-312-x86-64-linux-gnu.so /usr/local/lib64/libpyldb-util.cpython-312-x86-64-linux-gnu.so.2 -/usr/local/lib64/libpyldb-util.cpython-312-x86-64-linux-gnu.so.2.9.0 +/usr/local/lib64/libpyldb-util.cpython-312-x86-64-linux-gnu.so.2.9.1 /usr/local/lib64/pkgconfig/ldb.pc /usr/local/lib64/pkgconfig/pyldb-util.cpython-312-x86_64-linux-gnu.pc /usr/local/lib64/python3.12/site-packages/_ldb_text.py diff --git a/manifest/x86_64/l/libabigail.filelist b/manifest/x86_64/l/libabigail.filelist new file mode 100644 index 000000000..19ff10a55 --- /dev/null +++ b/manifest/x86_64/l/libabigail.filelist @@ -0,0 +1,43 @@ +/usr/local/bin/abicompat +/usr/local/bin/abidiff +/usr/local/bin/abidw +/usr/local/bin/abilint +/usr/local/bin/abipkgdiff +/usr/local/bin/kmidiff +/usr/local/include/libabigail/abg-comp-filter.h +/usr/local/include/libabigail/abg-comparison.h +/usr/local/include/libabigail/abg-config.h +/usr/local/include/libabigail/abg-corpus.h +/usr/local/include/libabigail/abg-ctf-reader.h +/usr/local/include/libabigail/abg-cxx-compat.h +/usr/local/include/libabigail/abg-diff-utils.h +/usr/local/include/libabigail/abg-dwarf-reader.h +/usr/local/include/libabigail/abg-elf-based-reader.h +/usr/local/include/libabigail/abg-elf-reader.h +/usr/local/include/libabigail/abg-fe-iface.h +/usr/local/include/libabigail/abg-fwd.h +/usr/local/include/libabigail/abg-hash.h +/usr/local/include/libabigail/abg-ini.h +/usr/local/include/libabigail/abg-interned-str.h +/usr/local/include/libabigail/abg-ir.h +/usr/local/include/libabigail/abg-libxml-utils.h +/usr/local/include/libabigail/abg-reader.h +/usr/local/include/libabigail/abg-regex.h +/usr/local/include/libabigail/abg-reporter.h +/usr/local/include/libabigail/abg-sptr-utils.h +/usr/local/include/libabigail/abg-suppression.h +/usr/local/include/libabigail/abg-tools-utils.h +/usr/local/include/libabigail/abg-traverse.h +/usr/local/include/libabigail/abg-version.h +/usr/local/include/libabigail/abg-viz-common.h +/usr/local/include/libabigail/abg-viz-dot.h +/usr/local/include/libabigail/abg-viz-svg.h +/usr/local/include/libabigail/abg-workers.h +/usr/local/include/libabigail/abg-writer.h +/usr/local/lib64/libabigail.la +/usr/local/lib64/libabigail.so +/usr/local/lib64/libabigail.so.4 +/usr/local/lib64/libabigail.so.4.0.0 +/usr/local/lib64/libabigail/default.abignore +/usr/local/lib64/pkgconfig/libabigail.pc +/usr/local/share/aclocal/abigail.m4 diff --git a/manifest/x86_64/l/libadwaita.filelist b/manifest/x86_64/l/libadwaita.filelist index 267b81a41..336bd1356 100644 --- a/manifest/x86_64/l/libadwaita.filelist +++ b/manifest/x86_64/l/libadwaita.filelist @@ -1,5 +1,6 @@ /usr/local/include/libadwaita-1/adw-about-dialog.h /usr/local/include/libadwaita-1/adw-about-window.h +/usr/local/include/libadwaita-1/adw-accent-color.h /usr/local/include/libadwaita-1/adw-action-row.h /usr/local/include/libadwaita-1/adw-alert-dialog.h /usr/local/include/libadwaita-1/adw-animation-target.h @@ -10,9 +11,11 @@ /usr/local/include/libadwaita-1/adw-avatar.h /usr/local/include/libadwaita-1/adw-banner.h /usr/local/include/libadwaita-1/adw-bin.h +/usr/local/include/libadwaita-1/adw-bottom-sheet.h /usr/local/include/libadwaita-1/adw-breakpoint-bin.h /usr/local/include/libadwaita-1/adw-breakpoint.h /usr/local/include/libadwaita-1/adw-button-content.h +/usr/local/include/libadwaita-1/adw-button-row.h /usr/local/include/libadwaita-1/adw-carousel-indicator-dots.h /usr/local/include/libadwaita-1/adw-carousel-indicator-lines.h /usr/local/include/libadwaita-1/adw-carousel.h @@ -29,10 +32,13 @@ /usr/local/include/libadwaita-1/adw-flap.h /usr/local/include/libadwaita-1/adw-fold-threshold-policy.h /usr/local/include/libadwaita-1/adw-header-bar.h +/usr/local/include/libadwaita-1/adw-layout-slot.h +/usr/local/include/libadwaita-1/adw-layout.h /usr/local/include/libadwaita-1/adw-leaflet.h /usr/local/include/libadwaita-1/adw-length-unit.h /usr/local/include/libadwaita-1/adw-main.h /usr/local/include/libadwaita-1/adw-message-dialog.h +/usr/local/include/libadwaita-1/adw-multi-layout-view.h /usr/local/include/libadwaita-1/adw-navigation-direction.h /usr/local/include/libadwaita-1/adw-navigation-split-view.h /usr/local/include/libadwaita-1/adw-navigation-view.h @@ -44,6 +50,8 @@ /usr/local/include/libadwaita-1/adw-preferences-row.h /usr/local/include/libadwaita-1/adw-preferences-window.h /usr/local/include/libadwaita-1/adw-spin-row.h +/usr/local/include/libadwaita-1/adw-spinner-paintable.h +/usr/local/include/libadwaita-1/adw-spinner.h /usr/local/include/libadwaita-1/adw-split-button.h /usr/local/include/libadwaita-1/adw-spring-animation.h /usr/local/include/libadwaita-1/adw-spring-params.h @@ -108,6 +116,7 @@ /usr/local/share/locale/ne/LC_MESSAGES/libadwaita.mo /usr/local/share/locale/nl/LC_MESSAGES/libadwaita.mo /usr/local/share/locale/oc/LC_MESSAGES/libadwaita.mo +/usr/local/share/locale/pa/LC_MESSAGES/libadwaita.mo /usr/local/share/locale/pl/LC_MESSAGES/libadwaita.mo /usr/local/share/locale/pt/LC_MESSAGES/libadwaita.mo /usr/local/share/locale/pt_BR/LC_MESSAGES/libadwaita.mo diff --git a/manifest/x86_64/l/libarchive.filelist b/manifest/x86_64/l/libarchive.filelist index 0ca286608..bab037293 100644 --- a/manifest/x86_64/l/libarchive.filelist +++ b/manifest/x86_64/l/libarchive.filelist @@ -8,7 +8,7 @@ /usr/local/lib64/libarchive.la /usr/local/lib64/libarchive.so /usr/local/lib64/libarchive.so.13 -/usr/local/lib64/libarchive.so.13.7.2 +/usr/local/lib64/libarchive.so.13.7.4 /usr/local/lib64/pkgconfig/libarchive.pc /usr/local/share/man/man1/bsdcat.1.zst /usr/local/share/man/man1/bsdcpio.1.zst diff --git a/manifest/x86_64/l/libcdr.filelist b/manifest/x86_64/l/libcdr.filelist index 7d3e80275..2bce5ba2d 100644 --- a/manifest/x86_64/l/libcdr.filelist +++ b/manifest/x86_64/l/libcdr.filelist @@ -173,6 +173,7 @@ /usr/local/share/doc/libcdr/html/dir_bfccd401955b95cf8c75461437045ac0.html /usr/local/share/doc/libcdr/html/dir_c85d3e3c5052e9ad9ce18c6863244a25.html /usr/local/share/doc/libcdr/html/doxygen.css +/usr/local/share/doc/libcdr/html/doxygen_crawl.html /usr/local/share/doc/libcdr/html/files.html /usr/local/share/doc/libcdr/html/functions.html /usr/local/share/doc/libcdr/html/functions_a.html diff --git a/manifest/x86_64/l/libdbusmenu_gtk3.filelist b/manifest/x86_64/l/libdbusmenu_gtk3.filelist index bee45bfbc..2db2d1dc1 100644 --- a/manifest/x86_64/l/libdbusmenu_gtk3.filelist +++ b/manifest/x86_64/l/libdbusmenu_gtk3.filelist @@ -32,7 +32,6 @@ /usr/local/lib64/pkgconfig/dbusmenu-gtk3-0.4.pc /usr/local/lib64/pkgconfig/dbusmenu-jsonloader-0.4.pc /usr/local/libexec/dbusmenu-bench -/usr/local/libexec/dbusmenu-dumper /usr/local/libexec/dbusmenu-testapp /usr/local/share/doc/libdbusmenu/README.dbusmenu-bench /usr/local/share/doc/libdbusmenu/examples/glib-server-nomenu.c diff --git a/manifest/x86_64/l/libgedit_gfls.filelist b/manifest/x86_64/l/libgedit_gfls.filelist new file mode 100644 index 000000000..6ead630a1 --- /dev/null +++ b/manifest/x86_64/l/libgedit_gfls.filelist @@ -0,0 +1,12 @@ +/usr/local/include/libgedit-gfls-1/gfls/gfls-enum-types.h +/usr/local/include/libgedit-gfls-1/gfls/gfls-init.h +/usr/local/include/libgedit-gfls-1/gfls/gfls-input-stream.h +/usr/local/include/libgedit-gfls-1/gfls/gfls-loader-basic.h +/usr/local/include/libgedit-gfls-1/gfls/gfls-unsaved-document-titles.h +/usr/local/include/libgedit-gfls-1/gfls/gfls-utf8.h +/usr/local/include/libgedit-gfls-1/gfls/gfls.h +/usr/local/lib64/girepository-1.0/Gfls-1.typelib +/usr/local/lib64/libgedit-gfls-1.so +/usr/local/lib64/libgedit-gfls-1.so.0 +/usr/local/lib64/pkgconfig/libgedit-gfls-1.pc +/usr/local/share/gir-1.0/Gfls-1.gir diff --git a/manifest/x86_64/l/libgedit_gtksourceview.filelist b/manifest/x86_64/l/libgedit_gtksourceview.filelist index 72838fc02..2b73b4a40 100644 --- a/manifest/x86_64/l/libgedit_gtksourceview.filelist +++ b/manifest/x86_64/l/libgedit_gtksourceview.filelist @@ -38,7 +38,7 @@ /usr/local/include/libgedit-gtksourceview-300/gtksourceview/gtksourceview.h /usr/local/lib64/girepository-1.0/GtkSource-300.typelib /usr/local/lib64/libgedit-gtksourceview-300.so -/usr/local/lib64/libgedit-gtksourceview-300.so.0 +/usr/local/lib64/libgedit-gtksourceview-300.so.1 /usr/local/lib64/pkgconfig/libgedit-gtksourceview-300.pc /usr/local/share/gir-1.0/GtkSource-300.gir /usr/local/share/libgedit-gtksourceview-300/language-specs/R.lang @@ -221,6 +221,7 @@ /usr/local/share/locale/id/LC_MESSAGES/libgedit-gtksourceview-300.mo /usr/local/share/locale/it/LC_MESSAGES/libgedit-gtksourceview-300.mo /usr/local/share/locale/ja/LC_MESSAGES/libgedit-gtksourceview-300.mo +/usr/local/share/locale/ka/LC_MESSAGES/libgedit-gtksourceview-300.mo /usr/local/share/locale/kk/LC_MESSAGES/libgedit-gtksourceview-300.mo /usr/local/share/locale/kn/LC_MESSAGES/libgedit-gtksourceview-300.mo /usr/local/share/locale/ko/LC_MESSAGES/libgedit-gtksourceview-300.mo diff --git a/manifest/x86_64/l/libgsf.filelist b/manifest/x86_64/l/libgsf.filelist index 597f9fdd1..7920d0704 100644 --- a/manifest/x86_64/l/libgsf.filelist +++ b/manifest/x86_64/l/libgsf.filelist @@ -55,7 +55,7 @@ /usr/local/lib64/libgsf-1.la /usr/local/lib64/libgsf-1.so /usr/local/lib64/libgsf-1.so.114 -/usr/local/lib64/libgsf-1.so.114.0.52 +/usr/local/lib64/libgsf-1.so.114.0.53 /usr/local/lib64/pkgconfig/libgsf-1.pc /usr/local/share/gir-1.0/Gsf-1.gir /usr/local/share/locale/as/LC_MESSAGES/libgsf.mo @@ -74,6 +74,7 @@ /usr/local/share/locale/fr/LC_MESSAGES/libgsf.mo /usr/local/share/locale/gl/LC_MESSAGES/libgsf.mo /usr/local/share/locale/he/LC_MESSAGES/libgsf.mo +/usr/local/share/locale/hi/LC_MESSAGES/libgsf.mo /usr/local/share/locale/hr/LC_MESSAGES/libgsf.mo /usr/local/share/locale/hu/LC_MESSAGES/libgsf.mo /usr/local/share/locale/id/LC_MESSAGES/libgsf.mo diff --git a/manifest/x86_64/l/libical.filelist b/manifest/x86_64/l/libical.filelist index edeb72cca..4d917ac19 100644 --- a/manifest/x86_64/l/libical.filelist +++ b/manifest/x86_64/l/libical.filelist @@ -95,27 +95,27 @@ /usr/local/lib64/libical-glib.a /usr/local/lib64/libical-glib.so /usr/local/lib64/libical-glib.so.3 -/usr/local/lib64/libical-glib.so.3.0.10 +/usr/local/lib64/libical-glib.so.3.0.18 /usr/local/lib64/libical.a /usr/local/lib64/libical.so /usr/local/lib64/libical.so.3 -/usr/local/lib64/libical.so.3.0.10 +/usr/local/lib64/libical.so.3.0.18 /usr/local/lib64/libical_cxx.a /usr/local/lib64/libical_cxx.so /usr/local/lib64/libical_cxx.so.3 -/usr/local/lib64/libical_cxx.so.3.0.10 +/usr/local/lib64/libical_cxx.so.3.0.18 /usr/local/lib64/libicalss.a /usr/local/lib64/libicalss.so /usr/local/lib64/libicalss.so.3 -/usr/local/lib64/libicalss.so.3.0.10 +/usr/local/lib64/libicalss.so.3.0.18 /usr/local/lib64/libicalss_cxx.a /usr/local/lib64/libicalss_cxx.so /usr/local/lib64/libicalss_cxx.so.3 -/usr/local/lib64/libicalss_cxx.so.3.0.10 +/usr/local/lib64/libicalss_cxx.so.3.0.18 /usr/local/lib64/libicalvcal.a /usr/local/lib64/libicalvcal.so /usr/local/lib64/libicalvcal.so.3 -/usr/local/lib64/libicalvcal.so.3.0.10 +/usr/local/lib64/libicalvcal.so.3.0.18 /usr/local/lib64/pkgconfig/libical-glib.pc /usr/local/lib64/pkgconfig/libical.pc /usr/local/libexec/libical/ical-glib-src-generator diff --git a/manifest/x86_64/l/libmbedtls.filelist b/manifest/x86_64/l/libmbedtls.filelist index 18b5ee690..0547996e9 100644 --- a/manifest/x86_64/l/libmbedtls.filelist +++ b/manifest/x86_64/l/libmbedtls.filelist @@ -26,6 +26,7 @@ /usr/local/bin/key_ladder_demo.sh /usr/local/bin/load_roots /usr/local/bin/md_hmac_demo +/usr/local/bin/metatest /usr/local/bin/mini_client /usr/local/bin/mpi_demo /usr/local/bin/pem2der @@ -34,6 +35,7 @@ /usr/local/bin/pk_sign /usr/local/bin/pk_verify /usr/local/bin/psa_constant_names +/usr/local/bin/psa_hash /usr/local/bin/query_compile_time_config /usr/local/bin/query_included_headers /usr/local/bin/req_app @@ -56,12 +58,30 @@ /usr/local/bin/strerror /usr/local/bin/udp_proxy /usr/local/bin/zeroize +/usr/local/include/everest/Hacl_Curve25519.h +/usr/local/include/everest/everest.h +/usr/local/include/everest/kremlib.h +/usr/local/include/everest/kremlib/FStar_UInt128.h +/usr/local/include/everest/kremlib/FStar_UInt64_FStar_UInt32_FStar_UInt16_FStar_UInt8.h +/usr/local/include/everest/kremlin/c_endianness.h +/usr/local/include/everest/kremlin/internal/builtin.h +/usr/local/include/everest/kremlin/internal/callconv.h +/usr/local/include/everest/kremlin/internal/compat.h +/usr/local/include/everest/kremlin/internal/debug.h +/usr/local/include/everest/kremlin/internal/target.h +/usr/local/include/everest/kremlin/internal/types.h +/usr/local/include/everest/kremlin/internal/wasmsupport.h +/usr/local/include/everest/vs2013/Hacl_Curve25519.h +/usr/local/include/everest/vs2013/inttypes.h +/usr/local/include/everest/vs2013/stdbool.h +/usr/local/include/everest/x25519.h /usr/local/include/mbedtls/aes.h /usr/local/include/mbedtls/aria.h /usr/local/include/mbedtls/asn1.h /usr/local/include/mbedtls/asn1write.h /usr/local/include/mbedtls/base64.h /usr/local/include/mbedtls/bignum.h +/usr/local/include/mbedtls/block_cipher.h /usr/local/include/mbedtls/build_info.h /usr/local/include/mbedtls/camellia.h /usr/local/include/mbedtls/ccm.h @@ -71,6 +91,12 @@ /usr/local/include/mbedtls/cipher.h /usr/local/include/mbedtls/cmac.h /usr/local/include/mbedtls/compat-2.x.h +/usr/local/include/mbedtls/config_adjust_legacy_crypto.h +/usr/local/include/mbedtls/config_adjust_legacy_from_psa.h +/usr/local/include/mbedtls/config_adjust_psa_from_legacy.h +/usr/local/include/mbedtls/config_adjust_psa_superset_legacy.h +/usr/local/include/mbedtls/config_adjust_ssl.h +/usr/local/include/mbedtls/config_adjust_x509.h /usr/local/include/mbedtls/config_psa.h /usr/local/include/mbedtls/constant_time.h /usr/local/include/mbedtls/ctr_drbg.h @@ -86,7 +112,6 @@ /usr/local/include/mbedtls/gcm.h /usr/local/include/mbedtls/hkdf.h /usr/local/include/mbedtls/hmac_drbg.h -/usr/local/include/mbedtls/legacy_or_psa.h /usr/local/include/mbedtls/lms.h /usr/local/include/mbedtls/mbedtls_config.h /usr/local/include/mbedtls/md.h @@ -110,6 +135,7 @@ /usr/local/include/mbedtls/rsa.h /usr/local/include/mbedtls/sha1.h /usr/local/include/mbedtls/sha256.h +/usr/local/include/mbedtls/sha3.h /usr/local/include/mbedtls/sha512.h /usr/local/include/mbedtls/ssl.h /usr/local/include/mbedtls/ssl_cache.h @@ -123,15 +149,22 @@ /usr/local/include/mbedtls/x509_crl.h /usr/local/include/mbedtls/x509_crt.h /usr/local/include/mbedtls/x509_csr.h +/usr/local/include/psa/build_info.h /usr/local/include/psa/crypto.h +/usr/local/include/psa/crypto_adjust_auto_enabled.h +/usr/local/include/psa/crypto_adjust_config_key_pair_types.h +/usr/local/include/psa/crypto_adjust_config_synonyms.h /usr/local/include/psa/crypto_builtin_composites.h +/usr/local/include/psa/crypto_builtin_key_derivation.h /usr/local/include/psa/crypto_builtin_primitives.h /usr/local/include/psa/crypto_compat.h /usr/local/include/psa/crypto_config.h /usr/local/include/psa/crypto_driver_common.h /usr/local/include/psa/crypto_driver_contexts_composites.h +/usr/local/include/psa/crypto_driver_contexts_key_derivation.h /usr/local/include/psa/crypto_driver_contexts_primitives.h /usr/local/include/psa/crypto_extra.h +/usr/local/include/psa/crypto_legacy.h /usr/local/include/psa/crypto_platform.h /usr/local/include/psa/crypto_se_driver.h /usr/local/include/psa/crypto_sizes.h @@ -142,15 +175,20 @@ /usr/local/lib64/cmake/MbedTLS/MbedTLSConfigVersion.cmake /usr/local/lib64/cmake/MbedTLS/MbedTLSTargets-release.cmake /usr/local/lib64/cmake/MbedTLS/MbedTLSTargets.cmake +/usr/local/lib64/libeverest.a /usr/local/lib64/libmbedcrypto.a /usr/local/lib64/libmbedcrypto.so -/usr/local/lib64/libmbedcrypto.so.14 -/usr/local/lib64/libmbedcrypto.so.3.4.1 +/usr/local/lib64/libmbedcrypto.so.16 +/usr/local/lib64/libmbedcrypto.so.3.6.0 /usr/local/lib64/libmbedtls.a /usr/local/lib64/libmbedtls.so -/usr/local/lib64/libmbedtls.so.19 -/usr/local/lib64/libmbedtls.so.3.4.1 +/usr/local/lib64/libmbedtls.so.21 +/usr/local/lib64/libmbedtls.so.3.6.0 /usr/local/lib64/libmbedx509.a /usr/local/lib64/libmbedx509.so -/usr/local/lib64/libmbedx509.so.3.4.1 -/usr/local/lib64/libmbedx509.so.5 +/usr/local/lib64/libmbedx509.so.3.6.0 +/usr/local/lib64/libmbedx509.so.7 +/usr/local/lib64/libp256m.a +/usr/local/lib64/pkgconfig/mbedcrypto.pc +/usr/local/lib64/pkgconfig/mbedtls.pc +/usr/local/lib64/pkgconfig/mbedx509.pc diff --git a/manifest/x86_64/l/librsvg.filelist b/manifest/x86_64/l/librsvg.filelist index eef921ce2..db6c90b60 100644 --- a/manifest/x86_64/l/librsvg.filelist +++ b/manifest/x86_64/l/librsvg.filelist @@ -11,7 +11,7 @@ /usr/local/lib64/librsvg-2.la /usr/local/lib64/librsvg-2.so /usr/local/lib64/librsvg-2.so.2 -/usr/local/lib64/librsvg-2.so.2.48.0 +/usr/local/lib64/librsvg-2.so.2.50.0 /usr/local/lib64/pkgconfig/librsvg-2.0.pc /usr/local/share/doc/librsvg/README.md /usr/local/share/doc/librsvg/code-of-conduct.md diff --git a/manifest/x86_64/l/libvisio.filelist b/manifest/x86_64/l/libvisio.filelist index 380d19b8e..4ab2ab6c5 100644 --- a/manifest/x86_64/l/libvisio.filelist +++ b/manifest/x86_64/l/libvisio.filelist @@ -9,7 +9,7 @@ /usr/local/lib64/libvisio-0.1.la /usr/local/lib64/libvisio-0.1.so /usr/local/lib64/libvisio-0.1.so.1 -/usr/local/lib64/libvisio-0.1.so.1.0.7 +/usr/local/lib64/libvisio-0.1.so.1.0.8 /usr/local/lib64/pkgconfig/libvisio-0.1.pc /usr/local/share/doc/libvisio/html/VDXParser_8cpp.html /usr/local/share/doc/libvisio/html/VDXParser_8h.html @@ -325,6 +325,7 @@ /usr/local/share/doc/libvisio/html/dir_c85d3e3c5052e9ad9ce18c6863244a25.html /usr/local/share/doc/libvisio/html/dir_dbd43e63c223a2e9a266a1fcf5cbb056.html /usr/local/share/doc/libvisio/html/doxygen.css +/usr/local/share/doc/libvisio/html/doxygen_crawl.html /usr/local/share/doc/libvisio/html/files.html /usr/local/share/doc/libvisio/html/functions.html /usr/local/share/doc/libvisio/html/functions_a.html diff --git a/manifest/x86_64/l/libxml2.filelist b/manifest/x86_64/l/libxml2.filelist index 16c48fad9..2ec005e02 100644 --- a/manifest/x86_64/l/libxml2.filelist +++ b/manifest/x86_64/l/libxml2.filelist @@ -47,14 +47,14 @@ /usr/local/include/libxml2/libxml/xpath.h /usr/local/include/libxml2/libxml/xpathInternals.h /usr/local/include/libxml2/libxml/xpointer.h -/usr/local/lib64/cmake/libxml2-2.13.2/libxml2-config-version.cmake -/usr/local/lib64/cmake/libxml2-2.13.2/libxml2-config.cmake -/usr/local/lib64/cmake/libxml2-2.13.2/libxml2-export-release.cmake -/usr/local/lib64/cmake/libxml2-2.13.2/libxml2-export.cmake +/usr/local/lib64/cmake/libxml2-2.13.3/libxml2-config-version.cmake +/usr/local/lib64/cmake/libxml2-2.13.3/libxml2-config.cmake +/usr/local/lib64/cmake/libxml2-2.13.3/libxml2-export-release.cmake +/usr/local/lib64/cmake/libxml2-2.13.3/libxml2-export.cmake /usr/local/lib64/libxml2.la /usr/local/lib64/libxml2.so /usr/local/lib64/libxml2.so.2 -/usr/local/lib64/libxml2.so.2.13.2 +/usr/local/lib64/libxml2.so.2.13.3 /usr/local/lib64/pkgconfig/libxml-2.0.pc /usr/local/share/aclocal/libxml.m4 /usr/local/share/doc/libxml2/devhelp/general.html diff --git a/manifest/x86_64/l/libxml2_autotools.filelist b/manifest/x86_64/l/libxml2_autotools.filelist new file mode 100644 index 000000000..4f6ad26d4 --- /dev/null +++ b/manifest/x86_64/l/libxml2_autotools.filelist @@ -0,0 +1,115 @@ +/usr/local/bin/xml2-config +/usr/local/bin/xmlcatalog +/usr/local/bin/xmllint +/usr/local/include/libxml2/libxml/HTMLparser.h +/usr/local/include/libxml2/libxml/HTMLtree.h +/usr/local/include/libxml2/libxml/SAX.h +/usr/local/include/libxml2/libxml/SAX2.h +/usr/local/include/libxml2/libxml/c14n.h +/usr/local/include/libxml2/libxml/catalog.h +/usr/local/include/libxml2/libxml/chvalid.h +/usr/local/include/libxml2/libxml/debugXML.h +/usr/local/include/libxml2/libxml/dict.h +/usr/local/include/libxml2/libxml/encoding.h +/usr/local/include/libxml2/libxml/entities.h +/usr/local/include/libxml2/libxml/globals.h +/usr/local/include/libxml2/libxml/hash.h +/usr/local/include/libxml2/libxml/list.h +/usr/local/include/libxml2/libxml/nanoftp.h +/usr/local/include/libxml2/libxml/nanohttp.h +/usr/local/include/libxml2/libxml/parser.h +/usr/local/include/libxml2/libxml/parserInternals.h +/usr/local/include/libxml2/libxml/pattern.h +/usr/local/include/libxml2/libxml/relaxng.h +/usr/local/include/libxml2/libxml/schemasInternals.h +/usr/local/include/libxml2/libxml/schematron.h +/usr/local/include/libxml2/libxml/threads.h +/usr/local/include/libxml2/libxml/tree.h +/usr/local/include/libxml2/libxml/uri.h +/usr/local/include/libxml2/libxml/valid.h +/usr/local/include/libxml2/libxml/xinclude.h +/usr/local/include/libxml2/libxml/xlink.h +/usr/local/include/libxml2/libxml/xmlIO.h +/usr/local/include/libxml2/libxml/xmlautomata.h +/usr/local/include/libxml2/libxml/xmlerror.h +/usr/local/include/libxml2/libxml/xmlexports.h +/usr/local/include/libxml2/libxml/xmlmemory.h +/usr/local/include/libxml2/libxml/xmlmodule.h +/usr/local/include/libxml2/libxml/xmlreader.h +/usr/local/include/libxml2/libxml/xmlregexp.h +/usr/local/include/libxml2/libxml/xmlsave.h +/usr/local/include/libxml2/libxml/xmlschemas.h +/usr/local/include/libxml2/libxml/xmlschemastypes.h +/usr/local/include/libxml2/libxml/xmlstring.h +/usr/local/include/libxml2/libxml/xmlunicode.h +/usr/local/include/libxml2/libxml/xmlversion.h +/usr/local/include/libxml2/libxml/xmlwriter.h +/usr/local/include/libxml2/libxml/xpath.h +/usr/local/include/libxml2/libxml/xpathInternals.h +/usr/local/include/libxml2/libxml/xpointer.h +/usr/local/lib64/cmake/libxml2/libxml2-config.cmake +/usr/local/lib64/libxml2.la +/usr/local/lib64/libxml2.so +/usr/local/lib64/libxml2.so.2 +/usr/local/lib64/libxml2.so.2.13.3 +/usr/local/lib64/pkgconfig/libxml-2.0.pc +/usr/local/share/aclocal/libxml.m4 +/usr/local/share/doc/libxml2/xmlcatalog.html +/usr/local/share/doc/libxml2/xmllint.html +/usr/local/share/gtk-doc/html/libxml2/general.html +/usr/local/share/gtk-doc/html/libxml2/home.png +/usr/local/share/gtk-doc/html/libxml2/index.html +/usr/local/share/gtk-doc/html/libxml2/left.png +/usr/local/share/gtk-doc/html/libxml2/libxml2-HTMLparser.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-HTMLtree.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-SAX.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-SAX2.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-c14n.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-catalog.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-chvalid.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-debugXML.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-dict.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-encoding.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-entities.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-globals.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-hash.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-list.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-nanoftp.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-nanohttp.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-parser.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-parserInternals.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-pattern.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-relaxng.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-schemasInternals.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-schematron.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-threads.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-tree.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-uri.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-valid.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xinclude.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xlink.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlIO.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlautomata.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlerror.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlexports.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlmemory.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlmodule.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlreader.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlregexp.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlsave.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlschemas.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlschemastypes.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlstring.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlunicode.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlversion.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xmlwriter.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xpath.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xpathInternals.html +/usr/local/share/gtk-doc/html/libxml2/libxml2-xpointer.html +/usr/local/share/gtk-doc/html/libxml2/libxml2.devhelp2 +/usr/local/share/gtk-doc/html/libxml2/right.png +/usr/local/share/gtk-doc/html/libxml2/style.css +/usr/local/share/gtk-doc/html/libxml2/up.png +/usr/local/share/man/man1/xml2-config.1.zst +/usr/local/share/man/man1/xmlcatalog.1.zst +/usr/local/share/man/man1/xmllint.1.zst diff --git a/manifest/x86_64/l/libxslt.filelist b/manifest/x86_64/l/libxslt.filelist index 583e35301..648cc2295 100644 --- a/manifest/x86_64/l/libxslt.filelist +++ b/manifest/x86_64/l/libxslt.filelist @@ -24,117 +24,83 @@ /usr/local/include/libxslt/xsltexports.h /usr/local/include/libxslt/xsltlocale.h /usr/local/include/libxslt/xsltutils.h -/usr/local/lib64/libexslt.la +/usr/local/lib64/cmake/libxslt-1.1.42/libxslt-config-version.cmake +/usr/local/lib64/cmake/libxslt-1.1.42/libxslt-config.cmake +/usr/local/lib64/cmake/libxslt-1.1.42/libxslt-export-release.cmake +/usr/local/lib64/cmake/libxslt-1.1.42/libxslt-export.cmake /usr/local/lib64/libexslt.so /usr/local/lib64/libexslt.so.0 -/usr/local/lib64/libexslt.so.0.8.20 -/usr/local/lib64/libxslt.la +/usr/local/lib64/libexslt.so.0.8.23 /usr/local/lib64/libxslt.so /usr/local/lib64/libxslt.so.1 -/usr/local/lib64/libxslt.so.1.1.34 +/usr/local/lib64/libxslt.so.1.1.42 /usr/local/lib64/pkgconfig/libexslt.pc /usr/local/lib64/pkgconfig/libxslt.pc -/usr/local/lib64/python2.7/site-packages/libxslt.py -/usr/local/lib64/python2.7/site-packages/libxsltmod.la -/usr/local/lib64/python2.7/site-packages/libxsltmod.so /usr/local/lib64/xsltConf.sh -/usr/local/share/aclocal/libxslt.m4 -/usr/local/share/doc/libxslt-1.1.34/html/API.html -/usr/local/share/doc/libxslt-1.1.34/html/APIchunk0.html -/usr/local/share/doc/libxslt-1.1.34/html/APIchunk1.html -/usr/local/share/doc/libxslt-1.1.34/html/APIchunk10.html -/usr/local/share/doc/libxslt-1.1.34/html/APIchunk11.html -/usr/local/share/doc/libxslt-1.1.34/html/APIchunk12.html -/usr/local/share/doc/libxslt-1.1.34/html/APIchunk2.html -/usr/local/share/doc/libxslt-1.1.34/html/APIchunk3.html -/usr/local/share/doc/libxslt-1.1.34/html/APIchunk4.html -/usr/local/share/doc/libxslt-1.1.34/html/APIchunk5.html -/usr/local/share/doc/libxslt-1.1.34/html/APIchunk6.html -/usr/local/share/doc/libxslt-1.1.34/html/APIchunk7.html -/usr/local/share/doc/libxslt-1.1.34/html/APIchunk8.html -/usr/local/share/doc/libxslt-1.1.34/html/APIchunk9.html -/usr/local/share/doc/libxslt-1.1.34/html/APIconstructors.html -/usr/local/share/doc/libxslt-1.1.34/html/APIfiles.html -/usr/local/share/doc/libxslt-1.1.34/html/APIfunctions.html -/usr/local/share/doc/libxslt-1.1.34/html/APIsymbols.html -/usr/local/share/doc/libxslt-1.1.34/html/EXSLT/APIchunk0.html -/usr/local/share/doc/libxslt-1.1.34/html/EXSLT/APIconstructors.html -/usr/local/share/doc/libxslt-1.1.34/html/EXSLT/APIfiles.html -/usr/local/share/doc/libxslt-1.1.34/html/EXSLT/APIfunctions.html -/usr/local/share/doc/libxslt-1.1.34/html/EXSLT/APIsymbols.html -/usr/local/share/doc/libxslt-1.1.34/html/EXSLT/bugs.html -/usr/local/share/doc/libxslt-1.1.34/html/EXSLT/docs.html -/usr/local/share/doc/libxslt-1.1.34/html/EXSLT/downloads.html -/usr/local/share/doc/libxslt-1.1.34/html/EXSLT/exslt.html -/usr/local/share/doc/libxslt-1.1.34/html/EXSLT/help.html -/usr/local/share/doc/libxslt-1.1.34/html/EXSLT/index.html -/usr/local/share/doc/libxslt-1.1.34/html/EXSLT/intro.html -/usr/local/share/doc/libxslt-1.1.34/html/FAQ.html -/usr/local/share/doc/libxslt-1.1.34/html/Libxslt-Logo-180x168.gif -/usr/local/share/doc/libxslt-1.1.34/html/Libxslt-Logo-90x34.gif -/usr/local/share/doc/libxslt-1.1.34/html/bugs.html -/usr/local/share/doc/libxslt-1.1.34/html/contexts.gif -/usr/local/share/doc/libxslt-1.1.34/html/contribs.html -/usr/local/share/doc/libxslt-1.1.34/html/docbook.html -/usr/local/share/doc/libxslt-1.1.34/html/docs.html -/usr/local/share/doc/libxslt-1.1.34/html/downloads.html -/usr/local/share/doc/libxslt-1.1.34/html/extensions.html -/usr/local/share/doc/libxslt-1.1.34/html/help.html -/usr/local/share/doc/libxslt-1.1.34/html/html/book1.html -/usr/local/share/doc/libxslt-1.1.34/html/html/home.png -/usr/local/share/doc/libxslt-1.1.34/html/html/index.html -/usr/local/share/doc/libxslt-1.1.34/html/html/left.png -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-attributes.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-documents.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-extensions.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-extra.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-functions.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-imports.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-keys.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-lib.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-namespaces.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-numbersInternals.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-pattern.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-preproc.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-security.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-templates.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-transform.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-variables.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-xslt.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-xsltInternals.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-xsltexports.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-xsltlocale.html -/usr/local/share/doc/libxslt-1.1.34/html/html/libxslt-xsltutils.html -/usr/local/share/doc/libxslt-1.1.34/html/html/right.png -/usr/local/share/doc/libxslt-1.1.34/html/html/up.png -/usr/local/share/doc/libxslt-1.1.34/html/index.html -/usr/local/share/doc/libxslt-1.1.34/html/internals.html -/usr/local/share/doc/libxslt-1.1.34/html/intro.html -/usr/local/share/doc/libxslt-1.1.34/html/news.html -/usr/local/share/doc/libxslt-1.1.34/html/node.gif -/usr/local/share/doc/libxslt-1.1.34/html/object.gif -/usr/local/share/doc/libxslt-1.1.34/html/processing.gif -/usr/local/share/doc/libxslt-1.1.34/html/python.html -/usr/local/share/doc/libxslt-1.1.34/html/redhat.gif -/usr/local/share/doc/libxslt-1.1.34/html/smallfootonly.gif -/usr/local/share/doc/libxslt-1.1.34/html/stylesheet.gif -/usr/local/share/doc/libxslt-1.1.34/html/templates.gif -/usr/local/share/doc/libxslt-1.1.34/html/tutorial/libxslt_tutorial.c -/usr/local/share/doc/libxslt-1.1.34/html/tutorial/libxslttutorial.html -/usr/local/share/doc/libxslt-1.1.34/html/tutorial/libxslttutorial.xml -/usr/local/share/doc/libxslt-1.1.34/html/tutorial2/libxslt_pipes.c -/usr/local/share/doc/libxslt-1.1.34/html/tutorial2/libxslt_pipes.html -/usr/local/share/doc/libxslt-1.1.34/html/tutorial2/libxslt_pipes.xml -/usr/local/share/doc/libxslt-1.1.34/html/xslt.html -/usr/local/share/doc/libxslt-1.1.34/html/xsltproc.html -/usr/local/share/doc/libxslt-1.1.34/html/xsltproc2.html -/usr/local/share/doc/libxslt-python-1.1.34/examples/basic.py -/usr/local/share/doc/libxslt-python-1.1.34/examples/exslt.py -/usr/local/share/doc/libxslt-python-1.1.34/examples/extelem.py -/usr/local/share/doc/libxslt-python-1.1.34/examples/extfunc.py -/usr/local/share/doc/libxslt-python-1.1.34/examples/pyxsltproc.py -/usr/local/share/doc/libxslt-python-1.1.34/examples/test.xml -/usr/local/share/doc/libxslt-python-1.1.34/examples/test.xsl -/usr/local/share/man/man1/xsltproc.1.gz -/usr/local/share/man/man3/libexslt.3.gz -/usr/local/share/man/man3/libxslt.3.gz +/usr/local/share/doc/libxslt/EXSLT/devhelp/devhelp2.xsl +/usr/local/share/doc/libxslt/EXSLT/devhelp/general.html +/usr/local/share/doc/libxslt/EXSLT/devhelp/home.png +/usr/local/share/doc/libxslt/EXSLT/devhelp/html.xsl +/usr/local/share/doc/libxslt/EXSLT/devhelp/index.html +/usr/local/share/doc/libxslt/EXSLT/devhelp/left.png +/usr/local/share/doc/libxslt/EXSLT/devhelp/libexslt-exslt.html +/usr/local/share/doc/libxslt/EXSLT/devhelp/libexslt-exsltexports.html +/usr/local/share/doc/libxslt/EXSLT/devhelp/libexslt.devhelp2 +/usr/local/share/doc/libxslt/EXSLT/devhelp/right.png +/usr/local/share/doc/libxslt/EXSLT/devhelp/style.css +/usr/local/share/doc/libxslt/EXSLT/devhelp/up.png +/usr/local/share/doc/libxslt/EXSLT/libexslt-api.xml +/usr/local/share/doc/libxslt/apibuild.py +/usr/local/share/doc/libxslt/devhelp/devhelp2.xsl +/usr/local/share/doc/libxslt/devhelp/general.html +/usr/local/share/doc/libxslt/devhelp/home.png +/usr/local/share/doc/libxslt/devhelp/html.xsl +/usr/local/share/doc/libxslt/devhelp/index.html +/usr/local/share/doc/libxslt/devhelp/left.png +/usr/local/share/doc/libxslt/devhelp/libxslt-attributes.html +/usr/local/share/doc/libxslt/devhelp/libxslt-documents.html +/usr/local/share/doc/libxslt/devhelp/libxslt-extensions.html +/usr/local/share/doc/libxslt/devhelp/libxslt-extra.html +/usr/local/share/doc/libxslt/devhelp/libxslt-functions.html +/usr/local/share/doc/libxslt/devhelp/libxslt-imports.html +/usr/local/share/doc/libxslt/devhelp/libxslt-keys.html +/usr/local/share/doc/libxslt/devhelp/libxslt-namespaces.html +/usr/local/share/doc/libxslt/devhelp/libxslt-numbersInternals.html +/usr/local/share/doc/libxslt/devhelp/libxslt-pattern.html +/usr/local/share/doc/libxslt/devhelp/libxslt-preproc.html +/usr/local/share/doc/libxslt/devhelp/libxslt-security.html +/usr/local/share/doc/libxslt/devhelp/libxslt-templates.html +/usr/local/share/doc/libxslt/devhelp/libxslt-transform.html +/usr/local/share/doc/libxslt/devhelp/libxslt-variables.html +/usr/local/share/doc/libxslt/devhelp/libxslt-xslt.html +/usr/local/share/doc/libxslt/devhelp/libxslt-xsltInternals.html +/usr/local/share/doc/libxslt/devhelp/libxslt-xsltexports.html +/usr/local/share/doc/libxslt/devhelp/libxslt-xsltlocale.html +/usr/local/share/doc/libxslt/devhelp/libxslt-xsltutils.html +/usr/local/share/doc/libxslt/devhelp/libxslt.devhelp2 +/usr/local/share/doc/libxslt/devhelp/right.png +/usr/local/share/doc/libxslt/devhelp/style.css +/usr/local/share/doc/libxslt/devhelp/up.png +/usr/local/share/doc/libxslt/libxslt-api.xml +/usr/local/share/doc/libxslt/tutorial/images/callouts/1.png +/usr/local/share/doc/libxslt/tutorial/images/callouts/10.png +/usr/local/share/doc/libxslt/tutorial/images/callouts/2.png +/usr/local/share/doc/libxslt/tutorial/images/callouts/3.png +/usr/local/share/doc/libxslt/tutorial/images/callouts/4.png +/usr/local/share/doc/libxslt/tutorial/images/callouts/5.png +/usr/local/share/doc/libxslt/tutorial/images/callouts/6.png +/usr/local/share/doc/libxslt/tutorial/images/callouts/7.png +/usr/local/share/doc/libxslt/tutorial/images/callouts/8.png +/usr/local/share/doc/libxslt/tutorial/images/callouts/9.png +/usr/local/share/doc/libxslt/tutorial/libxslt_tutorial.c +/usr/local/share/doc/libxslt/tutorial/libxslttutorial.html +/usr/local/share/doc/libxslt/tutorial/libxslttutorial.xml +/usr/local/share/doc/libxslt/tutorial2/libxslt_pipes.c +/usr/local/share/doc/libxslt/tutorial2/libxslt_pipes.html +/usr/local/share/doc/libxslt/tutorial2/libxslt_pipes.xml +/usr/local/share/doc/libxslt/xsltproc.1 +/usr/local/share/doc/libxslt/xsltproc.html +/usr/local/share/doc/libxslt/xsltproc.xml +/usr/local/share/man/man1/xsltproc.1.zst +/usr/local/share/man/man3/libexslt.3.zst +/usr/local/share/man/man3/libxslt.3.zst diff --git a/manifest/x86_64/t/tracker3_miners.filelist b/manifest/x86_64/l/localsearch.filelist similarity index 91% rename from manifest/x86_64/t/tracker3_miners.filelist rename to manifest/x86_64/l/localsearch.filelist index 82aa765af..a442427e6 100644 --- a/manifest/x86_64/t/tracker3_miners.filelist +++ b/manifest/x86_64/l/localsearch.filelist @@ -1,3 +1,11 @@ +/usr/local/bin/tracker3-daemon +/usr/local/bin/tracker3-extract +/usr/local/bin/tracker3-index +/usr/local/bin/tracker3-info +/usr/local/bin/tracker3-reset +/usr/local/bin/tracker3-search +/usr/local/bin/tracker3-status +/usr/local/bin/tracker3-tag /usr/local/etc/xdg/autostart/tracker-miner-fs-3.desktop /usr/local/etc/xdg/autostart/tracker-miner-rss-3.desktop /usr/local/lib64/tracker-miners-3.0/extract-modules/libextract-abw.so @@ -29,17 +37,8 @@ /usr/local/libexec/tracker-miner-fs-control-3 /usr/local/libexec/tracker-miner-rss-3 /usr/local/libexec/tracker-writeback-3 -/usr/local/libexec/tracker3/daemon -/usr/local/libexec/tracker3/extract -/usr/local/libexec/tracker3/index -/usr/local/libexec/tracker3/info -/usr/local/libexec/tracker3/reset -/usr/local/libexec/tracker3/search -/usr/local/libexec/tracker3/status -/usr/local/libexec/tracker3/tag /usr/local/share/dbus-1/interfaces/org.freedesktop.Tracker3.Miner.Files.Index.xml /usr/local/share/dbus-1/interfaces/org.freedesktop.Tracker3.Miner.xml -/usr/local/share/dbus-1/services/org.freedesktop.Tracker3.Miner.Extract.service /usr/local/share/dbus-1/services/org.freedesktop.Tracker3.Miner.Files.Control.service /usr/local/share/dbus-1/services/org.freedesktop.Tracker3.Miner.Files.service /usr/local/share/dbus-1/services/org.freedesktop.Tracker3.Miner.RSS.service @@ -79,6 +78,7 @@ /usr/local/share/locale/it/LC_MESSAGES/tracker3-miners.mo /usr/local/share/locale/ja/LC_MESSAGES/tracker3-miners.mo /usr/local/share/locale/ka/LC_MESSAGES/tracker3-miners.mo +/usr/local/share/locale/kab/LC_MESSAGES/tracker3-miners.mo /usr/local/share/locale/kk/LC_MESSAGES/tracker3-miners.mo /usr/local/share/locale/ko/LC_MESSAGES/tracker3-miners.mo /usr/local/share/locale/lt/LC_MESSAGES/tracker3-miners.mo @@ -142,3 +142,11 @@ /usr/local/share/tracker3-miners/extract-rules/90-gstreamer-video-generic.rule /usr/local/share/tracker3-miners/miners/org.freedesktop.Tracker3.Miner.Files.service /usr/local/share/tracker3-miners/miners/org.freedesktop.Tracker3.Miner.RSS.service +/usr/local/share/tracker3/commands/tracker-daemon.desktop +/usr/local/share/tracker3/commands/tracker-extract.desktop +/usr/local/share/tracker3/commands/tracker-index.desktop +/usr/local/share/tracker3/commands/tracker-info.desktop +/usr/local/share/tracker3/commands/tracker-reset.desktop +/usr/local/share/tracker3/commands/tracker-search.desktop +/usr/local/share/tracker3/commands/tracker-status.desktop +/usr/local/share/tracker3/commands/tracker-tag.desktop diff --git a/manifest/x86_64/m/mysql.filelist b/manifest/x86_64/m/mysql.filelist index 71f29fc51..4ba3eb4b3 100644 --- a/manifest/x86_64/m/mysql.filelist +++ b/manifest/x86_64/m/mysql.filelist @@ -179,7 +179,7 @@ /usr/local/lib64/libmysqlclient.a /usr/local/lib64/libmysqlclient.so /usr/local/lib64/libmysqlclient.so.24 -/usr/local/lib64/libmysqlclient.so.24.0.0 +/usr/local/lib64/libmysqlclient.so.24.0.2 /usr/local/lib64/libmysqlservices.a /usr/local/lib64/pkgconfig/mysqlclient.pc /usr/local/share/aclocal/mysql.m4 diff --git a/manifest/x86_64/p/pango.filelist b/manifest/x86_64/p/pango.filelist index 6c36e98d4..6dc170fe9 100644 --- a/manifest/x86_64/p/pango.filelist +++ b/manifest/x86_64/p/pango.filelist @@ -47,16 +47,16 @@ /usr/local/lib64/girepository-1.0/PangoXft-1.0.typelib /usr/local/lib64/libpango-1.0.so /usr/local/lib64/libpango-1.0.so.0 -/usr/local/lib64/libpango-1.0.so.0.5200.2 +/usr/local/lib64/libpango-1.0.so.0.5400.0 /usr/local/lib64/libpangocairo-1.0.so /usr/local/lib64/libpangocairo-1.0.so.0 -/usr/local/lib64/libpangocairo-1.0.so.0.5200.2 +/usr/local/lib64/libpangocairo-1.0.so.0.5400.0 /usr/local/lib64/libpangoft2-1.0.so /usr/local/lib64/libpangoft2-1.0.so.0 -/usr/local/lib64/libpangoft2-1.0.so.0.5200.2 +/usr/local/lib64/libpangoft2-1.0.so.0.5400.0 /usr/local/lib64/libpangoxft-1.0.so /usr/local/lib64/libpangoxft-1.0.so.0 -/usr/local/lib64/libpangoxft-1.0.so.0.5200.2 +/usr/local/lib64/libpangoxft-1.0.so.0.5400.0 /usr/local/lib64/pkgconfig/pango.pc /usr/local/lib64/pkgconfig/pangocairo.pc /usr/local/lib64/pkgconfig/pangofc.pc diff --git a/manifest/x86_64/p/postgresql.filelist b/manifest/x86_64/p/postgresql.filelist index 76de0890c..79272b455 100644 --- a/manifest/x86_64/p/postgresql.filelist +++ b/manifest/x86_64/p/postgresql.filelist @@ -2716,6 +2716,8 @@ /usr/local/share/doc/postgresql/html/regress.html /usr/local/share/doc/postgresql/html/release-16-1.html /usr/local/share/doc/postgresql/html/release-16-2.html +/usr/local/share/doc/postgresql/html/release-16-3.html +/usr/local/share/doc/postgresql/html/release-16-4.html /usr/local/share/doc/postgresql/html/release-16.html /usr/local/share/doc/postgresql/html/release-prior.html /usr/local/share/doc/postgresql/html/release.html @@ -3692,6 +3694,7 @@ /usr/local/share/postgresql/extension/xml2--1.0--1.1.sql /usr/local/share/postgresql/extension/xml2--1.1.sql /usr/local/share/postgresql/extension/xml2.control +/usr/local/share/postgresql/fix-CVE-2024-4317.sql /usr/local/share/postgresql/information_schema.sql /usr/local/share/postgresql/pg_hba.conf.sample /usr/local/share/postgresql/pg_ident.conf.sample diff --git a/manifest/x86_64/p/py3_cfgv.filelist b/manifest/x86_64/p/py3_cfgv.filelist new file mode 100644 index 000000000..0245c5dee --- /dev/null +++ b/manifest/x86_64/p/py3_cfgv.filelist @@ -0,0 +1,9 @@ +/usr/local/lib/python3.12/site-packages/__pycache__/cfgv.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/cfgv-3.4.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/cfgv-3.4.0.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/cfgv-3.4.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/cfgv-3.4.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/cfgv-3.4.0.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/cfgv-3.4.0.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/cfgv-3.4.0.dist-info/top_level.txt +/usr/local/lib/python3.12/site-packages/cfgv.py diff --git a/manifest/x86_64/p/py3_identify.filelist b/manifest/x86_64/p/py3_identify.filelist new file mode 100644 index 000000000..d4e53a3ba --- /dev/null +++ b/manifest/x86_64/p/py3_identify.filelist @@ -0,0 +1,24 @@ +/usr/local/bin/identify-cli +/usr/local/lib/python3.12/site-packages/identify-2.6.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/identify-2.6.0.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/identify-2.6.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/identify-2.6.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/identify-2.6.0.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/identify-2.6.0.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/identify-2.6.0.dist-info/entry_points.txt +/usr/local/lib/python3.12/site-packages/identify-2.6.0.dist-info/top_level.txt +/usr/local/lib/python3.12/site-packages/identify/__init__.py +/usr/local/lib/python3.12/site-packages/identify/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/identify/__pycache__/cli.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/identify/__pycache__/extensions.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/identify/__pycache__/identify.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/identify/__pycache__/interpreters.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/identify/cli.py +/usr/local/lib/python3.12/site-packages/identify/extensions.py +/usr/local/lib/python3.12/site-packages/identify/identify.py +/usr/local/lib/python3.12/site-packages/identify/interpreters.py +/usr/local/lib/python3.12/site-packages/identify/py.typed +/usr/local/lib/python3.12/site-packages/identify/vendor/__init__.py +/usr/local/lib/python3.12/site-packages/identify/vendor/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/identify/vendor/__pycache__/licenses.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/identify/vendor/licenses.py diff --git a/manifest/x86_64/p/py3_libxml2.filelist b/manifest/x86_64/p/py3_libxml2.filelist index e5626069a..0379256c5 100644 --- a/manifest/x86_64/p/py3_libxml2.filelist +++ b/manifest/x86_64/p/py3_libxml2.filelist @@ -4,8 +4,8 @@ /usr/local/lib64/python3.12/site-packages/__pycache__/libxml2.cpython-312.pyc /usr/local/lib64/python3.12/site-packages/drv_libxml2.py /usr/local/lib64/python3.12/site-packages/libxml2.py -/usr/local/lib64/python3.12/site-packages/libxml2_python-2.13.2-py3.12.egg-info/PKG-INFO -/usr/local/lib64/python3.12/site-packages/libxml2_python-2.13.2-py3.12.egg-info/SOURCES.txt -/usr/local/lib64/python3.12/site-packages/libxml2_python-2.13.2-py3.12.egg-info/dependency_links.txt -/usr/local/lib64/python3.12/site-packages/libxml2_python-2.13.2-py3.12.egg-info/top_level.txt +/usr/local/lib64/python3.12/site-packages/libxml2_python-2.13.3-py3.12.egg-info/PKG-INFO +/usr/local/lib64/python3.12/site-packages/libxml2_python-2.13.3-py3.12.egg-info/SOURCES.txt +/usr/local/lib64/python3.12/site-packages/libxml2_python-2.13.3-py3.12.egg-info/dependency_links.txt +/usr/local/lib64/python3.12/site-packages/libxml2_python-2.13.3-py3.12.egg-info/top_level.txt /usr/local/lib64/python3.12/site-packages/libxml2mod.cpython-312-x86_64-linux-gnu.so diff --git a/manifest/x86_64/p/py3_nodeenv.filelist b/manifest/x86_64/p/py3_nodeenv.filelist index 5569def3c..d5bfcf85b 100644 --- a/manifest/x86_64/p/py3_nodeenv.filelist +++ b/manifest/x86_64/p/py3_nodeenv.filelist @@ -1,11 +1,12 @@ /usr/local/bin/nodeenv -/usr/local/lib/python3.12/site-packages/__pycache__/nodeenv.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/__pycache__/nodeenv.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/nodeenv-1.8.0-py3.12.egg-info/PKG-INFO -/usr/local/lib/python3.12/site-packages/nodeenv-1.8.0-py3.12.egg-info/SOURCES.txt -/usr/local/lib/python3.12/site-packages/nodeenv-1.8.0-py3.12.egg-info/dependency_links.txt -/usr/local/lib/python3.12/site-packages/nodeenv-1.8.0-py3.12.egg-info/entry_points.txt -/usr/local/lib/python3.12/site-packages/nodeenv-1.8.0-py3.12.egg-info/not-zip-safe -/usr/local/lib/python3.12/site-packages/nodeenv-1.8.0-py3.12.egg-info/requires.txt -/usr/local/lib/python3.12/site-packages/nodeenv-1.8.0-py3.12.egg-info/top_level.txt +/usr/local/lib/python3.12/site-packages/nodeenv-1.9.1.dist-info/AUTHORS +/usr/local/lib/python3.12/site-packages/nodeenv-1.9.1.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/nodeenv-1.9.1.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/nodeenv-1.9.1.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/nodeenv-1.9.1.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/nodeenv-1.9.1.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/nodeenv-1.9.1.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/nodeenv-1.9.1.dist-info/entry_points.txt +/usr/local/lib/python3.12/site-packages/nodeenv-1.9.1.dist-info/top_level.txt /usr/local/lib/python3.12/site-packages/nodeenv.py diff --git a/manifest/x86_64/p/py3_pip.filelist b/manifest/x86_64/p/py3_pip.filelist index 3ed2af452..6db456e58 100644 --- a/manifest/x86_64/p/py3_pip.filelist +++ b/manifest/x86_64/p/py3_pip.filelist @@ -1,71 +1,49 @@ /usr/local/bin/pip /usr/local/bin/pip3 -/usr/local/bin/pip3.12 -/usr/local/lib/python3.12/site-packages/pip-23.3.1-py3.12.egg-info/PKG-INFO -/usr/local/lib/python3.12/site-packages/pip-23.3.1-py3.12.egg-info/SOURCES.txt -/usr/local/lib/python3.12/site-packages/pip-23.3.1-py3.12.egg-info/dependency_links.txt -/usr/local/lib/python3.12/site-packages/pip-23.3.1-py3.12.egg-info/entry_points.txt -/usr/local/lib/python3.12/site-packages/pip-23.3.1-py3.12.egg-info/not-zip-safe -/usr/local/lib/python3.12/site-packages/pip-23.3.1-py3.12.egg-info/top_level.txt +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/AUTHORS.txt +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/LICENSE.txt +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/entry_points.txt +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/top_level.txt /usr/local/lib/python3.12/site-packages/pip/__init__.py /usr/local/lib/python3.12/site-packages/pip/__main__.py /usr/local/lib/python3.12/site-packages/pip/__pip-runner__.py /usr/local/lib/python3.12/site-packages/pip/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/__pycache__/__main__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/__pycache__/__main__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/__pycache__/__pip-runner__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/build_env.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/cache.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/configuration.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/main.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/build_env.py /usr/local/lib/python3.12/site-packages/pip/_internal/cache.py /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py /usr/local/lib/python3.12/site-packages/pip/_internal/cli/base_command.py /usr/local/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py /usr/local/lib/python3.12/site-packages/pip/_internal/cli/command_context.py +/usr/local/lib/python3.12/site-packages/pip/_internal/cli/index_command.py /usr/local/lib/python3.12/site-packages/pip/_internal/cli/main.py /usr/local/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py /usr/local/lib/python3.12/site-packages/pip/_internal/cli/parser.py @@ -75,41 +53,23 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/commands/cache.py /usr/local/lib/python3.12/site-packages/pip/_internal/commands/check.py /usr/local/lib/python3.12/site-packages/pip/_internal/commands/completion.py @@ -130,15 +90,10 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/configuration.py /usr/local/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/distributions/base.py /usr/local/lib/python3.12/site-packages/pip/_internal/distributions/installed.py /usr/local/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py @@ -146,78 +101,50 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/exceptions.py /usr/local/lib/python3.12/site-packages/pip/_internal/index/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/index/collector.py /usr/local/lib/python3.12/site-packages/pip/_internal/index/package_finder.py /usr/local/lib/python3.12/site-packages/pip/_internal/index/sources.py /usr/local/lib/python3.12/site-packages/pip/_internal/locations/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py /usr/local/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py /usr/local/lib/python3.12/site-packages/pip/_internal/locations/base.py /usr/local/lib/python3.12/site-packages/pip/_internal/main.py /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/_json.py /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/base.py /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py /usr/local/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py /usr/local/lib/python3.12/site-packages/pip/_internal/models/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/index.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/link.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/models/candidate.py /usr/local/lib/python3.12/site-packages/pip/_internal/models/direct_url.py /usr/local/lib/python3.12/site-packages/pip/_internal/models/format_control.py @@ -231,21 +158,13 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/models/wheel.py /usr/local/lib/python3.12/site-packages/pip/_internal/network/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/download.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/session.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/network/auth.py /usr/local/lib/python3.12/site-packages/pip/_internal/network/cache.py /usr/local/lib/python3.12/site-packages/pip/_internal/network/download.py @@ -255,30 +174,18 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py /usr/local/lib/python3.12/site-packages/pip/_internal/operations/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py /usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py /usr/local/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py @@ -290,28 +197,19 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/operations/freeze.py /usr/local/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/operations/install/editable_legacy.py /usr/local/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py /usr/local/lib/python3.12/site-packages/pip/_internal/operations/prepare.py /usr/local/lib/python3.12/site-packages/pip/_internal/pyproject.py /usr/local/lib/python3.12/site-packages/pip/_internal/req/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/req/constructors.py /usr/local/lib/python3.12/site-packages/pip/_internal/req/req_file.py /usr/local/lib/python3.12/site-packages/pip/_internal/req/req_install.py @@ -319,35 +217,22 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/base.py /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py /usr/local/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py @@ -359,59 +244,32 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/models.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/models.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/retry.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/_log.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py @@ -429,8 +287,8 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/utils/hashes.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/logging.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/misc.py -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/models.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/packaging.py +/usr/local/lib/python3.12/site-packages/pip/_internal/utils/retry.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/setuptools_build.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py @@ -440,17 +298,11 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/utils/wheel.py /usr/local/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py /usr/local/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/vcs/bazaar.py /usr/local/lib/python3.12/site-packages/pip/_internal/vcs/git.py /usr/local/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py @@ -459,40 +311,24 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/wheel_builder.py /usr/local/lib/python3.12/site-packages/pip/_vendor/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/__pycache__/six.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/__pycache__/six.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py @@ -504,227 +340,26 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem /usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/core.py /usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/py.typed -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachinedict.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachinedict.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/macromanprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/macromanprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/resultdict.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/resultdict.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf1632prober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf1632prober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/big5freq.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/big5prober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/chardistribution.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/charsetgroupprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/charsetprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/cli/chardetect.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/codingstatemachine.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/codingstatemachinedict.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/cp949prober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/enums.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/escprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/escsm.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/eucjpprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/euckrfreq.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/euckrprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/euctwfreq.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/euctwprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/gb2312freq.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/gb2312prober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/hebrewprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/jisfreq.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/johabfreq.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/johabprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/jpcntx.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langbulgarianmodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langgreekmodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langhebrewmodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langhungarianmodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langrussianmodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langthaimodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langturkishmodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/latin1prober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/macromanprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/mbcharsetprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/mbcsgroupprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/mbcssm.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/languages.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/py.typed -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/resultdict.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/sbcharsetprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/sbcsgroupprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/sjisprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/universaldetector.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/utf1632prober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/utf8prober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/version.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama.pyi -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/ansi.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/ansitowin32.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/initialise.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/ansi_test.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/ansi_test.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/ansitowin32_test.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/ansitowin32_test.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/initialise_test.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/initialise_test.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/isatty_test.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/isatty_test.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/utils.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/utils.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/winterm_test.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/winterm_test.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/ansi_test.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/initialise_test.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/isatty_test.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/utils.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/winterm_test.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/win32.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/winterm.py /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib.pyi /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/database.py /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/index.py @@ -746,30 +381,19 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distro/distro.py /usr/local/lib/python3.12/site-packages/pip/_vendor/distro/py.typed /usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/idna/codec.py /usr/local/lib/python3.12/site-packages/pip/_vendor/idna/compat.py /usr/local/lib/python3.12/site-packages/pip/_vendor/idna/core.py @@ -781,44 +405,35 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack.pyi /usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py /usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py /usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__about__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/_elffile.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/_parser.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/metadata.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/py.typed /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py @@ -828,25 +443,16 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/pkg_resources.pyi /usr/local/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py /usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py /usr/local/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py @@ -858,73 +464,42 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/cmdline.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/console.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatter.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/_mapping.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/bbcode.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/groff.py @@ -941,11 +516,8 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/lexer.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/_mapping.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/python.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/modeline.py @@ -956,98 +528,42 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/style.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/styles/_mapping.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/token.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/unistring.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/util.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/actions.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/actions.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/common.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/common.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/core.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/core.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/exceptions.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/exceptions.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/helpers.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/helpers.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/results.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/results.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/testing.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/testing.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/unicode.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/unicode.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/util.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/util.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/actions.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/common.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/core.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/diagram/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/exceptions.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/helpers.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/py.typed -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/results.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/testing.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/unicode.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/util.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks.pyi /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_compat.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py /usr/local/lib/python3.12/site-packages/pip/_vendor/requests.pyi /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/__version__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py /usr/local/lib/python3.12/site-packages/pip/_vendor/requests/adapters.py @@ -1068,20 +584,13 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.pyi /usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py /usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/collections_abc.pyi /usr/local/lib/python3.12/site-packages/pip/_vendor/resolvelib/providers.py @@ -1096,159 +605,82 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__main__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/_cell_widths.py /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_codes.py /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_replace.py @@ -1325,67 +757,22 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/themes.py /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/traceback.py /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/tree.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/six.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/_asyncio.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/_utils.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/after.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/before.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/before_sleep.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/nap.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/py.typed -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/retry.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/stop.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/tornadoweb.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/wait.py /usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/_parser.py /usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/_re.py /usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/_types.py /usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/py.typed /usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/_api.py /usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/_macos.py /usr/local/lib/python3.12/site-packages/pip/_vendor/truststore/_openssl.py @@ -1397,54 +784,33 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3.pyi /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/_collections.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/_version.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/connection.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/connectionpool.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/appengine.py @@ -1457,16 +823,11 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/filepost.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/six.py @@ -1475,31 +836,18 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/response.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/connection.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/proxy.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/queue.py @@ -1513,20 +861,4 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/url.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/wait.py /usr/local/lib/python3.12/site-packages/pip/_vendor/vendor.txt -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings.pyi -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/labels.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/mklabels.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/tests.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/x_user_defined.py /usr/local/lib/python3.12/site-packages/pip/py.typed diff --git a/manifest/x86_64/p/py3_pre_commit.filelist b/manifest/x86_64/p/py3_pre_commit.filelist index 18bc387c7..321535d9a 100644 --- a/manifest/x86_64/p/py3_pre_commit.filelist +++ b/manifest/x86_64/p/py3_pre_commit.filelist @@ -1,12 +1,12 @@ /usr/local/bin/pre-commit -/usr/local/lib/python3.12/site-packages/pre_commit-3.7.1.dist-info/INSTALLER -/usr/local/lib/python3.12/site-packages/pre_commit-3.7.1.dist-info/LICENSE -/usr/local/lib/python3.12/site-packages/pre_commit-3.7.1.dist-info/METADATA -/usr/local/lib/python3.12/site-packages/pre_commit-3.7.1.dist-info/RECORD -/usr/local/lib/python3.12/site-packages/pre_commit-3.7.1.dist-info/REQUESTED -/usr/local/lib/python3.12/site-packages/pre_commit-3.7.1.dist-info/WHEEL -/usr/local/lib/python3.12/site-packages/pre_commit-3.7.1.dist-info/entry_points.txt -/usr/local/lib/python3.12/site-packages/pre_commit-3.7.1.dist-info/top_level.txt +/usr/local/lib/python3.12/site-packages/pre_commit-3.8.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/pre_commit-3.8.0.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/pre_commit-3.8.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/pre_commit-3.8.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/pre_commit-3.8.0.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/pre_commit-3.8.0.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/pre_commit-3.8.0.dist-info/entry_points.txt +/usr/local/lib/python3.12/site-packages/pre_commit-3.8.0.dist-info/top_level.txt /usr/local/lib/python3.12/site-packages/pre_commit/__init__.py /usr/local/lib/python3.12/site-packages/pre_commit/__main__.py /usr/local/lib/python3.12/site-packages/pre_commit/__pycache__/__init__.cpython-312.pyc diff --git a/manifest/x86_64/p/py3_pyicu.filelist b/manifest/x86_64/p/py3_pyicu.filelist index 5761a325b..5e52cb780 100644 --- a/manifest/x86_64/p/py3_pyicu.filelist +++ b/manifest/x86_64/p/py3_pyicu.filelist @@ -1,8 +1,10 @@ -/usr/local/lib64/python3.12/site-packages/PyICU-2.11-py3.12.egg-info/PKG-INFO -/usr/local/lib64/python3.12/site-packages/PyICU-2.11-py3.12.egg-info/SOURCES.txt -/usr/local/lib64/python3.12/site-packages/PyICU-2.11-py3.12.egg-info/dependency_links.txt -/usr/local/lib64/python3.12/site-packages/PyICU-2.11-py3.12.egg-info/top_level.txt +/usr/local/lib64/python3.12/site-packages/PyICU-2.13.1.dist-info/INSTALLER +/usr/local/lib64/python3.12/site-packages/PyICU-2.13.1.dist-info/LICENSE +/usr/local/lib64/python3.12/site-packages/PyICU-2.13.1.dist-info/METADATA +/usr/local/lib64/python3.12/site-packages/PyICU-2.13.1.dist-info/RECORD +/usr/local/lib64/python3.12/site-packages/PyICU-2.13.1.dist-info/REQUESTED +/usr/local/lib64/python3.12/site-packages/PyICU-2.13.1.dist-info/WHEEL +/usr/local/lib64/python3.12/site-packages/PyICU-2.13.1.dist-info/top_level.txt /usr/local/lib64/python3.12/site-packages/icu/__init__.py -/usr/local/lib64/python3.12/site-packages/icu/__pycache__/__init__.cpython-312.opt-2.pyc /usr/local/lib64/python3.12/site-packages/icu/__pycache__/__init__.cpython-312.pyc /usr/local/lib64/python3.12/site-packages/icu/_icu_.cpython-312-x86_64-linux-gnu.so diff --git a/manifest/x86_64/p/py3_pyyaml.filelist b/manifest/x86_64/p/py3_pyyaml.filelist index 8d5758f26..8f0d24e9a 100644 --- a/manifest/x86_64/p/py3_pyyaml.filelist +++ b/manifest/x86_64/p/py3_pyyaml.filelist @@ -1,45 +1,31 @@ -/usr/local/lib64/python3.12/site-packages/PyYAML-6.0.1-py3.12.egg-info/PKG-INFO -/usr/local/lib64/python3.12/site-packages/PyYAML-6.0.1-py3.12.egg-info/SOURCES.txt -/usr/local/lib64/python3.12/site-packages/PyYAML-6.0.1-py3.12.egg-info/dependency_links.txt -/usr/local/lib64/python3.12/site-packages/PyYAML-6.0.1-py3.12.egg-info/top_level.txt +/usr/local/lib64/python3.12/site-packages/PyYAML-6.0.2.dist-info/INSTALLER +/usr/local/lib64/python3.12/site-packages/PyYAML-6.0.2.dist-info/LICENSE +/usr/local/lib64/python3.12/site-packages/PyYAML-6.0.2.dist-info/METADATA +/usr/local/lib64/python3.12/site-packages/PyYAML-6.0.2.dist-info/RECORD +/usr/local/lib64/python3.12/site-packages/PyYAML-6.0.2.dist-info/REQUESTED +/usr/local/lib64/python3.12/site-packages/PyYAML-6.0.2.dist-info/WHEEL +/usr/local/lib64/python3.12/site-packages/PyYAML-6.0.2.dist-info/top_level.txt /usr/local/lib64/python3.12/site-packages/_yaml/__init__.py -/usr/local/lib64/python3.12/site-packages/_yaml/__pycache__/__init__.cpython-312.opt-2.pyc /usr/local/lib64/python3.12/site-packages/_yaml/__pycache__/__init__.cpython-312.pyc /usr/local/lib64/python3.12/site-packages/yaml/__init__.py -/usr/local/lib64/python3.12/site-packages/yaml/__pycache__/__init__.cpython-312.opt-2.pyc /usr/local/lib64/python3.12/site-packages/yaml/__pycache__/__init__.cpython-312.pyc -/usr/local/lib64/python3.12/site-packages/yaml/__pycache__/composer.cpython-312.opt-2.pyc /usr/local/lib64/python3.12/site-packages/yaml/__pycache__/composer.cpython-312.pyc -/usr/local/lib64/python3.12/site-packages/yaml/__pycache__/constructor.cpython-312.opt-2.pyc /usr/local/lib64/python3.12/site-packages/yaml/__pycache__/constructor.cpython-312.pyc -/usr/local/lib64/python3.12/site-packages/yaml/__pycache__/cyaml.cpython-312.opt-2.pyc /usr/local/lib64/python3.12/site-packages/yaml/__pycache__/cyaml.cpython-312.pyc -/usr/local/lib64/python3.12/site-packages/yaml/__pycache__/dumper.cpython-312.opt-2.pyc /usr/local/lib64/python3.12/site-packages/yaml/__pycache__/dumper.cpython-312.pyc -/usr/local/lib64/python3.12/site-packages/yaml/__pycache__/emitter.cpython-312.opt-2.pyc /usr/local/lib64/python3.12/site-packages/yaml/__pycache__/emitter.cpython-312.pyc -/usr/local/lib64/python3.12/site-packages/yaml/__pycache__/error.cpython-312.opt-2.pyc /usr/local/lib64/python3.12/site-packages/yaml/__pycache__/error.cpython-312.pyc -/usr/local/lib64/python3.12/site-packages/yaml/__pycache__/events.cpython-312.opt-2.pyc /usr/local/lib64/python3.12/site-packages/yaml/__pycache__/events.cpython-312.pyc -/usr/local/lib64/python3.12/site-packages/yaml/__pycache__/loader.cpython-312.opt-2.pyc /usr/local/lib64/python3.12/site-packages/yaml/__pycache__/loader.cpython-312.pyc -/usr/local/lib64/python3.12/site-packages/yaml/__pycache__/nodes.cpython-312.opt-2.pyc /usr/local/lib64/python3.12/site-packages/yaml/__pycache__/nodes.cpython-312.pyc -/usr/local/lib64/python3.12/site-packages/yaml/__pycache__/parser.cpython-312.opt-2.pyc /usr/local/lib64/python3.12/site-packages/yaml/__pycache__/parser.cpython-312.pyc -/usr/local/lib64/python3.12/site-packages/yaml/__pycache__/reader.cpython-312.opt-2.pyc /usr/local/lib64/python3.12/site-packages/yaml/__pycache__/reader.cpython-312.pyc -/usr/local/lib64/python3.12/site-packages/yaml/__pycache__/representer.cpython-312.opt-2.pyc /usr/local/lib64/python3.12/site-packages/yaml/__pycache__/representer.cpython-312.pyc -/usr/local/lib64/python3.12/site-packages/yaml/__pycache__/resolver.cpython-312.opt-2.pyc /usr/local/lib64/python3.12/site-packages/yaml/__pycache__/resolver.cpython-312.pyc -/usr/local/lib64/python3.12/site-packages/yaml/__pycache__/scanner.cpython-312.opt-2.pyc /usr/local/lib64/python3.12/site-packages/yaml/__pycache__/scanner.cpython-312.pyc -/usr/local/lib64/python3.12/site-packages/yaml/__pycache__/serializer.cpython-312.opt-2.pyc /usr/local/lib64/python3.12/site-packages/yaml/__pycache__/serializer.cpython-312.pyc -/usr/local/lib64/python3.12/site-packages/yaml/__pycache__/tokens.cpython-312.opt-2.pyc /usr/local/lib64/python3.12/site-packages/yaml/__pycache__/tokens.cpython-312.pyc +/usr/local/lib64/python3.12/site-packages/yaml/_yaml.cpython-312-x86_64-linux-gnu.so /usr/local/lib64/python3.12/site-packages/yaml/composer.py /usr/local/lib64/python3.12/site-packages/yaml/constructor.py /usr/local/lib64/python3.12/site-packages/yaml/cyaml.py diff --git a/manifest/x86_64/p/py3_setuptools.filelist b/manifest/x86_64/p/py3_setuptools.filelist index 8a48cc76c..7dbbc1a9b 100644 --- a/manifest/x86_64/p/py3_setuptools.filelist +++ b/manifest/x86_64/p/py3_setuptools.filelist @@ -8,137 +8,46 @@ /usr/local/lib/python3.12/site-packages/pkg_resources/__init__.py /usr/local/lib/python3.12/site-packages/pkg_resources/__pycache__/__init__.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/pkg_resources/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/__init__.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/__pycache__/typing_extensions.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/__pycache__/typing_extensions.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/__pycache__/zipp.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/__pycache__/zipp.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__init__.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_adapters.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_adapters.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_common.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_common.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_compat.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_compat.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_itertools.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_itertools.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_legacy.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_legacy.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/abc.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/abc.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/readers.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/readers.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/simple.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/simple.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/_adapters.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/_common.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/_compat.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/_itertools.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/_legacy.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/abc.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/readers.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/importlib_resources/simple.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/jaraco/__init__.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/jaraco/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/jaraco/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/jaraco/__pycache__/context.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/jaraco/__pycache__/context.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/jaraco/__pycache__/functools.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/jaraco/__pycache__/functools.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/jaraco/context.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/jaraco/functools.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/jaraco/text/__init__.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/jaraco/text/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/jaraco/text/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/more_itertools/__init__.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/more.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/more.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/recipes.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/recipes.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/more_itertools/more.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/more_itertools/recipes.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__init__.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/_elffile.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/_manylinux.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/_musllinux.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/_parser.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/_parser.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/_tokenizer.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/metadata.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/metadata.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/tags.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/tags.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/_elffile.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/_manylinux.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/_musllinux.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/_parser.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/_structures.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/_tokenizer.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/markers.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/metadata.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/requirements.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/specifiers.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/tags.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/utils.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/packaging/version.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__init__.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__main__.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/__main__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/android.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/android.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/api.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/api.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/macos.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/unix.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/version.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/version.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/windows.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/android.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/api.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/macos.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/unix.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/version.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/platformdirs/windows.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/typing_extensions.py -/usr/local/lib/python3.12/site-packages/pkg_resources/_vendor/zipp.py -/usr/local/lib/python3.12/site-packages/pkg_resources/extern/__init__.py -/usr/local/lib/python3.12/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/setuptools-68.2.2.post20231003-py3.12.egg-info/PKG-INFO -/usr/local/lib/python3.12/site-packages/setuptools-68.2.2.post20231003-py3.12.egg-info/SOURCES.txt -/usr/local/lib/python3.12/site-packages/setuptools-68.2.2.post20231003-py3.12.egg-info/dependency_links.txt -/usr/local/lib/python3.12/site-packages/setuptools-68.2.2.post20231003-py3.12.egg-info/entry_points.txt -/usr/local/lib/python3.12/site-packages/setuptools-68.2.2.post20231003-py3.12.egg-info/requires.txt +/usr/local/lib/python3.12/site-packages/pkg_resources/api_tests.txt +/usr/local/lib/python3.12/site-packages/pkg_resources/py.typed +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__init__.py +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/test_find_distributions.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/test_find_distributions.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/test_integration_zope_interface.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/test_integration_zope_interface.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/test_markers.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/test_markers.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/test_pkg_resources.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/test_pkg_resources.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/test_resources.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/test_resources.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/test_working_set.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/__pycache__/test_working_set.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/data/my-test-package-source/__pycache__/setup.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/data/my-test-package-source/__pycache__/setup.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/data/my-test-package-source/setup.cfg +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/data/my-test-package-source/setup.py +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/data/my-test-package-zip/my-test-package.zip +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/data/my-test-package_unpacked-egg/my_test_package-1.0-py3.7.egg/EGG-INFO/PKG-INFO +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/data/my-test-package_unpacked-egg/my_test_package-1.0-py3.7.egg/EGG-INFO/SOURCES.txt +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/data/my-test-package_unpacked-egg/my_test_package-1.0-py3.7.egg/EGG-INFO/dependency_links.txt +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/data/my-test-package_unpacked-egg/my_test_package-1.0-py3.7.egg/EGG-INFO/top_level.txt +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/data/my-test-package_unpacked-egg/my_test_package-1.0-py3.7.egg/EGG-INFO/zip-safe +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/data/my-test-package_zipped-egg/my_test_package-1.0-py3.7.egg +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/test_find_distributions.py +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/test_integration_zope_interface.py +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/test_markers.py +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/test_pkg_resources.py +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/test_resources.py +/usr/local/lib/python3.12/site-packages/pkg_resources/tests/test_working_set.py +/usr/local/lib/python3.12/site-packages/setuptools-72.1.0.post20240803-py3.12.egg-info/PKG-INFO +/usr/local/lib/python3.12/site-packages/setuptools-72.1.0.post20240803-py3.12.egg-info/SOURCES.txt +/usr/local/lib/python3.12/site-packages/setuptools-72.1.0.post20240803-py3.12.egg-info/dependency_links.txt +/usr/local/lib/python3.12/site-packages/setuptools-72.1.0.post20240803-py3.12.egg-info/entry_points.txt +/usr/local/lib/python3.12/site-packages/setuptools-72.1.0.post20240803-py3.12.egg-info/requires.txt +/usr/local/lib/python3.12/site-packages/setuptools-72.1.0.post20240803-py3.12.egg-info/top_level.txt /usr/local/lib/python3.12/site-packages/setuptools/__init__.py /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/__init__.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/__init__.cpython-312.pyc @@ -162,8 +71,6 @@ /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/archive_util.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/build_meta.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/build_meta.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/setuptools/__pycache__/dep_util.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/__pycache__/dep_util.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/depends.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/depends.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/discovery.cpython-312.opt-2.pyc @@ -182,6 +89,8 @@ /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/launch.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/logging.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/logging.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/__pycache__/modified.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/__pycache__/modified.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/monkey.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/monkey.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/msvc.cpython-312.opt-2.pyc @@ -190,8 +99,6 @@ /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/namespaces.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/package_index.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/package_index.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/setuptools/__pycache__/py312compat.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/__pycache__/py312compat.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/sandbox.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/sandbox.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/__pycache__/unicode_utils.cpython-312.opt-2.pyc @@ -212,10 +119,14 @@ /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_collections.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_functools.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_functools.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_itertools.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_itertools.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_log.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_log.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_macos_compat.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_macos_compat.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_modified.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_modified.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_msvccompiler.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_msvccompiler.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/archive_util.cpython-312.opt-2.pyc @@ -256,10 +167,6 @@ /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/msvc9compiler.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/msvccompiler.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/msvccompiler.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/py38compat.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/py38compat.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/py39compat.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/py39compat.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/spawn.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/spawn.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/sysconfig.cpython-312.opt-2.pyc @@ -274,11 +181,61 @@ /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/version.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/versionpredicate.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/versionpredicate.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/zosccompiler.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/zosccompiler.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/_collections.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/_functools.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_itertools.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/_log.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/_macos_compat.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_modified.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/_msvccompiler.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/_elffile.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/_manylinux.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/_musllinux.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/_parser.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/_parser.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/_structures.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/_structures.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/_tokenizer.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/markers.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/markers.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/metadata.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/metadata.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/requirements.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/requirements.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/specifiers.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/tags.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/tags.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/utils.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/utils.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/version.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/__pycache__/version.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/_elffile.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/_manylinux.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/_musllinux.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/_parser.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/_structures.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/_tokenizer.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/markers.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/metadata.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/py.typed +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/requirements.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/specifiers.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/tags.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/utils.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/_vendor/packaging/version.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/archive_util.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/bcppcompiler.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/ccompiler.py @@ -322,8 +279,6 @@ /usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/install_lib.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/install_scripts.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/install_scripts.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/py37compat.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/py37compat.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/register.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/register.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/sdist.cpython-312.opt-2.pyc @@ -348,10 +303,27 @@ /usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/install_headers.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/install_lib.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/install_scripts.py -/usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/py37compat.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/register.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/sdist.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/upload.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/wininst-10.0-amd64.exe +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/wininst-10.0.exe +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/wininst-14.0-amd64.exe +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/wininst-14.0.exe +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/wininst-6.0.exe +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/wininst-7.1.exe +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/wininst-8.0.exe +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/wininst-9.0-amd64.exe +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/command/wininst-9.0.exe +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/compat/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/compat/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/compat/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/compat/__pycache__/py38.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/compat/__pycache__/py38.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/compat/__pycache__/py39.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/compat/__pycache__/py39.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/compat/py38.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/compat/py39.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/config.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/core.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/cygwinccompiler.py @@ -367,15 +339,155 @@ /usr/local/lib/python3.12/site-packages/setuptools/_distutils/log.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/msvc9compiler.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/msvccompiler.py -/usr/local/lib/python3.12/site-packages/setuptools/_distutils/py38compat.py -/usr/local/lib/python3.12/site-packages/setuptools/_distutils/py39compat.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/spawn.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/sysconfig.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/support.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/support.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_archive_util.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_archive_util.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_bdist.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_bdist.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_bdist_dumb.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_bdist_dumb.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_bdist_rpm.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_bdist_rpm.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_clib.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_clib.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_ext.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_ext.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_py.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_py.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_scripts.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_scripts.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_ccompiler.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_ccompiler.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_check.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_check.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_clean.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_clean.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_cmd.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_cmd.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_config.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_config.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_config_cmd.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_config_cmd.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_core.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_core.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_cygwinccompiler.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_cygwinccompiler.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_dir_util.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_dir_util.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_dist.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_dist.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_extension.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_extension.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_file_util.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_file_util.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_filelist.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_filelist.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_data.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_data.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_headers.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_headers.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_lib.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_lib.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_scripts.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_scripts.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_log.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_log.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_mingwccompiler.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_mingwccompiler.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_modified.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_modified.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_msvc9compiler.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_msvc9compiler.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_msvccompiler.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_msvccompiler.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_register.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_register.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_sdist.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_sdist.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_spawn.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_spawn.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_sysconfig.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_sysconfig.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_text_file.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_text_file.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_unixccompiler.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_unixccompiler.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_upload.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_upload.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_util.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_util.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_version.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_version.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_versionpredicate.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_versionpredicate.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/unix_compat.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/unix_compat.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/__pycache__/py38.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/__pycache__/py38.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/py38.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/support.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_archive_util.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_bdist.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_bdist_dumb.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_bdist_rpm.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_clib.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_ext.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_py.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_scripts.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_ccompiler.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_check.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_clean.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_cmd.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_config.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_config_cmd.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_core.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_cygwinccompiler.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_dir_util.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_dist.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_extension.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_file_util.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_filelist.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_data.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_headers.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_lib.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_scripts.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_log.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_mingwccompiler.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_modified.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_msvc9compiler.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_msvccompiler.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_register.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_sdist.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_spawn.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_sysconfig.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_text_file.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_unixccompiler.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_upload.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_util.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_version.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/test_versionpredicate.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/tests/unix_compat.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/text_file.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/unixccompiler.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/util.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/version.py /usr/local/lib/python3.12/site-packages/setuptools/_distutils/versionpredicate.py +/usr/local/lib/python3.12/site-packages/setuptools/_distutils/zosccompiler.py /usr/local/lib/python3.12/site-packages/setuptools/_entry_points.py /usr/local/lib/python3.12/site-packages/setuptools/_imp.py /usr/local/lib/python3.12/site-packages/setuptools/_importlib.py @@ -383,15 +495,61 @@ /usr/local/lib/python3.12/site-packages/setuptools/_normalization.py /usr/local/lib/python3.12/site-packages/setuptools/_path.py /usr/local/lib/python3.12/site-packages/setuptools/_reqs.py -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/__init__.py -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/__pycache__/ordered_set.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/__pycache__/ordered_set.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/__pycache__/typing_extensions.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/__pycache__/typing_extensions.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/__pycache__/zipp.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/__pycache__/zipp.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/top_level.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/autoasync.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/autoasync.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/autocommand.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/autocommand.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/automain.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/automain.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/autoparse.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/autoparse.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/errors.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/errors.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/autoasync.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/autocommand.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/automain.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/autoparse.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/autocommand/errors.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/top_level.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__main__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__pycache__/__main__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__pycache__/__main__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/__pycache__/py38.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/__pycache__/py38.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/py38.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.0.0.dist-info/top_level.txt /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__init__.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/__init__.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/__init__.cpython-312.pyc @@ -407,18 +565,35 @@ /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_itertools.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_meta.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_meta.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_py39compat.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_py39compat.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_text.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_text.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/diagnose.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/diagnose.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_adapters.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_collections.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_compat.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_functools.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_itertools.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_meta.py -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_py39compat.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_text.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__pycache__/py311.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__pycache__/py311.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__pycache__/py39.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__pycache__/py39.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/py311.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/py39.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/diagnose.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/py.typed +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources-6.4.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources-6.4.0.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources-6.4.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources-6.4.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources-6.4.0.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources-6.4.0.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources-6.4.0.dist-info/top_level.txt /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__init__.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/__init__.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/__init__.cpython-312.pyc @@ -426,39 +601,186 @@ /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_adapters.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_common.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_common.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_compat.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_compat.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_itertools.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_itertools.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_legacy.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_legacy.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/abc.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/abc.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/functional.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/functional.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/readers.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/readers.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/simple.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/__pycache__/simple.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/_adapters.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/_common.py -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/_compat.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/_itertools.py -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/_legacy.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/abc.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/compat/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/compat/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/compat/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/compat/__pycache__/py38.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/compat/__pycache__/py38.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/compat/__pycache__/py39.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/compat/__pycache__/py39.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/compat/py38.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/compat/py39.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/functional.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/future/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/future/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/future/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/future/__pycache__/adapters.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/future/__pycache__/adapters.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/future/adapters.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/py.typed /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/readers.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/simple.py -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/__init__.py -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/_path.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/_path.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_compatibilty_files.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_compatibilty_files.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_contents.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_contents.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_custom.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_custom.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_files.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_files.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_functional.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_functional.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_open.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_open.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_path.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_path.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_read.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_read.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_reader.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_reader.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_resource.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/test_resource.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/util.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/util.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/zip.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/__pycache__/zip.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/_path.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/compat/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/compat/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/compat/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/compat/__pycache__/py312.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/compat/__pycache__/py312.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/compat/__pycache__/py39.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/compat/__pycache__/py39.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/compat/py312.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/compat/py39.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data01/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data01/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data01/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data01/binary.file +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data01/subdirectory/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data01/subdirectory/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data01/subdirectory/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data01/subdirectory/binary.file +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data01/utf-16.file +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data01/utf-8.file +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data02/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data02/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data02/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data02/one/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data02/one/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data02/one/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data02/one/resource1.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data02/subdirectory/subsubdir/resource.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data02/two/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data02/two/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data02/two/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/data02/two/resource2.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/namespacedata01/binary.file +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/namespacedata01/subdirectory/binary.file +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/namespacedata01/utf-16.file +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/namespacedata01/utf-8.file +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/test_compatibilty_files.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/test_contents.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/test_custom.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/test_files.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/test_functional.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/test_open.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/test_path.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/test_read.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/test_reader.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/test_resource.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/util.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/importlib_resources/tests/zip.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect-7.3.1.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect-7.3.1.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect-7.3.1.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect-7.3.1.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect-7.3.1.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect-7.3.1.dist-info/top_level.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect/compat/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect/compat/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect/compat/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect/compat/__pycache__/py38.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect/compat/__pycache__/py38.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect/compat/py38.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/inflect/py.typed +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.context-5.3.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.context-5.3.0.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.context-5.3.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.context-5.3.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.context-5.3.0.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.context-5.3.0.dist-info/top_level.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.functools-4.0.1.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.functools-4.0.1.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.functools-4.0.1.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.functools-4.0.1.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.functools-4.0.1.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.functools-4.0.1.dist-info/top_level.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-3.12.1.dist-info/top_level.txt /usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/__pycache__/context.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/__pycache__/context.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/__pycache__/functools.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/__pycache__/functools.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/context.py -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools/__init__.pyi +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools/py.typed +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/Lorem ipsum.txt /usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__init__.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/__init__.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/layouts.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/layouts.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/show-newlines.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/show-newlines.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/strip-prefix.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/strip-prefix.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/to-dvorak.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/to-dvorak.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/to-qwerty.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/to-qwerty.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/layouts.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/show-newlines.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/strip-prefix.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/to-dvorak.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/to-qwerty.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.3.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.3.0.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.3.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.3.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.3.0.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.3.0.dist-info/WHEEL /usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__init__.pyi /usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__pycache__/__init__.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__pycache__/more.cpython-312.opt-2.pyc @@ -466,8 +788,27 @@ /usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__pycache__/recipes.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__pycache__/recipes.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/more.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/more.pyi +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/py.typed /usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/recipes.py -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/ordered_set.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/recipes.pyi +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/ordered_set-4.1.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/ordered_set-4.1.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/ordered_set-4.1.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/ordered_set-4.1.0.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/ordered_set-4.1.0.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/ordered_set/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/ordered_set/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/ordered_set/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/ordered_set/py.typed +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging-24.1.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging-24.1.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging-24.1.dist-info/LICENSE.APACHE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging-24.1.dist-info/LICENSE.BSD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging-24.1.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging-24.1.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging-24.1.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging-24.1.dist-info/WHEEL /usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging/__init__.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-312.pyc @@ -505,11 +846,50 @@ /usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging/_tokenizer.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging/markers.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging/metadata.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging/py.typed /usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging/requirements.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging/specifiers.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging/tags.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging/utils.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/packaging/version.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.2.2.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.2.2.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.2.2.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.2.2.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.2.2.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.2.2.dist-info/licenses/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__main__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/__main__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/android.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/android.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/api.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/api.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/macos.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/unix.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/version.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/version.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/windows.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/android.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/api.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/macos.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/py.typed +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/unix.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/version.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/windows.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/ruff.toml +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.0.1.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.0.1.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.0.1.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.0.1.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.0.1.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.0.1.dist-info/WHEEL /usr/local/lib/python3.12/site-packages/setuptools/_vendor/tomli/__init__.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/tomli/__pycache__/__init__.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/_vendor/tomli/__pycache__/__init__.cpython-312.pyc @@ -522,8 +902,168 @@ /usr/local/lib/python3.12/site-packages/setuptools/_vendor/tomli/_parser.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/tomli/_re.py /usr/local/lib/python3.12/site-packages/setuptools/_vendor/tomli/_types.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/tomli/py.typed +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/entry_points.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard-4.3.0.dist-info/top_level.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_checkers.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_checkers.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_config.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_config.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_decorators.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_decorators.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_exceptions.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_exceptions.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_functions.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_functions.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_importhook.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_importhook.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_memo.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_memo.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_pytest_plugin.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_pytest_plugin.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_suppression.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_suppression.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_transformer.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_transformer.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_union_transformer.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_union_transformer.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_utils.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/__pycache__/_utils.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_checkers.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_config.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_decorators.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_exceptions.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_functions.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_importhook.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_memo.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_pytest_plugin.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_suppression.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_transformer.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_union_transformer.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/_utils.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typeguard/py.typed +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typing_extensions-4.12.2.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typing_extensions-4.12.2.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typing_extensions-4.12.2.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typing_extensions-4.12.2.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/typing_extensions-4.12.2.dist-info/WHEEL /usr/local/lib/python3.12/site-packages/setuptools/_vendor/typing_extensions.py -/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.43.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.43.0.dist-info/LICENSE.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.43.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.43.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.43.0.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.43.0.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.43.0.dist-info/entry_points.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__main__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/__main__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/__main__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/_setuptools_logging.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/_setuptools_logging.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/bdist_wheel.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/bdist_wheel.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/macosx_libfile.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/macosx_libfile.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/metadata.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/metadata.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/util.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/util.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/wheelfile.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/wheelfile.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/_setuptools_logging.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/bdist_wheel.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/__pycache__/convert.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/__pycache__/convert.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/__pycache__/pack.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/__pycache__/pack.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/__pycache__/tags.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/__pycache__/tags.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/__pycache__/unpack.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/__pycache__/unpack.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/convert.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/pack.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/tags.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/cli/unpack.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/macosx_libfile.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/metadata.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/util.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_elffile.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_elffile.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_manylinux.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_manylinux.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_musllinux.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_musllinux.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_parser.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_parser.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_structures.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_structures.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_tokenizer.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/_tokenizer.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/markers.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/markers.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/requirements.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/requirements.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/specifiers.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/specifiers.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/tags.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/tags.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/utils.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/utils.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/version.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/__pycache__/version.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/_elffile.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/_manylinux.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/_musllinux.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/_parser.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/_structures.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/_tokenizer.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/markers.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/requirements.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/specifiers.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/tags.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/utils.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/packaging/version.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/vendored/vendor.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/wheel/wheelfile.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/LICENSE +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.19.2.dist-info/top_level.txt +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp/__pycache__/glob.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp/__pycache__/glob.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__pycache__/py310.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__pycache__/py310.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/py310.py +/usr/local/lib/python3.12/site-packages/setuptools/_vendor/zipp/glob.py /usr/local/lib/python3.12/site-packages/setuptools/archive_util.py /usr/local/lib/python3.12/site-packages/setuptools/build_meta.py /usr/local/lib/python3.12/site-packages/setuptools/cli-32.exe @@ -541,6 +1081,8 @@ /usr/local/lib/python3.12/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/command/__pycache__/bdist_wheel.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/command/__pycache__/bdist_wheel.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/command/__pycache__/build.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/command/__pycache__/build.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/command/__pycache__/build_clib.cpython-312.opt-2.pyc @@ -587,6 +1129,7 @@ /usr/local/lib/python3.12/site-packages/setuptools/command/alias.py /usr/local/lib/python3.12/site-packages/setuptools/command/bdist_egg.py /usr/local/lib/python3.12/site-packages/setuptools/command/bdist_rpm.py +/usr/local/lib/python3.12/site-packages/setuptools/command/bdist_wheel.py /usr/local/lib/python3.12/site-packages/setuptools/command/build.py /usr/local/lib/python3.12/site-packages/setuptools/command/build_clib.py /usr/local/lib/python3.12/site-packages/setuptools/command/build_ext.py @@ -609,6 +1152,18 @@ /usr/local/lib/python3.12/site-packages/setuptools/command/test.py /usr/local/lib/python3.12/site-packages/setuptools/command/upload.py /usr/local/lib/python3.12/site-packages/setuptools/command/upload_docs.py +/usr/local/lib/python3.12/site-packages/setuptools/compat/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/compat/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/compat/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/compat/__pycache__/py310.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/compat/__pycache__/py310.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/compat/__pycache__/py311.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/compat/__pycache__/py311.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/compat/__pycache__/py39.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/compat/__pycache__/py39.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/compat/py310.py +/usr/local/lib/python3.12/site-packages/setuptools/compat/py311.py +/usr/local/lib/python3.12/site-packages/setuptools/compat/py39.py /usr/local/lib/python3.12/site-packages/setuptools/config/__init__.py /usr/local/lib/python3.12/site-packages/setuptools/config/__pycache__/__init__.cpython-312.opt-2.pyc /usr/local/lib/python3.12/site-packages/setuptools/config/__pycache__/__init__.cpython-312.pyc @@ -642,15 +1197,11 @@ /usr/local/lib/python3.12/site-packages/setuptools/config/expand.py /usr/local/lib/python3.12/site-packages/setuptools/config/pyprojecttoml.py /usr/local/lib/python3.12/site-packages/setuptools/config/setupcfg.py -/usr/local/lib/python3.12/site-packages/setuptools/dep_util.py /usr/local/lib/python3.12/site-packages/setuptools/depends.py /usr/local/lib/python3.12/site-packages/setuptools/discovery.py /usr/local/lib/python3.12/site-packages/setuptools/dist.py /usr/local/lib/python3.12/site-packages/setuptools/errors.py /usr/local/lib/python3.12/site-packages/setuptools/extension.py -/usr/local/lib/python3.12/site-packages/setuptools/extern/__init__.py -/usr/local/lib/python3.12/site-packages/setuptools/extern/__pycache__/__init__.cpython-312.opt-2.pyc -/usr/local/lib/python3.12/site-packages/setuptools/extern/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/setuptools/glob.py /usr/local/lib/python3.12/site-packages/setuptools/gui-32.exe /usr/local/lib/python3.12/site-packages/setuptools/gui-64.exe @@ -659,14 +1210,209 @@ /usr/local/lib/python3.12/site-packages/setuptools/installer.py /usr/local/lib/python3.12/site-packages/setuptools/launch.py /usr/local/lib/python3.12/site-packages/setuptools/logging.py +/usr/local/lib/python3.12/site-packages/setuptools/modified.py /usr/local/lib/python3.12/site-packages/setuptools/monkey.py /usr/local/lib/python3.12/site-packages/setuptools/msvc.py /usr/local/lib/python3.12/site-packages/setuptools/namespaces.py /usr/local/lib/python3.12/site-packages/setuptools/package_index.py -/usr/local/lib/python3.12/site-packages/setuptools/py312compat.py /usr/local/lib/python3.12/site-packages/setuptools/sandbox.py /usr/local/lib/python3.12/site-packages/setuptools/script (dev).tmpl /usr/local/lib/python3.12/site-packages/setuptools/script.tmpl +/usr/local/lib/python3.12/site-packages/setuptools/tests/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/contexts.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/contexts.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/environment.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/environment.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/fixtures.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/fixtures.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/mod_with_constant.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/mod_with_constant.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/namespaces.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/namespaces.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/script-with-bom.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/script-with-bom.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/server.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/server.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_archive_util.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_archive_util.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_bdist_deprecations.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_bdist_deprecations.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_bdist_egg.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_bdist_egg.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_bdist_wheel.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_bdist_wheel.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_clib.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_clib.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_ext.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_ext.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_meta.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_meta.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_py.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_py.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_config_discovery.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_config_discovery.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_core_metadata.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_core_metadata.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_depends.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_depends.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_develop.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_develop.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_dist.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_dist.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_dist_info.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_dist_info.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_distutils_adoption.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_distutils_adoption.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_easy_install.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_easy_install.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_editable_install.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_editable_install.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_egg_info.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_egg_info.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_extern.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_extern.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_find_packages.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_find_packages.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_find_py_modules.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_find_py_modules.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_glob.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_glob.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_install_scripts.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_install_scripts.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_integration.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_integration.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_logging.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_logging.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_manifest.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_manifest.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_msvc14.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_msvc14.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_namespaces.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_namespaces.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_packageindex.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_packageindex.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_register.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_register.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_sandbox.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_sandbox.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_sdist.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_sdist.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_setopt.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_setopt.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_setuptools.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_setuptools.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_unicode_utils.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_unicode_utils.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_upload.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_upload.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_virtualenv.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_virtualenv.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_warnings.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_warnings.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_wheel.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_wheel.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_windows_wrappers.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_windows_wrappers.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/text.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/text.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/textwrap.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/__pycache__/textwrap.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/compat/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/compat/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/compat/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/compat/__pycache__/py39.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/compat/__pycache__/py39.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/compat/py39.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_apply_pyprojecttoml.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_apply_pyprojecttoml.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_expand.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_expand.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_pyprojecttoml.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_pyprojecttoml.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_pyprojecttoml_dynamic_deps.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_pyprojecttoml_dynamic_deps.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_setupcfg.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_setupcfg.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/downloads/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/downloads/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/downloads/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/downloads/__pycache__/preload.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/downloads/__pycache__/preload.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/downloads/preload.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/setupcfg_examples.txt +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/test_apply_pyprojecttoml.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/test_expand.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/test_pyprojecttoml.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/test_pyprojecttoml_dynamic_deps.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/config/test_setupcfg.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/contexts.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/environment.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/fixtures.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/indexes/test_links_priority/external.html +/usr/local/lib/python3.12/site-packages/setuptools/tests/indexes/test_links_priority/simple/foobar/index.html +/usr/local/lib/python3.12/site-packages/setuptools/tests/integration/__init__.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/integration/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/integration/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/integration/__pycache__/helpers.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/integration/__pycache__/helpers.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/integration/__pycache__/test_pip_install_sdist.cpython-312.opt-2.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/integration/__pycache__/test_pip_install_sdist.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/setuptools/tests/integration/helpers.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/integration/test_pip_install_sdist.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/mod_with_constant.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/namespaces.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/script-with-bom.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/server.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_archive_util.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_bdist_deprecations.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_bdist_egg.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_bdist_wheel.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_build.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_build_clib.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_build_ext.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_build_meta.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_build_py.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_config_discovery.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_core_metadata.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_depends.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_develop.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_dist.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_dist_info.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_distutils_adoption.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_easy_install.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_editable_install.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_egg_info.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_extern.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_find_packages.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_find_py_modules.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_glob.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_install_scripts.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_integration.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_logging.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_manifest.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_msvc14.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_namespaces.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_packageindex.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_register.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_sandbox.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_sdist.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_setopt.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_setuptools.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_unicode_utils.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_upload.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_virtualenv.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_warnings.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_wheel.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/test_windows_wrappers.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/text.py +/usr/local/lib/python3.12/site-packages/setuptools/tests/textwrap.py /usr/local/lib/python3.12/site-packages/setuptools/unicode_utils.py /usr/local/lib/python3.12/site-packages/setuptools/version.py /usr/local/lib/python3.12/site-packages/setuptools/warnings.py diff --git a/manifest/x86_64/p/py3_sphinxcontrib_applehelp.filelist b/manifest/x86_64/p/py3_sphinxcontrib_applehelp.filelist index 31a2b09e7..345f8e8aa 100644 --- a/manifest/x86_64/p/py3_sphinxcontrib_applehelp.filelist +++ b/manifest/x86_64/p/py3_sphinxcontrib_applehelp.filelist @@ -102,10 +102,10 @@ /usr/local/lib/python3.12/site-packages/sphinxcontrib/applehelp/locales/zh_CN/LC_MESSAGES/sphinxcontrib.applehelp.po /usr/local/lib/python3.12/site-packages/sphinxcontrib/applehelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.applehelp.mo /usr/local/lib/python3.12/site-packages/sphinxcontrib/applehelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.applehelp.po +/usr/local/lib/python3.12/site-packages/sphinxcontrib/applehelp/py.typed /usr/local/lib/python3.12/site-packages/sphinxcontrib/applehelp/templates/_access.html_t -/usr/local/lib/python3.12/site-packages/sphinxcontrib_applehelp-1.0.8.dist-info/INSTALLER -/usr/local/lib/python3.12/site-packages/sphinxcontrib_applehelp-1.0.8.dist-info/LICENSE -/usr/local/lib/python3.12/site-packages/sphinxcontrib_applehelp-1.0.8.dist-info/METADATA -/usr/local/lib/python3.12/site-packages/sphinxcontrib_applehelp-1.0.8.dist-info/RECORD -/usr/local/lib/python3.12/site-packages/sphinxcontrib_applehelp-1.0.8.dist-info/REQUESTED -/usr/local/lib/python3.12/site-packages/sphinxcontrib_applehelp-1.0.8.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/sphinxcontrib_applehelp-2.0.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/sphinxcontrib_applehelp-2.0.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/sphinxcontrib_applehelp-2.0.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/sphinxcontrib_applehelp-2.0.0.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/sphinxcontrib_applehelp-2.0.0.dist-info/WHEEL diff --git a/manifest/x86_64/p/py3_sphinxcontrib_devhelp.filelist b/manifest/x86_64/p/py3_sphinxcontrib_devhelp.filelist index a43abe000..a08953ef6 100644 --- a/manifest/x86_64/p/py3_sphinxcontrib_devhelp.filelist +++ b/manifest/x86_64/p/py3_sphinxcontrib_devhelp.filelist @@ -98,9 +98,8 @@ /usr/local/lib/python3.12/site-packages/sphinxcontrib/devhelp/locales/zh_CN/LC_MESSAGES/sphinxcontrib.devhelp.po /usr/local/lib/python3.12/site-packages/sphinxcontrib/devhelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.devhelp.mo /usr/local/lib/python3.12/site-packages/sphinxcontrib/devhelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.devhelp.po -/usr/local/lib/python3.12/site-packages/sphinxcontrib_devhelp-1.0.6.dist-info/INSTALLER -/usr/local/lib/python3.12/site-packages/sphinxcontrib_devhelp-1.0.6.dist-info/LICENSE -/usr/local/lib/python3.12/site-packages/sphinxcontrib_devhelp-1.0.6.dist-info/METADATA -/usr/local/lib/python3.12/site-packages/sphinxcontrib_devhelp-1.0.6.dist-info/RECORD -/usr/local/lib/python3.12/site-packages/sphinxcontrib_devhelp-1.0.6.dist-info/REQUESTED -/usr/local/lib/python3.12/site-packages/sphinxcontrib_devhelp-1.0.6.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/sphinxcontrib_devhelp-2.0.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/sphinxcontrib_devhelp-2.0.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/sphinxcontrib_devhelp-2.0.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/sphinxcontrib_devhelp-2.0.0.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/sphinxcontrib_devhelp-2.0.0.dist-info/WHEEL diff --git a/manifest/x86_64/p/py3_sphinxcontrib_htmlhelp.filelist b/manifest/x86_64/p/py3_sphinxcontrib_htmlhelp.filelist index 83ee7cc79..db5fa521f 100644 --- a/manifest/x86_64/p/py3_sphinxcontrib_htmlhelp.filelist +++ b/manifest/x86_64/p/py3_sphinxcontrib_htmlhelp.filelist @@ -110,12 +110,12 @@ /usr/local/lib/python3.12/site-packages/sphinxcontrib/htmlhelp/locales/zh_CN/LC_MESSAGES/sphinxcontrib.htmlhelp.po /usr/local/lib/python3.12/site-packages/sphinxcontrib/htmlhelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.htmlhelp.mo /usr/local/lib/python3.12/site-packages/sphinxcontrib/htmlhelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.htmlhelp.po +/usr/local/lib/python3.12/site-packages/sphinxcontrib/htmlhelp/py.typed /usr/local/lib/python3.12/site-packages/sphinxcontrib/htmlhelp/templates/project.hhc /usr/local/lib/python3.12/site-packages/sphinxcontrib/htmlhelp/templates/project.hhp /usr/local/lib/python3.12/site-packages/sphinxcontrib/htmlhelp/templates/project.stp -/usr/local/lib/python3.12/site-packages/sphinxcontrib_htmlhelp-2.0.5.dist-info/INSTALLER -/usr/local/lib/python3.12/site-packages/sphinxcontrib_htmlhelp-2.0.5.dist-info/LICENSE -/usr/local/lib/python3.12/site-packages/sphinxcontrib_htmlhelp-2.0.5.dist-info/METADATA -/usr/local/lib/python3.12/site-packages/sphinxcontrib_htmlhelp-2.0.5.dist-info/RECORD -/usr/local/lib/python3.12/site-packages/sphinxcontrib_htmlhelp-2.0.5.dist-info/REQUESTED -/usr/local/lib/python3.12/site-packages/sphinxcontrib_htmlhelp-2.0.5.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/sphinxcontrib_htmlhelp-2.1.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/sphinxcontrib_htmlhelp-2.1.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/sphinxcontrib_htmlhelp-2.1.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/sphinxcontrib_htmlhelp-2.1.0.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/sphinxcontrib_htmlhelp-2.1.0.dist-info/WHEEL diff --git a/manifest/x86_64/p/py3_sphinxcontrib_qthelp.filelist b/manifest/x86_64/p/py3_sphinxcontrib_qthelp.filelist index c5c58fe35..1fe0b26be 100644 --- a/manifest/x86_64/p/py3_sphinxcontrib_qthelp.filelist +++ b/manifest/x86_64/p/py3_sphinxcontrib_qthelp.filelist @@ -98,11 +98,11 @@ /usr/local/lib/python3.12/site-packages/sphinxcontrib/qthelp/locales/zh_CN/LC_MESSAGES/sphinxcontrib.qthelp.po /usr/local/lib/python3.12/site-packages/sphinxcontrib/qthelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.qthelp.mo /usr/local/lib/python3.12/site-packages/sphinxcontrib/qthelp/locales/zh_TW/LC_MESSAGES/sphinxcontrib.qthelp.po +/usr/local/lib/python3.12/site-packages/sphinxcontrib/qthelp/py.typed /usr/local/lib/python3.12/site-packages/sphinxcontrib/qthelp/templates/project.qhcp /usr/local/lib/python3.12/site-packages/sphinxcontrib/qthelp/templates/project.qhp -/usr/local/lib/python3.12/site-packages/sphinxcontrib_qthelp-1.0.7.dist-info/INSTALLER -/usr/local/lib/python3.12/site-packages/sphinxcontrib_qthelp-1.0.7.dist-info/LICENSE -/usr/local/lib/python3.12/site-packages/sphinxcontrib_qthelp-1.0.7.dist-info/METADATA -/usr/local/lib/python3.12/site-packages/sphinxcontrib_qthelp-1.0.7.dist-info/RECORD -/usr/local/lib/python3.12/site-packages/sphinxcontrib_qthelp-1.0.7.dist-info/REQUESTED -/usr/local/lib/python3.12/site-packages/sphinxcontrib_qthelp-1.0.7.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/sphinxcontrib_qthelp-2.0.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/sphinxcontrib_qthelp-2.0.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/sphinxcontrib_qthelp-2.0.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/sphinxcontrib_qthelp-2.0.0.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/sphinxcontrib_qthelp-2.0.0.dist-info/WHEEL diff --git a/manifest/x86_64/p/py3_sphinxcontrib_serializinghtml.filelist b/manifest/x86_64/p/py3_sphinxcontrib_serializinghtml.filelist index c0ab39876..ba177f1d2 100644 --- a/manifest/x86_64/p/py3_sphinxcontrib_serializinghtml.filelist +++ b/manifest/x86_64/p/py3_sphinxcontrib_serializinghtml.filelist @@ -112,9 +112,9 @@ /usr/local/lib/python3.12/site-packages/sphinxcontrib/serializinghtml/locales/zh_CN/LC_MESSAGES/sphinxcontrib.serializinghtml.po /usr/local/lib/python3.12/site-packages/sphinxcontrib/serializinghtml/locales/zh_TW/LC_MESSAGES/sphinxcontrib.serializinghtml.mo /usr/local/lib/python3.12/site-packages/sphinxcontrib/serializinghtml/locales/zh_TW/LC_MESSAGES/sphinxcontrib.serializinghtml.po -/usr/local/lib/python3.12/site-packages/sphinxcontrib_serializinghtml-1.1.10.dist-info/INSTALLER -/usr/local/lib/python3.12/site-packages/sphinxcontrib_serializinghtml-1.1.10.dist-info/LICENSE -/usr/local/lib/python3.12/site-packages/sphinxcontrib_serializinghtml-1.1.10.dist-info/METADATA -/usr/local/lib/python3.12/site-packages/sphinxcontrib_serializinghtml-1.1.10.dist-info/RECORD -/usr/local/lib/python3.12/site-packages/sphinxcontrib_serializinghtml-1.1.10.dist-info/REQUESTED -/usr/local/lib/python3.12/site-packages/sphinxcontrib_serializinghtml-1.1.10.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/sphinxcontrib/serializinghtml/py.typed +/usr/local/lib/python3.12/site-packages/sphinxcontrib_serializinghtml-2.0.0.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/sphinxcontrib_serializinghtml-2.0.0.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/sphinxcontrib_serializinghtml-2.0.0.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/sphinxcontrib_serializinghtml-2.0.0.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/sphinxcontrib_serializinghtml-2.0.0.dist-info/WHEEL diff --git a/manifest/x86_64/p/py3_virtualenv.filelist b/manifest/x86_64/p/py3_virtualenv.filelist index 4026abdc5..26710663d 100644 --- a/manifest/x86_64/p/py3_virtualenv.filelist +++ b/manifest/x86_64/p/py3_virtualenv.filelist @@ -1,11 +1,11 @@ /usr/local/bin/virtualenv -/usr/local/lib/python3.12/site-packages/virtualenv-20.25.0.dist-info/INSTALLER -/usr/local/lib/python3.12/site-packages/virtualenv-20.25.0.dist-info/METADATA -/usr/local/lib/python3.12/site-packages/virtualenv-20.25.0.dist-info/RECORD -/usr/local/lib/python3.12/site-packages/virtualenv-20.25.0.dist-info/REQUESTED -/usr/local/lib/python3.12/site-packages/virtualenv-20.25.0.dist-info/WHEEL -/usr/local/lib/python3.12/site-packages/virtualenv-20.25.0.dist-info/entry_points.txt -/usr/local/lib/python3.12/site-packages/virtualenv-20.25.0.dist-info/licenses/LICENSE +/usr/local/lib/python3.12/site-packages/virtualenv-20.26.3.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/virtualenv-20.26.3.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/virtualenv-20.26.3.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/virtualenv-20.26.3.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/virtualenv-20.26.3.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/virtualenv-20.26.3.dist-info/entry_points.txt +/usr/local/lib/python3.12/site-packages/virtualenv-20.26.3.dist-info/licenses/LICENSE /usr/local/lib/python3.12/site-packages/virtualenv/__init__.py /usr/local/lib/python3.12/site-packages/virtualenv/__main__.py /usr/local/lib/python3.12/site-packages/virtualenv/__pycache__/__init__.cpython-312.pyc @@ -175,10 +175,12 @@ /usr/local/lib/python3.12/site-packages/virtualenv/seed/wheels/bundle.py /usr/local/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/__init__.py /usr/local/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/pip-23.3.1-py3-none-any.whl +/usr/local/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/pip-24.0-py3-none-any.whl +/usr/local/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/pip-24.1-py3-none-any.whl /usr/local/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/setuptools-68.0.0-py3-none-any.whl -/usr/local/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/setuptools-69.0.2-py3-none-any.whl +/usr/local/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/setuptools-70.1.0-py3-none-any.whl /usr/local/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/wheel-0.42.0-py3-none-any.whl +/usr/local/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/wheel-0.43.0-py3-none-any.whl /usr/local/lib/python3.12/site-packages/virtualenv/seed/wheels/periodic_update.py /usr/local/lib/python3.12/site-packages/virtualenv/seed/wheels/util.py /usr/local/lib/python3.12/site-packages/virtualenv/util/__init__.py diff --git a/manifest/x86_64/p/python3.filelist b/manifest/x86_64/p/python3.filelist index 26323a5b7..5accae9bb 100644 --- a/manifest/x86_64/p/python3.filelist +++ b/manifest/x86_64/p/python3.filelist @@ -227,15 +227,15 @@ /usr/local/include/python3.12/unicodeobject.h /usr/local/include/python3.12/warnings.h /usr/local/include/python3.12/weakrefobject.h -/usr/local/lib/python3.12/site-packages/pip-24.0.dist-info/AUTHORS.txt -/usr/local/lib/python3.12/site-packages/pip-24.0.dist-info/INSTALLER -/usr/local/lib/python3.12/site-packages/pip-24.0.dist-info/LICENSE.txt -/usr/local/lib/python3.12/site-packages/pip-24.0.dist-info/METADATA -/usr/local/lib/python3.12/site-packages/pip-24.0.dist-info/RECORD -/usr/local/lib/python3.12/site-packages/pip-24.0.dist-info/REQUESTED -/usr/local/lib/python3.12/site-packages/pip-24.0.dist-info/WHEEL -/usr/local/lib/python3.12/site-packages/pip-24.0.dist-info/entry_points.txt -/usr/local/lib/python3.12/site-packages/pip-24.0.dist-info/top_level.txt +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/AUTHORS.txt +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/LICENSE.txt +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/entry_points.txt +/usr/local/lib/python3.12/site-packages/pip-24.2.dist-info/top_level.txt /usr/local/lib/python3.12/site-packages/pip/__init__.py /usr/local/lib/python3.12/site-packages/pip/__main__.py /usr/local/lib/python3.12/site-packages/pip/__pip-runner__.py @@ -260,6 +260,7 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc @@ -271,6 +272,7 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/cli/base_command.py /usr/local/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py /usr/local/lib/python3.12/site-packages/pip/_internal/cli/command_context.py +/usr/local/lib/python3.12/site-packages/pip/_internal/cli/index_command.py /usr/local/lib/python3.12/site-packages/pip/_internal/cli/main.py /usr/local/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py /usr/local/lib/python3.12/site-packages/pip/_internal/cli/parser.py @@ -488,8 +490,8 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/models.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/retry.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc @@ -514,8 +516,8 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/utils/hashes.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/logging.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/misc.py -/usr/local/lib/python3.12/site-packages/pip/_internal/utils/models.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/packaging.py +/usr/local/lib/python3.12/site-packages/pip/_internal/utils/retry.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/setuptools_build.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py /usr/local/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py @@ -538,7 +540,6 @@ /usr/local/lib/python3.12/site-packages/pip/_internal/wheel_builder.py /usr/local/lib/python3.12/site-packages/pip/_vendor/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/__pycache__/six.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc @@ -573,129 +574,6 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem /usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/core.py /usr/local/lib/python3.12/site-packages/pip/_vendor/certifi/py.typed -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachinedict.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/macromanprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/resultdict.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf1632prober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/big5freq.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/big5prober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/chardistribution.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/charsetgroupprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/charsetprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/cli/chardetect.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/codingstatemachine.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/codingstatemachinedict.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/cp949prober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/enums.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/escprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/escsm.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/eucjpprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/euckrfreq.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/euckrprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/euctwfreq.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/euctwprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/gb2312freq.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/gb2312prober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/hebrewprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/jisfreq.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/johabfreq.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/johabprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/jpcntx.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langbulgarianmodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langgreekmodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langhebrewmodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langhungarianmodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langrussianmodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langthaimodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/langturkishmodel.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/latin1prober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/macromanprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/mbcharsetprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/mbcsgroupprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/mbcssm.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/languages.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/py.typed -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/resultdict.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/sbcharsetprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/sbcsgroupprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/sjisprober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/universaldetector.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/utf1632prober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/utf8prober.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/chardet/version.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/ansi.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/ansitowin32.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/initialise.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/ansi_test.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/ansitowin32_test.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/initialise_test.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/isatty_test.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/utils.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/winterm_test.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/ansi_test.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/initialise_test.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/isatty_test.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/utils.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/tests/winterm_test.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/win32.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/colorama/winterm.py /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc @@ -760,23 +638,29 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py /usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py /usr/local/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__about__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/_elffile.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/_parser.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py +/usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/metadata.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/py.typed /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py /usr/local/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py @@ -869,32 +753,11 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/style.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/styles/_mapping.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/token.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/unistring.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pygments/util.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/actions.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/common.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/core.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/exceptions.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/helpers.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/results.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/testing.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/unicode.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/util.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/actions.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/common.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/core.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/diagram/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/exceptions.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/helpers.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/py.typed -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/results.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/testing.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/unicode.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/pyparsing/util.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-312.pyc @@ -1111,30 +974,6 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/themes.py /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/traceback.py /usr/local/lib/python3.12/site-packages/pip/_vendor/rich/tree.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/six.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/_asyncio.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/_utils.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/after.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/before.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/before_sleep.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/nap.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/py.typed -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/retry.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/stop.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/tornadoweb.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/tenacity/wait.py /usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/__init__.py /usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc @@ -1237,16 +1076,6 @@ /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/url.py /usr/local/lib/python3.12/site-packages/pip/_vendor/urllib3/util/wait.py /usr/local/lib/python3.12/site-packages/pip/_vendor/vendor.txt -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__init__.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-312.pyc -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/labels.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/mklabels.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/tests.py -/usr/local/lib/python3.12/site-packages/pip/_vendor/webencodings/x_user_defined.py /usr/local/lib/python3.12/site-packages/pip/py.typed /usr/local/lib64/libpython3.12.so /usr/local/lib64/libpython3.12.so.1.0 @@ -2673,7 +2502,7 @@ /usr/local/lib64/python3.12/ensurepip/__pycache__/_uninstall.cpython-312.opt-1.pyc /usr/local/lib64/python3.12/ensurepip/__pycache__/_uninstall.cpython-312.opt-2.pyc /usr/local/lib64/python3.12/ensurepip/__pycache__/_uninstall.cpython-312.pyc -/usr/local/lib64/python3.12/ensurepip/_bundled/pip-24.0-py3-none-any.whl +/usr/local/lib64/python3.12/ensurepip/_bundled/pip-24.2-py3-none-any.whl /usr/local/lib64/python3.12/ensurepip/_uninstall.py /usr/local/lib64/python3.12/enum.py /usr/local/lib64/python3.12/filecmp.py @@ -3457,9 +3286,9 @@ /usr/local/lib64/python3.12/lib-dynload/xxsubtype.cpython-312-x86_64-linux-gnu.so /usr/local/lib64/python3.12/lib-dynload/zlib.cpython-312-x86_64-linux-gnu.so /usr/local/lib64/python3.12/lib2to3/Grammar.txt -/usr/local/lib64/python3.12/lib2to3/Grammar3.12.4.final.0.pickle +/usr/local/lib64/python3.12/lib2to3/Grammar3.12.5.final.0.pickle /usr/local/lib64/python3.12/lib2to3/PatternGrammar.txt -/usr/local/lib64/python3.12/lib2to3/PatternGrammar3.12.4.final.0.pickle +/usr/local/lib64/python3.12/lib2to3/PatternGrammar3.12.5.final.0.pickle /usr/local/lib64/python3.12/lib2to3/__init__.py /usr/local/lib64/python3.12/lib2to3/__main__.py /usr/local/lib64/python3.12/lib2to3/__pycache__/__init__.cpython-312.opt-1.pyc @@ -4123,9 +3952,6 @@ /usr/local/lib64/python3.12/test/__pycache__/test_asdl_parser.cpython-312.opt-1.pyc /usr/local/lib64/python3.12/test/__pycache__/test_asdl_parser.cpython-312.opt-2.pyc /usr/local/lib64/python3.12/test/__pycache__/test_asdl_parser.cpython-312.pyc -/usr/local/lib64/python3.12/test/__pycache__/test_ast.cpython-312.opt-1.pyc -/usr/local/lib64/python3.12/test/__pycache__/test_ast.cpython-312.opt-2.pyc -/usr/local/lib64/python3.12/test/__pycache__/test_ast.cpython-312.pyc /usr/local/lib64/python3.12/test/__pycache__/test_asyncgen.cpython-312.opt-1.pyc /usr/local/lib64/python3.12/test/__pycache__/test_asyncgen.cpython-312.opt-2.pyc /usr/local/lib64/python3.12/test/__pycache__/test_asyncgen.cpython-312.pyc @@ -5919,7 +5745,22 @@ /usr/local/lib64/python3.12/test/test_argparse.py /usr/local/lib64/python3.12/test/test_array.py /usr/local/lib64/python3.12/test/test_asdl_parser.py -/usr/local/lib64/python3.12/test/test_ast.py +/usr/local/lib64/python3.12/test/test_ast/__init__.py +/usr/local/lib64/python3.12/test/test_ast/__pycache__/__init__.cpython-312.opt-1.pyc +/usr/local/lib64/python3.12/test/test_ast/__pycache__/__init__.cpython-312.opt-2.pyc +/usr/local/lib64/python3.12/test/test_ast/__pycache__/__init__.cpython-312.pyc +/usr/local/lib64/python3.12/test/test_ast/__pycache__/snippets.cpython-312.opt-1.pyc +/usr/local/lib64/python3.12/test/test_ast/__pycache__/snippets.cpython-312.opt-2.pyc +/usr/local/lib64/python3.12/test/test_ast/__pycache__/snippets.cpython-312.pyc +/usr/local/lib64/python3.12/test/test_ast/__pycache__/test_ast.cpython-312.opt-1.pyc +/usr/local/lib64/python3.12/test/test_ast/__pycache__/test_ast.cpython-312.opt-2.pyc +/usr/local/lib64/python3.12/test/test_ast/__pycache__/test_ast.cpython-312.pyc +/usr/local/lib64/python3.12/test/test_ast/__pycache__/utils.cpython-312.opt-1.pyc +/usr/local/lib64/python3.12/test/test_ast/__pycache__/utils.cpython-312.opt-2.pyc +/usr/local/lib64/python3.12/test/test_ast/__pycache__/utils.cpython-312.pyc +/usr/local/lib64/python3.12/test/test_ast/snippets.py +/usr/local/lib64/python3.12/test/test_ast/test_ast.py +/usr/local/lib64/python3.12/test/test_ast/utils.py /usr/local/lib64/python3.12/test/test_asyncgen.py /usr/local/lib64/python3.12/test/test_asyncio/__init__.py /usr/local/lib64/python3.12/test/test_asyncio/__main__.py @@ -7382,6 +7223,9 @@ /usr/local/lib64/python3.12/test/test_inspect/__pycache__/inspect_stringized_annotations_2.cpython-312.opt-1.pyc /usr/local/lib64/python3.12/test/test_inspect/__pycache__/inspect_stringized_annotations_2.cpython-312.opt-2.pyc /usr/local/lib64/python3.12/test/test_inspect/__pycache__/inspect_stringized_annotations_2.cpython-312.pyc +/usr/local/lib64/python3.12/test/test_inspect/__pycache__/inspect_stringized_annotations_pep695.cpython-312.opt-1.pyc +/usr/local/lib64/python3.12/test/test_inspect/__pycache__/inspect_stringized_annotations_pep695.cpython-312.opt-2.pyc +/usr/local/lib64/python3.12/test/test_inspect/__pycache__/inspect_stringized_annotations_pep695.cpython-312.pyc /usr/local/lib64/python3.12/test/test_inspect/__pycache__/test_inspect.cpython-312.opt-1.pyc /usr/local/lib64/python3.12/test/test_inspect/__pycache__/test_inspect.cpython-312.opt-2.pyc /usr/local/lib64/python3.12/test/test_inspect/__pycache__/test_inspect.cpython-312.pyc @@ -7390,6 +7234,7 @@ /usr/local/lib64/python3.12/test/test_inspect/inspect_stock_annotations.py /usr/local/lib64/python3.12/test/test_inspect/inspect_stringized_annotations.py /usr/local/lib64/python3.12/test/test_inspect/inspect_stringized_annotations_2.py +/usr/local/lib64/python3.12/test/test_inspect/inspect_stringized_annotations_pep695.py /usr/local/lib64/python3.12/test/test_inspect/test_inspect.py /usr/local/lib64/python3.12/test/test_int.py /usr/local/lib64/python3.12/test/test_int_literal.py @@ -8158,6 +8003,9 @@ /usr/local/lib64/python3.12/test/test_unittest/__pycache__/test_suite.cpython-312.opt-1.pyc /usr/local/lib64/python3.12/test/test_unittest/__pycache__/test_suite.cpython-312.opt-2.pyc /usr/local/lib64/python3.12/test/test_unittest/__pycache__/test_suite.cpython-312.pyc +/usr/local/lib64/python3.12/test/test_unittest/__pycache__/test_util.cpython-312.opt-1.pyc +/usr/local/lib64/python3.12/test/test_unittest/__pycache__/test_util.cpython-312.opt-2.pyc +/usr/local/lib64/python3.12/test/test_unittest/__pycache__/test_util.cpython-312.pyc /usr/local/lib64/python3.12/test/test_unittest/_test_warnings.py /usr/local/lib64/python3.12/test/test_unittest/dummy.py /usr/local/lib64/python3.12/test/test_unittest/support.py @@ -8174,6 +8022,7 @@ /usr/local/lib64/python3.12/test/test_unittest/test_setups.py /usr/local/lib64/python3.12/test/test_unittest/test_skipping.py /usr/local/lib64/python3.12/test/test_unittest/test_suite.py +/usr/local/lib64/python3.12/test/test_unittest/test_util.py /usr/local/lib64/python3.12/test/test_unittest/testmock/__init__.py /usr/local/lib64/python3.12/test/test_unittest/testmock/__main__.py /usr/local/lib64/python3.12/test/test_unittest/testmock/__pycache__/__init__.cpython-312.opt-1.pyc diff --git a/manifest/x86_64/r/r.filelist b/manifest/x86_64/r/r.filelist index ae9359886..ffea61b19 100644 --- a/manifest/x86_64/r/r.filelist +++ b/manifest/x86_64/r/r.filelist @@ -48,6 +48,7 @@ /usr/local/lib64/R/doc/html/NEWS.2.html /usr/local/lib64/R/doc/html/NEWS.3.html /usr/local/lib64/R/doc/html/NEWS.html +/usr/local/lib64/R/doc/html/R-nav.css /usr/local/lib64/R/doc/html/R.css /usr/local/lib64/R/doc/html/Rlogo.pdf /usr/local/lib64/R/doc/html/Rlogo.svg @@ -125,6 +126,7 @@ /usr/local/lib64/R/doc/html/left.jpg /usr/local/lib64/R/doc/html/logo.jpg /usr/local/lib64/R/doc/html/mathjax-config.js +/usr/local/lib64/R/doc/html/orcid.svg /usr/local/lib64/R/doc/html/packages-head-utf8.html /usr/local/lib64/R/doc/html/packages.html /usr/local/lib64/R/doc/html/prism.css @@ -301,11 +303,31 @@ /usr/local/lib64/R/library/Matrix/doc/Introduction.R /usr/local/lib64/R/library/Matrix/doc/Introduction.Rnw /usr/local/lib64/R/library/Matrix/doc/Introduction.pdf -/usr/local/lib64/R/library/Matrix/doc/SuiteSparse/AMD.txt -/usr/local/lib64/R/library/Matrix/doc/SuiteSparse/CHOLMOD.txt -/usr/local/lib64/R/library/Matrix/doc/SuiteSparse/COLAMD.txt -/usr/local/lib64/R/library/Matrix/doc/SuiteSparse/SPQR.txt -/usr/local/lib64/R/library/Matrix/doc/SuiteSparse/SuiteSparse_config.txt +/usr/local/lib64/R/library/Matrix/doc/SuiteSparse/AMD/Doc/ChangeLog +/usr/local/lib64/R/library/Matrix/doc/SuiteSparse/AMD/Doc/License.txt +/usr/local/lib64/R/library/Matrix/doc/SuiteSparse/AMD/README.txt +/usr/local/lib64/R/library/Matrix/doc/SuiteSparse/CAMD/Doc/ChangeLog +/usr/local/lib64/R/library/Matrix/doc/SuiteSparse/CAMD/Doc/License.txt +/usr/local/lib64/R/library/Matrix/doc/SuiteSparse/CAMD/README.txt +/usr/local/lib64/R/library/Matrix/doc/SuiteSparse/CCOLAMD/Doc/ChangeLog +/usr/local/lib64/R/library/Matrix/doc/SuiteSparse/CCOLAMD/Doc/License.txt +/usr/local/lib64/R/library/Matrix/doc/SuiteSparse/CCOLAMD/README.txt +/usr/local/lib64/R/library/Matrix/doc/SuiteSparse/CHOLMOD/Doc/ChangeLog +/usr/local/lib64/R/library/Matrix/doc/SuiteSparse/CHOLMOD/Doc/License.txt +/usr/local/lib64/R/library/Matrix/doc/SuiteSparse/CHOLMOD/README.txt +/usr/local/lib64/R/library/Matrix/doc/SuiteSparse/CHOLMOD/SuiteSparse_metis/Changelog +/usr/local/lib64/R/library/Matrix/doc/SuiteSparse/CHOLMOD/SuiteSparse_metis/LICENSE.txt +/usr/local/lib64/R/library/Matrix/doc/SuiteSparse/CHOLMOD/SuiteSparse_metis/README.txt +/usr/local/lib64/R/library/Matrix/doc/SuiteSparse/COLAMD/Doc/ChangeLog +/usr/local/lib64/R/library/Matrix/doc/SuiteSparse/COLAMD/Doc/License.txt +/usr/local/lib64/R/library/Matrix/doc/SuiteSparse/COLAMD/README.txt +/usr/local/lib64/R/library/Matrix/doc/SuiteSparse/CXSparse/Doc/ChangeLog +/usr/local/lib64/R/library/Matrix/doc/SuiteSparse/CXSparse/Doc/License.txt +/usr/local/lib64/R/library/Matrix/doc/SuiteSparse/CXSparse/README.txt +/usr/local/lib64/R/library/Matrix/doc/SuiteSparse/ChangeLog +/usr/local/lib64/R/library/Matrix/doc/SuiteSparse/LICENSE.txt +/usr/local/lib64/R/library/Matrix/doc/SuiteSparse/README.md +/usr/local/lib64/R/library/Matrix/doc/SuiteSparse/SuiteSparse_config/README.txt /usr/local/lib64/R/library/Matrix/doc/index.html /usr/local/lib64/R/library/Matrix/doc/sparseModels.R /usr/local/lib64/R/library/Matrix/doc/sparseModels.Rnw @@ -328,10 +350,18 @@ /usr/local/lib64/R/library/Matrix/help/Matrix.rdb /usr/local/lib64/R/library/Matrix/help/Matrix.rdx /usr/local/lib64/R/library/Matrix/help/aliases.rds +/usr/local/lib64/R/library/Matrix/help/macros/local.Rd /usr/local/lib64/R/library/Matrix/help/paths.rds /usr/local/lib64/R/library/Matrix/html/00Index.html /usr/local/lib64/R/library/Matrix/html/R.css /usr/local/lib64/R/library/Matrix/include/Matrix.h +/usr/local/lib64/R/library/Matrix/include/Matrix/Matrix.h +/usr/local/lib64/R/library/Matrix/include/Matrix/alloca.h +/usr/local/lib64/R/library/Matrix/include/Matrix/cholmod-utils.h +/usr/local/lib64/R/library/Matrix/include/Matrix/cholmod.h +/usr/local/lib64/R/library/Matrix/include/Matrix/remap.h +/usr/local/lib64/R/library/Matrix/include/Matrix/stubs.c +/usr/local/lib64/R/library/Matrix/include/Matrix/version.h /usr/local/lib64/R/library/Matrix/include/Matrix_stubs.c /usr/local/lib64/R/library/Matrix/include/cholmod.h /usr/local/lib64/R/library/Matrix/libs/Matrix.so @@ -349,6 +379,20 @@ /usr/local/lib64/R/library/Matrix/po/lt/LC_MESSAGES/R-Matrix.mo /usr/local/lib64/R/library/Matrix/po/pl/LC_MESSAGES/Matrix.mo /usr/local/lib64/R/library/Matrix/po/pl/LC_MESSAGES/R-Matrix.mo +/usr/local/lib64/R/library/Matrix/scripts/AMD.patch +/usr/local/lib64/R/library/Matrix/scripts/CAMD.patch +/usr/local/lib64/R/library/Matrix/scripts/CCOLAMD.patch +/usr/local/lib64/R/library/Matrix/scripts/CHOLMOD.patch +/usr/local/lib64/R/library/Matrix/scripts/COLAMD.patch +/usr/local/lib64/R/library/Matrix/scripts/CXSparse.patch +/usr/local/lib64/R/library/Matrix/scripts/SuiteSparse_config.patch +/usr/local/lib64/R/library/Matrix/scripts/api.patch +/usr/local/lib64/R/library/Matrix/scripts/disclaimer.txt +/usr/local/lib64/R/library/Matrix/scripts/rules.mk +/usr/local/lib64/R/library/Matrix/scripts/rules.sh +/usr/local/lib64/R/library/Matrix/scripts/sources.mk +/usr/local/lib64/R/library/Matrix/scripts/ssget.sh +/usr/local/lib64/R/library/Matrix/scripts/wall.patch /usr/local/lib64/R/library/Matrix/test-tools-1.R /usr/local/lib64/R/library/Matrix/test-tools-Matrix.R /usr/local/lib64/R/library/Matrix/test-tools.R @@ -601,8 +645,24 @@ /usr/local/lib64/R/library/grDevices/afm/Helvetica-BoldOblique.afm.gz /usr/local/lib64/R/library/grDevices/afm/Helvetica-Oblique.afm.gz /usr/local/lib64/R/library/grDevices/afm/Helvetica.afm.gz +/usr/local/lib64/R/library/grDevices/afm/LICENSE.LPPL /usr/local/lib64/R/library/grDevices/afm/MustRead.html +/usr/local/lib64/R/library/grDevices/afm/NimbusMonoPS-Bold.afm.gz +/usr/local/lib64/R/library/grDevices/afm/NimbusMonoPS-BoldItalic.afm.gz +/usr/local/lib64/R/library/grDevices/afm/NimbusMonoPS-Italic.afm.gz +/usr/local/lib64/R/library/grDevices/afm/NimbusMonoPS-Regular.afm.gz +/usr/local/lib64/R/library/grDevices/afm/NimbusRoman-Bold.afm.gz +/usr/local/lib64/R/library/grDevices/afm/NimbusRoman-BoldItalic.afm.gz +/usr/local/lib64/R/library/grDevices/afm/NimbusRoman-Italic.afm.gz +/usr/local/lib64/R/library/grDevices/afm/NimbusRoman-Regular.afm.gz +/usr/local/lib64/R/library/grDevices/afm/NimbusSans-Bold.afm.gz +/usr/local/lib64/R/library/grDevices/afm/NimbusSans-BoldItalic.afm.gz +/usr/local/lib64/R/library/grDevices/afm/NimbusSans-BoldOblique.afm.gz +/usr/local/lib64/R/library/grDevices/afm/NimbusSans-Italic.afm.gz +/usr/local/lib64/R/library/grDevices/afm/NimbusSans-Oblique.afm.gz +/usr/local/lib64/R/library/grDevices/afm/NimbusSans-Regular.afm.gz /usr/local/lib64/R/library/grDevices/afm/README +/usr/local/lib64/R/library/grDevices/afm/StandardSymbolsPS.afm.gz /usr/local/lib64/R/library/grDevices/afm/Symbol.afm.gz /usr/local/lib64/R/library/grDevices/afm/Times-Bold.afm.gz /usr/local/lib64/R/library/grDevices/afm/Times-BoldItalic.afm.gz @@ -693,7 +753,6 @@ /usr/local/lib64/R/library/grDevices/enc/ISOLatin9.enc /usr/local/lib64/R/library/grDevices/enc/KOI8-R.enc /usr/local/lib64/R/library/grDevices/enc/KOI8-U.enc -/usr/local/lib64/R/library/grDevices/enc/MacRoman.enc /usr/local/lib64/R/library/grDevices/enc/PDFDoc.enc /usr/local/lib64/R/library/grDevices/enc/TeXtext.enc /usr/local/lib64/R/library/grDevices/enc/WinAnsi.enc @@ -873,8 +932,6 @@ /usr/local/lib64/R/library/mgcv/po/en@quot/LC_MESSAGES/mgcv.mo /usr/local/lib64/R/library/mgcv/po/fr/LC_MESSAGES/R-mgcv.mo /usr/local/lib64/R/library/mgcv/po/fr/LC_MESSAGES/mgcv.mo -/usr/local/lib64/R/library/mgcv/po/it/LC_MESSAGES/R-mgcv.mo -/usr/local/lib64/R/library/mgcv/po/it/LC_MESSAGES/mgcv.mo /usr/local/lib64/R/library/mgcv/po/ko/LC_MESSAGES/R-mgcv.mo /usr/local/lib64/R/library/mgcv/po/ko/LC_MESSAGES/mgcv.mo /usr/local/lib64/R/library/mgcv/po/pl/LC_MESSAGES/R-mgcv.mo @@ -1154,7 +1211,6 @@ /usr/local/lib64/R/library/survival/Meta/vignette.rds /usr/local/lib64/R/library/survival/NAMESPACE /usr/local/lib64/R/library/survival/NEWS.Rd -/usr/local/lib64/R/library/survival/NEWS.Rd.orig /usr/local/lib64/R/library/survival/R/survival /usr/local/lib64/R/library/survival/R/survival.rdb /usr/local/lib64/R/library/survival/R/survival.rdx @@ -1173,13 +1229,13 @@ /usr/local/lib64/R/library/survival/doc/concordance.R /usr/local/lib64/R/library/survival/doc/concordance.Rnw /usr/local/lib64/R/library/survival/doc/concordance.pdf -/usr/local/lib64/R/library/survival/doc/discrim.R -/usr/local/lib64/R/library/survival/doc/discrim.Rnw -/usr/local/lib64/R/library/survival/doc/discrim.pdf /usr/local/lib64/R/library/survival/doc/index.html /usr/local/lib64/R/library/survival/doc/matrix.R /usr/local/lib64/R/library/survival/doc/matrix.Rnw /usr/local/lib64/R/library/survival/doc/matrix.pdf +/usr/local/lib64/R/library/survival/doc/methods.R +/usr/local/lib64/R/library/survival/doc/methods.Rnw +/usr/local/lib64/R/library/survival/doc/methods.pdf /usr/local/lib64/R/library/survival/doc/multi.Rnw /usr/local/lib64/R/library/survival/doc/multi.pdf /usr/local/lib64/R/library/survival/doc/other.Rnw @@ -1274,6 +1330,54 @@ /usr/local/lib64/R/library/tools/html/R.css /usr/local/lib64/R/library/tools/libs/tools.so /usr/local/lib64/R/library/translations/DESCRIPTION +/usr/local/lib64/R/library/translations/ar/LC_MESSAGES/R-base.mo +/usr/local/lib64/R/library/translations/ar/LC_MESSAGES/R-methods.mo +/usr/local/lib64/R/library/translations/ar/LC_MESSAGES/R-parallel.mo +/usr/local/lib64/R/library/translations/ar/LC_MESSAGES/R-splines.mo +/usr/local/lib64/R/library/translations/ar/LC_MESSAGES/R-stats.mo +/usr/local/lib64/R/library/translations/ar/LC_MESSAGES/R-stats4.mo +/usr/local/lib64/R/library/translations/ar/LC_MESSAGES/R-tcltk.mo +/usr/local/lib64/R/library/translations/ar/LC_MESSAGES/R-tools.mo +/usr/local/lib64/R/library/translations/ar/LC_MESSAGES/R-utils.mo +/usr/local/lib64/R/library/translations/ar/LC_MESSAGES/R.mo +/usr/local/lib64/R/library/translations/ar/LC_MESSAGES/RGui.mo +/usr/local/lib64/R/library/translations/ar/LC_MESSAGES/grDevices.mo +/usr/local/lib64/R/library/translations/ar/LC_MESSAGES/graphics.mo +/usr/local/lib64/R/library/translations/ar/LC_MESSAGES/methods.mo +/usr/local/lib64/R/library/translations/ar/LC_MESSAGES/parallel.mo +/usr/local/lib64/R/library/translations/ar/LC_MESSAGES/splines.mo +/usr/local/lib64/R/library/translations/ar/LC_MESSAGES/stats.mo +/usr/local/lib64/R/library/translations/ar/LC_MESSAGES/tcltk.mo +/usr/local/lib64/R/library/translations/ar/LC_MESSAGES/tools.mo +/usr/local/lib64/R/library/translations/ar/LC_MESSAGES/utils.mo +/usr/local/lib64/R/library/translations/bn/LC_MESSAGES/R-base.mo +/usr/local/lib64/R/library/translations/bn/LC_MESSAGES/RGui.mo +/usr/local/lib64/R/library/translations/bn/LC_MESSAGES/tcltk.mo +/usr/local/lib64/R/library/translations/ca/LC_MESSAGES/R-base.mo +/usr/local/lib64/R/library/translations/ca/LC_MESSAGES/R-compiler.mo +/usr/local/lib64/R/library/translations/ca/LC_MESSAGES/R-grDevices.mo +/usr/local/lib64/R/library/translations/ca/LC_MESSAGES/R-graphics.mo +/usr/local/lib64/R/library/translations/ca/LC_MESSAGES/R-grid.mo +/usr/local/lib64/R/library/translations/ca/LC_MESSAGES/R-methods.mo +/usr/local/lib64/R/library/translations/ca/LC_MESSAGES/R-parallel.mo +/usr/local/lib64/R/library/translations/ca/LC_MESSAGES/R-splines.mo +/usr/local/lib64/R/library/translations/ca/LC_MESSAGES/R-stats.mo +/usr/local/lib64/R/library/translations/ca/LC_MESSAGES/R-stats4.mo +/usr/local/lib64/R/library/translations/ca/LC_MESSAGES/R-tcltk.mo +/usr/local/lib64/R/library/translations/ca/LC_MESSAGES/R-tools.mo +/usr/local/lib64/R/library/translations/ca/LC_MESSAGES/R-utils.mo +/usr/local/lib64/R/library/translations/ca/LC_MESSAGES/R.mo +/usr/local/lib64/R/library/translations/ca/LC_MESSAGES/RGui.mo +/usr/local/lib64/R/library/translations/ca/LC_MESSAGES/grDevices.mo +/usr/local/lib64/R/library/translations/ca/LC_MESSAGES/graphics.mo +/usr/local/lib64/R/library/translations/ca/LC_MESSAGES/grid.mo +/usr/local/lib64/R/library/translations/ca/LC_MESSAGES/methods.mo +/usr/local/lib64/R/library/translations/ca/LC_MESSAGES/parallel.mo +/usr/local/lib64/R/library/translations/ca/LC_MESSAGES/splines.mo +/usr/local/lib64/R/library/translations/ca/LC_MESSAGES/stats.mo +/usr/local/lib64/R/library/translations/ca/LC_MESSAGES/tcltk.mo +/usr/local/lib64/R/library/translations/ca/LC_MESSAGES/tools.mo +/usr/local/lib64/R/library/translations/ca/LC_MESSAGES/utils.mo /usr/local/lib64/R/library/translations/da/LC_MESSAGES/R-base.mo /usr/local/lib64/R/library/translations/da/LC_MESSAGES/R-compiler.mo /usr/local/lib64/R/library/translations/da/LC_MESSAGES/R-grDevices.mo @@ -1348,12 +1452,50 @@ /usr/local/lib64/R/library/translations/en@quot/LC_MESSAGES/tcltk.mo /usr/local/lib64/R/library/translations/en@quot/LC_MESSAGES/tools.mo /usr/local/lib64/R/library/translations/en@quot/LC_MESSAGES/utils.mo +/usr/local/lib64/R/library/translations/en_GB/LC_MESSAGES/R-base.mo +/usr/local/lib64/R/library/translations/en_GB/LC_MESSAGES/R-compiler.mo /usr/local/lib64/R/library/translations/en_GB/LC_MESSAGES/R-grDevices.mo +/usr/local/lib64/R/library/translations/en_GB/LC_MESSAGES/R-graphics.mo +/usr/local/lib64/R/library/translations/en_GB/LC_MESSAGES/R-grid.mo +/usr/local/lib64/R/library/translations/en_GB/LC_MESSAGES/R-methods.mo +/usr/local/lib64/R/library/translations/en_GB/LC_MESSAGES/R-parallel.mo +/usr/local/lib64/R/library/translations/en_GB/LC_MESSAGES/R-splines.mo +/usr/local/lib64/R/library/translations/en_GB/LC_MESSAGES/R-stats.mo +/usr/local/lib64/R/library/translations/en_GB/LC_MESSAGES/R-stats4.mo +/usr/local/lib64/R/library/translations/en_GB/LC_MESSAGES/R-tcltk.mo +/usr/local/lib64/R/library/translations/en_GB/LC_MESSAGES/R-tools.mo +/usr/local/lib64/R/library/translations/en_GB/LC_MESSAGES/R-utils.mo /usr/local/lib64/R/library/translations/en_GB/LC_MESSAGES/R.mo +/usr/local/lib64/R/library/translations/en_GB/LC_MESSAGES/RGui.mo /usr/local/lib64/R/library/translations/en_GB/LC_MESSAGES/grDevices.mo +/usr/local/lib64/R/library/translations/en_GB/LC_MESSAGES/graphics.mo +/usr/local/lib64/R/library/translations/en_GB/LC_MESSAGES/grid.mo +/usr/local/lib64/R/library/translations/en_GB/LC_MESSAGES/methods.mo +/usr/local/lib64/R/library/translations/en_GB/LC_MESSAGES/parallel.mo +/usr/local/lib64/R/library/translations/en_GB/LC_MESSAGES/splines.mo +/usr/local/lib64/R/library/translations/en_GB/LC_MESSAGES/stats.mo +/usr/local/lib64/R/library/translations/en_GB/LC_MESSAGES/tcltk.mo +/usr/local/lib64/R/library/translations/en_GB/LC_MESSAGES/tools.mo +/usr/local/lib64/R/library/translations/en_GB/LC_MESSAGES/utils.mo +/usr/local/lib64/R/library/translations/es/LC_MESSAGES/R-base.mo +/usr/local/lib64/R/library/translations/es/LC_MESSAGES/R-grDevices.mo +/usr/local/lib64/R/library/translations/es/LC_MESSAGES/R-graphics.mo +/usr/local/lib64/R/library/translations/es/LC_MESSAGES/R-grid.mo +/usr/local/lib64/R/library/translations/es/LC_MESSAGES/R-methods.mo +/usr/local/lib64/R/library/translations/es/LC_MESSAGES/R-parallel.mo +/usr/local/lib64/R/library/translations/es/LC_MESSAGES/R-stats.mo +/usr/local/lib64/R/library/translations/es/LC_MESSAGES/R-stats4.mo +/usr/local/lib64/R/library/translations/es/LC_MESSAGES/R-tools.mo +/usr/local/lib64/R/library/translations/es/LC_MESSAGES/R-utils.mo /usr/local/lib64/R/library/translations/es/LC_MESSAGES/R.mo /usr/local/lib64/R/library/translations/es/LC_MESSAGES/RGui.mo +/usr/local/lib64/R/library/translations/es/LC_MESSAGES/grDevices.mo /usr/local/lib64/R/library/translations/es/LC_MESSAGES/graphics.mo +/usr/local/lib64/R/library/translations/es/LC_MESSAGES/parallel.mo +/usr/local/lib64/R/library/translations/es/LC_MESSAGES/stats.mo +/usr/local/lib64/R/library/translations/es/LC_MESSAGES/tcltk.mo +/usr/local/lib64/R/library/translations/es/LC_MESSAGES/tools.mo +/usr/local/lib64/R/library/translations/es/LC_MESSAGES/utils.mo /usr/local/lib64/R/library/translations/fa/LC_MESSAGES/R-base.mo /usr/local/lib64/R/library/translations/fa/LC_MESSAGES/R-utils.mo /usr/local/lib64/R/library/translations/fa/LC_MESSAGES/R.mo @@ -1383,6 +1525,40 @@ /usr/local/lib64/R/library/translations/fr/LC_MESSAGES/tcltk.mo /usr/local/lib64/R/library/translations/fr/LC_MESSAGES/tools.mo /usr/local/lib64/R/library/translations/fr/LC_MESSAGES/utils.mo +/usr/local/lib64/R/library/translations/hi/LC_MESSAGES/R-base.mo +/usr/local/lib64/R/library/translations/hi/LC_MESSAGES/R-grDevices.mo +/usr/local/lib64/R/library/translations/hi/LC_MESSAGES/R-graphics.mo +/usr/local/lib64/R/library/translations/hi/LC_MESSAGES/R-parallel.mo +/usr/local/lib64/R/library/translations/hi/LC_MESSAGES/R-stats.mo +/usr/local/lib64/R/library/translations/hi/LC_MESSAGES/R-tools.mo +/usr/local/lib64/R/library/translations/hi/LC_MESSAGES/R-utils.mo +/usr/local/lib64/R/library/translations/hi/LC_MESSAGES/R.mo +/usr/local/lib64/R/library/translations/hi/LC_MESSAGES/RGui.mo +/usr/local/lib64/R/library/translations/hi/LC_MESSAGES/grDevices.mo +/usr/local/lib64/R/library/translations/hi/LC_MESSAGES/graphics.mo +/usr/local/lib64/R/library/translations/hi/LC_MESSAGES/parallel.mo +/usr/local/lib64/R/library/translations/hi/LC_MESSAGES/stats.mo +/usr/local/lib64/R/library/translations/hi/LC_MESSAGES/tools.mo +/usr/local/lib64/R/library/translations/hi/LC_MESSAGES/utils.mo +/usr/local/lib64/R/library/translations/hu/LC_MESSAGES/R-base.mo +/usr/local/lib64/R/library/translations/hu/LC_MESSAGES/R-graphics.mo +/usr/local/lib64/R/library/translations/hu/LC_MESSAGES/R-parallel.mo +/usr/local/lib64/R/library/translations/hu/LC_MESSAGES/R-splines.mo +/usr/local/lib64/R/library/translations/hu/LC_MESSAGES/R-stats.mo +/usr/local/lib64/R/library/translations/hu/LC_MESSAGES/R-tcltk.mo +/usr/local/lib64/R/library/translations/hu/LC_MESSAGES/R-tools.mo +/usr/local/lib64/R/library/translations/hu/LC_MESSAGES/R-utils.mo +/usr/local/lib64/R/library/translations/hu/LC_MESSAGES/R.mo +/usr/local/lib64/R/library/translations/hu/LC_MESSAGES/RGui.mo +/usr/local/lib64/R/library/translations/hu/LC_MESSAGES/grDevices.mo +/usr/local/lib64/R/library/translations/hu/LC_MESSAGES/graphics.mo +/usr/local/lib64/R/library/translations/hu/LC_MESSAGES/grid.mo +/usr/local/lib64/R/library/translations/hu/LC_MESSAGES/parallel.mo +/usr/local/lib64/R/library/translations/hu/LC_MESSAGES/stats.mo +/usr/local/lib64/R/library/translations/hu/LC_MESSAGES/tcltk.mo +/usr/local/lib64/R/library/translations/hu/LC_MESSAGES/tools.mo +/usr/local/lib64/R/library/translations/hu/LC_MESSAGES/utils.mo +/usr/local/lib64/R/library/translations/id/LC_MESSAGES/R-base.mo /usr/local/lib64/R/library/translations/it/LC_MESSAGES/R-base.mo /usr/local/lib64/R/library/translations/it/LC_MESSAGES/R-compiler.mo /usr/local/lib64/R/library/translations/it/LC_MESSAGES/R-grDevices.mo @@ -1414,6 +1590,7 @@ /usr/local/lib64/R/library/translations/ja/LC_MESSAGES/R-graphics.mo /usr/local/lib64/R/library/translations/ja/LC_MESSAGES/R-grid.mo /usr/local/lib64/R/library/translations/ja/LC_MESSAGES/R-methods.mo +/usr/local/lib64/R/library/translations/ja/LC_MESSAGES/R-parallel.mo /usr/local/lib64/R/library/translations/ja/LC_MESSAGES/R-splines.mo /usr/local/lib64/R/library/translations/ja/LC_MESSAGES/R-stats.mo /usr/local/lib64/R/library/translations/ja/LC_MESSAGES/R-stats4.mo @@ -1426,6 +1603,7 @@ /usr/local/lib64/R/library/translations/ja/LC_MESSAGES/graphics.mo /usr/local/lib64/R/library/translations/ja/LC_MESSAGES/grid.mo /usr/local/lib64/R/library/translations/ja/LC_MESSAGES/methods.mo +/usr/local/lib64/R/library/translations/ja/LC_MESSAGES/parallel.mo /usr/local/lib64/R/library/translations/ja/LC_MESSAGES/splines.mo /usr/local/lib64/R/library/translations/ja/LC_MESSAGES/stats.mo /usr/local/lib64/R/library/translations/ja/LC_MESSAGES/tcltk.mo @@ -1480,6 +1658,9 @@ /usr/local/lib64/R/library/translations/lt/LC_MESSAGES/tcltk.mo /usr/local/lib64/R/library/translations/lt/LC_MESSAGES/tools.mo /usr/local/lib64/R/library/translations/lt/LC_MESSAGES/utils.mo +/usr/local/lib64/R/library/translations/ne/LC_MESSAGES/R-compiler.mo +/usr/local/lib64/R/library/translations/ne/LC_MESSAGES/R.mo +/usr/local/lib64/R/library/translations/ne/LC_MESSAGES/RGui.mo /usr/local/lib64/R/library/translations/nn/LC_MESSAGES/R-base.mo /usr/local/lib64/R/library/translations/nn/LC_MESSAGES/R.mo /usr/local/lib64/R/library/translations/nn/LC_MESSAGES/RGui.mo @@ -1515,6 +1696,7 @@ /usr/local/lib64/R/library/translations/pt_BR/LC_MESSAGES/R-graphics.mo /usr/local/lib64/R/library/translations/pt_BR/LC_MESSAGES/R-grid.mo /usr/local/lib64/R/library/translations/pt_BR/LC_MESSAGES/R-methods.mo +/usr/local/lib64/R/library/translations/pt_BR/LC_MESSAGES/R-parallel.mo /usr/local/lib64/R/library/translations/pt_BR/LC_MESSAGES/R-splines.mo /usr/local/lib64/R/library/translations/pt_BR/LC_MESSAGES/R-stats.mo /usr/local/lib64/R/library/translations/pt_BR/LC_MESSAGES/R-stats4.mo @@ -1531,6 +1713,7 @@ /usr/local/lib64/R/library/translations/pt_BR/LC_MESSAGES/stats.mo /usr/local/lib64/R/library/translations/pt_BR/LC_MESSAGES/tcltk.mo /usr/local/lib64/R/library/translations/pt_BR/LC_MESSAGES/tools.mo +/usr/local/lib64/R/library/translations/pt_BR/LC_MESSAGES/utils.mo /usr/local/lib64/R/library/translations/ru/LC_MESSAGES/R-base.mo /usr/local/lib64/R/library/translations/ru/LC_MESSAGES/R-compiler.mo /usr/local/lib64/R/library/translations/ru/LC_MESSAGES/R-grDevices.mo @@ -1556,6 +1739,8 @@ /usr/local/lib64/R/library/translations/ru/LC_MESSAGES/tcltk.mo /usr/local/lib64/R/library/translations/ru/LC_MESSAGES/tools.mo /usr/local/lib64/R/library/translations/ru/LC_MESSAGES/utils.mo +/usr/local/lib64/R/library/translations/sq/LC_MESSAGES/R-base.mo +/usr/local/lib64/R/library/translations/sq/LC_MESSAGES/R.mo /usr/local/lib64/R/library/translations/tr/LC_MESSAGES/R-base.mo /usr/local/lib64/R/library/translations/tr/LC_MESSAGES/R-stats.mo /usr/local/lib64/R/library/translations/tr/LC_MESSAGES/R-stats4.mo @@ -1564,6 +1749,7 @@ /usr/local/lib64/R/library/translations/tr/LC_MESSAGES/R.mo /usr/local/lib64/R/library/translations/tr/LC_MESSAGES/RGui.mo /usr/local/lib64/R/library/translations/tr/LC_MESSAGES/graphics.mo +/usr/local/lib64/R/library/translations/ur/LC_MESSAGES/R-base.mo /usr/local/lib64/R/library/translations/zh_CN/LC_MESSAGES/R-base.mo /usr/local/lib64/R/library/translations/zh_CN/LC_MESSAGES/R-compiler.mo /usr/local/lib64/R/library/translations/zh_CN/LC_MESSAGES/R-grDevices.mo @@ -1651,6 +1837,9 @@ /usr/local/lib64/R/share/R/nspackloader.R /usr/local/lib64/R/share/R/tests-startup.R /usr/local/lib64/R/share/Rd/macros/system.Rd +/usr/local/lib64/R/share/dictionaries/R_Rd_files.rds +/usr/local/lib64/R/share/dictionaries/R_manuals.rds +/usr/local/lib64/R/share/dictionaries/R_vignettes.rds /usr/local/lib64/R/share/dictionaries/en_stats.rds /usr/local/lib64/R/share/encodings/Adobe-glyphlist /usr/local/lib64/R/share/encodings/character-sets diff --git a/manifest/x86_64/r/ruby_pry_byebug.filelist b/manifest/x86_64/r/ruby_pry_byebug.filelist new file mode 100644 index 000000000..9ee81c73b --- /dev/null +++ b/manifest/x86_64/r/ruby_pry_byebug.filelist @@ -0,0 +1,406 @@ +/usr/local/bin/byebug +/usr/local/bin/byebug.lock +/usr/local/bin/coderay +/usr/local/bin/coderay.lock +/usr/local/bin/pry +/usr/local/bin/pry.lock +/usr/local/lib64/ruby/gems/3.3.0/cache/byebug-11.1.3.gem +/usr/local/lib64/ruby/gems/3.3.0/cache/coderay-1.1.3.gem +/usr/local/lib64/ruby/gems/3.3.0/cache/method_source-1.1.0.gem +/usr/local/lib64/ruby/gems/3.3.0/cache/pry-0.14.2.gem +/usr/local/lib64/ruby/gems/3.3.0/cache/pry-byebug-3.10.1.gem +/usr/local/lib64/ruby/gems/3.3.0/extensions/x86_64-linux-gnu/3.3.0/byebug-11.1.3/byebug/byebug.so +/usr/local/lib64/ruby/gems/3.3.0/extensions/x86_64-linux-gnu/3.3.0/byebug-11.1.3/gem.build_complete +/usr/local/lib64/ruby/gems/3.3.0/extensions/x86_64-linux-gnu/3.3.0/byebug-11.1.3/gem_make.out +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/CHANGELOG.md +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/CONTRIBUTING.md +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/GUIDE.md +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/LICENSE +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/README.md +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/exe/byebug +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/ext/byebug/Makefile +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/ext/byebug/breakpoint.c +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/ext/byebug/byebug.c +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/ext/byebug/byebug.h +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/ext/byebug/context.c +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/ext/byebug/extconf.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/ext/byebug/locker.c +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/ext/byebug/threads.c +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/attacher.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/breakpoint.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/byebug.so +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/command.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/command_list.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/break.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/catch.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/condition.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/continue.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/debug.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/delete.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/disable.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/disable/breakpoints.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/disable/display.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/display.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/down.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/edit.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/enable.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/enable/breakpoints.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/enable/display.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/finish.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/frame.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/help.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/history.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/info.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/info/breakpoints.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/info/display.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/info/file.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/info/line.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/info/program.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/interrupt.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/irb.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/kill.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/list.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/method.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/next.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/pry.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/quit.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/restart.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/save.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/set.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/show.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/skip.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/source.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/step.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/thread.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/thread/current.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/thread/list.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/thread/resume.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/thread/stop.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/thread/switch.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/tracevar.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/undisplay.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/untracevar.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/up.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/var.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/var/all.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/var/args.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/var/const.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/var/global.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/var/instance.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/var/local.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/commands/where.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/context.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/core.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/errors.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/frame.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/helpers/bin.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/helpers/eval.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/helpers/file.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/helpers/frame.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/helpers/parse.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/helpers/path.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/helpers/reflection.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/helpers/string.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/helpers/thread.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/helpers/toggle.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/helpers/var.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/history.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/interface.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/interfaces/local_interface.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/interfaces/remote_interface.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/interfaces/script_interface.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/interfaces/test_interface.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/option_setter.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/printers/base.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/printers/plain.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/printers/texts/base.yml +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/printers/texts/plain.yml +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/processors/command_processor.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/processors/control_processor.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/processors/post_mortem_processor.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/processors/script_processor.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/remote.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/remote/client.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/remote/server.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/runner.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/setting.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/settings/autoirb.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/settings/autolist.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/settings/autopry.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/settings/autosave.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/settings/basename.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/settings/callstyle.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/settings/fullpath.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/settings/histfile.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/settings/histsize.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/settings/linetrace.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/settings/listsize.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/settings/post_mortem.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/settings/savefile.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/settings/stack_on_error.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/settings/width.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/source_file_formatter.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/subcommands.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/byebug-11.1.3/lib/byebug/version.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/MIT-LICENSE +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/README_INDEX.rdoc +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/bin/coderay +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/duo.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/_map.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/comment_filter.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/count.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/debug.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/debug_lint.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/div.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/encoder.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/filter.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/html.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/html/css.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/html/numbering.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/html/output.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/json.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/lines_of_code.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/lint.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/null.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/page.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/span.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/statistic.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/terminal.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/text.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/token_kind_filter.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/xml.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/encoders/yaml.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/for_redcloth.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/helpers/file_type.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/helpers/plugin.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/helpers/plugin_host.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/helpers/word_list.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/_map.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/c.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/clojure.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/cpp.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/css.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/debug.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/delphi.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/diff.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/erb.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/go.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/groovy.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/haml.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/html.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/java.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/java/builtin_types.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/java_script.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/json.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/lua.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/php.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/python.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/raydebug.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/ruby.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/ruby/patterns.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/ruby/string_state.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/sass.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/scanner.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/sql.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/taskpaper.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/text.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/xml.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/scanners/yaml.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/styles.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/styles/_map.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/styles/alpha.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/styles/style.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/token_kinds.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/tokens.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/tokens_proxy.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/coderay-1.1.3/lib/coderay/version.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/method_source-1.1.0/.gemtest +/usr/local/lib64/ruby/gems/3.3.0/gems/method_source-1.1.0/.yardopts +/usr/local/lib64/ruby/gems/3.3.0/gems/method_source-1.1.0/CHANGELOG.md +/usr/local/lib64/ruby/gems/3.3.0/gems/method_source-1.1.0/Gemfile +/usr/local/lib64/ruby/gems/3.3.0/gems/method_source-1.1.0/LICENSE +/usr/local/lib64/ruby/gems/3.3.0/gems/method_source-1.1.0/README.markdown +/usr/local/lib64/ruby/gems/3.3.0/gems/method_source-1.1.0/Rakefile +/usr/local/lib64/ruby/gems/3.3.0/gems/method_source-1.1.0/lib/method_source.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/method_source-1.1.0/lib/method_source/code_helpers.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/method_source-1.1.0/lib/method_source/source_location.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/method_source-1.1.0/lib/method_source/version.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/method_source-1.1.0/method_source.gemspec +/usr/local/lib64/ruby/gems/3.3.0/gems/method_source-1.1.0/spec/method_source/code_helpers_spec.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/method_source-1.1.0/spec/method_source_spec.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/method_source-1.1.0/spec/spec_helper.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/CHANGELOG.md +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/LICENSE +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/README.md +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/bin/pry +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/basic_object.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/block_command.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/class_command.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/cli.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/code.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/code/code_file.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/code/code_range.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/code/loc.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/code_object.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/color_printer.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/command.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/command_set.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/command_state.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/amend_line.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/bang.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/bang_pry.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/cat.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/cat/abstract_formatter.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/cat/exception_formatter.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/cat/file_formatter.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/cat/input_expression_formatter.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/cd.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/change_inspector.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/change_prompt.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/clear_screen.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/code_collector.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/disable_pry.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/easter_eggs.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/edit.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/edit/exception_patcher.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/edit/file_and_line_locator.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/exit.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/exit_all.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/exit_program.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/find_method.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/fix_indent.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/help.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/hist.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/import_set.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/jump_to.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/list_inspectors.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/constants.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/formatter.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/globals.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/grep.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/instance_vars.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/interrogatable.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/jruby_hacks.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/local_names.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/local_vars.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/ls_entity.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/methods.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/methods_helper.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/ls/self_methods.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/nesting.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/play.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/pry_backtrace.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/pry_version.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/raise_up.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/reload_code.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/reset.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/ri.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/save_file.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/shell_command.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/shell_mode.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/show_doc.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/show_info.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/show_input.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/show_source.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/stat.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/switch_to.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/toggle_color.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/watch_expression.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/watch_expression/expression.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/whereami.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/commands/wtf.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/config.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/config/attributable.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/config/lazy_value.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/config/memoized_value.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/config/value.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/control_d_handler.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/core_extensions.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/editor.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/env.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/exception_handler.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/exceptions.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/forwardable.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/helpers.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/helpers/base_helpers.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/helpers/command_helpers.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/helpers/documentation_helpers.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/helpers/options_helpers.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/helpers/platform.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/helpers/table.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/helpers/text.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/history.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/hooks.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/indent.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/input_completer.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/input_lock.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/inspector.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/last_exception.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/method.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/method/disowned.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/method/patcher.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/method/weird_method_locator.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/object_path.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/output.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/pager.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/prompt.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/pry_class.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/pry_instance.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/repl.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/repl_file_loader.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/ring.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/slop.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/slop/LICENSE +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/slop/commands.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/slop/option.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/syntax_highlighter.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/system_command_handler.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/testable.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/testable/evalable.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/testable/mockable.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/testable/pry_tester.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/testable/utility.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/testable/variables.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/version.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/warning.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/wrapped_module.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-0.14.2/lib/pry/wrapped_module/candidate.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-byebug-3.10.1/CHANGELOG.md +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-byebug-3.10.1/LICENSE +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-byebug-3.10.1/README.md +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-byebug-3.10.1/lib/byebug/processors/pry_processor.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/base.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/cli.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/commands.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/commands/backtrace.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/commands/breakpoint.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/commands/continue.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/commands/down.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/commands/exit_all.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/commands/finish.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/commands/frame.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/commands/next.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/commands/step.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/commands/up.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/control_d_handler.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/helpers/breakpoints.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/helpers/location.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/helpers/multiline.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/helpers/navigation.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/pry_ext.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/pry_remote_ext.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-byebug-3.10.1/lib/pry-byebug/version.rb +/usr/local/lib64/ruby/gems/3.3.0/gems/pry-byebug-3.10.1/lib/pry/byebug/breakpoints.rb +/usr/local/lib64/ruby/gems/3.3.0/specifications/byebug-11.1.3.gemspec +/usr/local/lib64/ruby/gems/3.3.0/specifications/coderay-1.1.3.gemspec +/usr/local/lib64/ruby/gems/3.3.0/specifications/method_source-1.1.0.gemspec +/usr/local/lib64/ruby/gems/3.3.0/specifications/pry-0.14.2.gemspec +/usr/local/lib64/ruby/gems/3.3.0/specifications/pry-byebug-3.10.1.gemspec diff --git a/manifest/x86_64/s/sdl2_ttf.filelist b/manifest/x86_64/s/sdl2_ttf.filelist new file mode 100644 index 000000000..a44283ac1 --- /dev/null +++ b/manifest/x86_64/s/sdl2_ttf.filelist @@ -0,0 +1,11 @@ +/usr/local/include/SDL2/SDL_ttf.h +/usr/local/lib64/cmake/SDL2_ttf/SDL2_ttf-shared-targets-release.cmake +/usr/local/lib64/cmake/SDL2_ttf/SDL2_ttf-shared-targets.cmake +/usr/local/lib64/cmake/SDL2_ttf/SDL2_ttfConfig.cmake +/usr/local/lib64/cmake/SDL2_ttf/SDL2_ttfConfigVersion.cmake +/usr/local/lib64/libSDL2_ttf-2.0.so +/usr/local/lib64/libSDL2_ttf-2.0.so.0 +/usr/local/lib64/libSDL2_ttf-2.0.so.0.2200.0 +/usr/local/lib64/libSDL2_ttf.so +/usr/local/lib64/pkgconfig/SDL2_ttf.pc +/usr/local/share/licenses/SDL2_ttf/LICENSE.txt diff --git a/manifest/x86_64/s/sdl3.filelist b/manifest/x86_64/s/sdl3.filelist new file mode 100644 index 000000000..5cbb488c6 --- /dev/null +++ b/manifest/x86_64/s/sdl3.filelist @@ -0,0 +1,94 @@ +/usr/local/include/SDL3/SDL.h +/usr/local/include/SDL3/SDL_assert.h +/usr/local/include/SDL3/SDL_atomic.h +/usr/local/include/SDL3/SDL_audio.h +/usr/local/include/SDL3/SDL_begin_code.h +/usr/local/include/SDL3/SDL_bits.h +/usr/local/include/SDL3/SDL_blendmode.h +/usr/local/include/SDL3/SDL_camera.h +/usr/local/include/SDL3/SDL_clipboard.h +/usr/local/include/SDL3/SDL_close_code.h +/usr/local/include/SDL3/SDL_copying.h +/usr/local/include/SDL3/SDL_cpuinfo.h +/usr/local/include/SDL3/SDL_dialog.h +/usr/local/include/SDL3/SDL_egl.h +/usr/local/include/SDL3/SDL_endian.h +/usr/local/include/SDL3/SDL_error.h +/usr/local/include/SDL3/SDL_events.h +/usr/local/include/SDL3/SDL_filesystem.h +/usr/local/include/SDL3/SDL_gamepad.h +/usr/local/include/SDL3/SDL_guid.h +/usr/local/include/SDL3/SDL_haptic.h +/usr/local/include/SDL3/SDL_hidapi.h +/usr/local/include/SDL3/SDL_hints.h +/usr/local/include/SDL3/SDL_init.h +/usr/local/include/SDL3/SDL_intrin.h +/usr/local/include/SDL3/SDL_iostream.h +/usr/local/include/SDL3/SDL_joystick.h +/usr/local/include/SDL3/SDL_keyboard.h +/usr/local/include/SDL3/SDL_keycode.h +/usr/local/include/SDL3/SDL_loadso.h +/usr/local/include/SDL3/SDL_locale.h +/usr/local/include/SDL3/SDL_log.h +/usr/local/include/SDL3/SDL_main.h +/usr/local/include/SDL3/SDL_main_impl.h +/usr/local/include/SDL3/SDL_messagebox.h +/usr/local/include/SDL3/SDL_metal.h +/usr/local/include/SDL3/SDL_misc.h +/usr/local/include/SDL3/SDL_mouse.h +/usr/local/include/SDL3/SDL_mutex.h +/usr/local/include/SDL3/SDL_oldnames.h +/usr/local/include/SDL3/SDL_opengl.h +/usr/local/include/SDL3/SDL_opengl_glext.h +/usr/local/include/SDL3/SDL_opengles.h +/usr/local/include/SDL3/SDL_opengles2.h +/usr/local/include/SDL3/SDL_opengles2_gl2.h +/usr/local/include/SDL3/SDL_opengles2_gl2ext.h +/usr/local/include/SDL3/SDL_opengles2_gl2platform.h +/usr/local/include/SDL3/SDL_opengles2_khrplatform.h +/usr/local/include/SDL3/SDL_pen.h +/usr/local/include/SDL3/SDL_pixels.h +/usr/local/include/SDL3/SDL_platform.h +/usr/local/include/SDL3/SDL_platform_defines.h +/usr/local/include/SDL3/SDL_power.h +/usr/local/include/SDL3/SDL_properties.h +/usr/local/include/SDL3/SDL_rect.h +/usr/local/include/SDL3/SDL_render.h +/usr/local/include/SDL3/SDL_revision.h +/usr/local/include/SDL3/SDL_scancode.h +/usr/local/include/SDL3/SDL_sensor.h +/usr/local/include/SDL3/SDL_stdinc.h +/usr/local/include/SDL3/SDL_storage.h +/usr/local/include/SDL3/SDL_surface.h +/usr/local/include/SDL3/SDL_system.h +/usr/local/include/SDL3/SDL_test.h +/usr/local/include/SDL3/SDL_test_assert.h +/usr/local/include/SDL3/SDL_test_common.h +/usr/local/include/SDL3/SDL_test_compare.h +/usr/local/include/SDL3/SDL_test_crc32.h +/usr/local/include/SDL3/SDL_test_font.h +/usr/local/include/SDL3/SDL_test_fuzzer.h +/usr/local/include/SDL3/SDL_test_harness.h +/usr/local/include/SDL3/SDL_test_log.h +/usr/local/include/SDL3/SDL_test_md5.h +/usr/local/include/SDL3/SDL_test_memory.h +/usr/local/include/SDL3/SDL_thread.h +/usr/local/include/SDL3/SDL_time.h +/usr/local/include/SDL3/SDL_timer.h +/usr/local/include/SDL3/SDL_touch.h +/usr/local/include/SDL3/SDL_version.h +/usr/local/include/SDL3/SDL_video.h +/usr/local/include/SDL3/SDL_vulkan.h +/usr/local/lib64/cmake/SDL3/SDL3Config.cmake +/usr/local/lib64/cmake/SDL3/SDL3ConfigVersion.cmake +/usr/local/lib64/cmake/SDL3/SDL3headersTargets.cmake +/usr/local/lib64/cmake/SDL3/SDL3sharedTargets-release.cmake +/usr/local/lib64/cmake/SDL3/SDL3sharedTargets.cmake +/usr/local/lib64/cmake/SDL3/SDL3testTargets-release.cmake +/usr/local/lib64/cmake/SDL3/SDL3testTargets.cmake +/usr/local/lib64/libSDL3.so +/usr/local/lib64/libSDL3.so.0 +/usr/local/lib64/libSDL3.so.0.1.2 +/usr/local/lib64/libSDL3_test.a +/usr/local/lib64/pkgconfig/sdl3.pc +/usr/local/share/licenses/SDL3/LICENSE.txt diff --git a/manifest/x86_64/s/sdl3_ttf.filelist b/manifest/x86_64/s/sdl3_ttf.filelist new file mode 100644 index 000000000..e0d295f33 --- /dev/null +++ b/manifest/x86_64/s/sdl3_ttf.filelist @@ -0,0 +1,10 @@ +/usr/local/include/SDL3_ttf/SDL_ttf.h +/usr/local/lib64/cmake/SDL3_ttf/SDL3_ttf-shared-targets-release.cmake +/usr/local/lib64/cmake/SDL3_ttf/SDL3_ttf-shared-targets.cmake +/usr/local/lib64/cmake/SDL3_ttf/SDL3_ttfConfig.cmake +/usr/local/lib64/cmake/SDL3_ttf/SDL3_ttfConfigVersion.cmake +/usr/local/lib64/libSDL3_ttf.so +/usr/local/lib64/libSDL3_ttf.so.0 +/usr/local/lib64/libSDL3_ttf.so.0.0.0 +/usr/local/lib64/pkgconfig/sdl3-ttf.pc +/usr/local/share/licenses/SDL3_ttf/LICENSE.txt diff --git a/manifest/x86_64/s/shared_mime_info.filelist b/manifest/x86_64/s/shared_mime_info.filelist index dd7004986..f598ee1e8 100644 --- a/manifest/x86_64/s/shared_mime_info.filelist +++ b/manifest/x86_64/s/shared_mime_info.filelist @@ -1,4 +1,7 @@ /usr/local/bin/update-mime-database +/usr/local/share/gettext/its/shared-mime-info.its +/usr/local/share/gettext/its/shared-mime-info.loc +/usr/local/share/locale/af/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/ar/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/as/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/ast/LC_MESSAGES/shared-mime-info.mo @@ -33,12 +36,14 @@ /usr/local/share/locale/hu/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/ia/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/id/LC_MESSAGES/shared-mime-info.mo +/usr/local/share/locale/is/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/it/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/ja/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/ka/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/kk/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/kn/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/ko/LC_MESSAGES/shared-mime-info.mo +/usr/local/share/locale/ky/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/lt/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/lv/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/ml/LC_MESSAGES/shared-mime-info.mo @@ -56,6 +61,7 @@ /usr/local/share/locale/ro/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/ru/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/rw/LC_MESSAGES/shared-mime-info.mo +/usr/local/share/locale/si/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/sk/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/sl/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/sq/LC_MESSAGES/shared-mime-info.mo @@ -72,797 +78,6 @@ /usr/local/share/locale/zh_CN/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/zh_HK/LC_MESSAGES/shared-mime-info.mo /usr/local/share/locale/zh_TW/LC_MESSAGES/shared-mime-info.mo -/usr/local/share/man/man1/update-mime-database.1.gz -/usr/local/share/mime/XMLnamespaces -/usr/local/share/mime/aliases -/usr/local/share/mime/application/andrew-inset.xml -/usr/local/share/mime/application/annodex.xml -/usr/local/share/mime/application/atom+xml.xml -/usr/local/share/mime/application/dicom.xml -/usr/local/share/mime/application/ecmascript.xml -/usr/local/share/mime/application/epub+zip.xml -/usr/local/share/mime/application/geo+json.xml -/usr/local/share/mime/application/gml+xml.xml -/usr/local/share/mime/application/gnunet-directory.xml -/usr/local/share/mime/application/gpx+xml.xml -/usr/local/share/mime/application/gzip.xml -/usr/local/share/mime/application/illustrator.xml -/usr/local/share/mime/application/javascript.xml -/usr/local/share/mime/application/jrd+json.xml -/usr/local/share/mime/application/json-patch+json.xml -/usr/local/share/mime/application/json.xml -/usr/local/share/mime/application/ld+json.xml -/usr/local/share/mime/application/mac-binhex40.xml -/usr/local/share/mime/application/mathematica.xml -/usr/local/share/mime/application/mathml+xml.xml -/usr/local/share/mime/application/mbox.xml -/usr/local/share/mime/application/metalink+xml.xml -/usr/local/share/mime/application/metalink4+xml.xml -/usr/local/share/mime/application/msword-template.xml -/usr/local/share/mime/application/msword.xml -/usr/local/share/mime/application/mxf.xml -/usr/local/share/mime/application/octet-stream.xml -/usr/local/share/mime/application/oda.xml -/usr/local/share/mime/application/ogg.xml -/usr/local/share/mime/application/owl+xml.xml -/usr/local/share/mime/application/oxps.xml -/usr/local/share/mime/application/pdf.xml -/usr/local/share/mime/application/pgp-encrypted.xml -/usr/local/share/mime/application/pgp-keys.xml -/usr/local/share/mime/application/pgp-signature.xml -/usr/local/share/mime/application/pkcs10.xml -/usr/local/share/mime/application/pkcs12.xml -/usr/local/share/mime/application/pkcs7-mime.xml -/usr/local/share/mime/application/pkcs7-signature.xml -/usr/local/share/mime/application/pkcs8-encrypted.xml -/usr/local/share/mime/application/pkcs8.xml -/usr/local/share/mime/application/pkix-cert.xml -/usr/local/share/mime/application/pkix-crl.xml -/usr/local/share/mime/application/pkix-pkipath.xml -/usr/local/share/mime/application/postscript.xml -/usr/local/share/mime/application/prs.plucker.xml -/usr/local/share/mime/application/ram.xml -/usr/local/share/mime/application/raml+yaml.xml -/usr/local/share/mime/application/rdf+xml.xml -/usr/local/share/mime/application/relax-ng-compact-syntax.xml -/usr/local/share/mime/application/rss+xml.xml -/usr/local/share/mime/application/rtf.xml -/usr/local/share/mime/application/sdp.xml -/usr/local/share/mime/application/sieve.xml -/usr/local/share/mime/application/smil+xml.xml -/usr/local/share/mime/application/sql.xml -/usr/local/share/mime/application/trig.xml -/usr/local/share/mime/application/vnd.adobe.flash.movie.xml -/usr/local/share/mime/application/vnd.android.package-archive.xml -/usr/local/share/mime/application/vnd.appimage.xml -/usr/local/share/mime/application/vnd.apple.mpegurl.xml -/usr/local/share/mime/application/vnd.chess-pgn.xml -/usr/local/share/mime/application/vnd.coffeescript.xml -/usr/local/share/mime/application/vnd.comicbook+zip.xml -/usr/local/share/mime/application/vnd.comicbook-rar.xml -/usr/local/share/mime/application/vnd.corel-draw.xml -/usr/local/share/mime/application/vnd.debian.binary-package.xml -/usr/local/share/mime/application/vnd.emusic-emusic_package.xml -/usr/local/share/mime/application/vnd.flatpak.ref.xml -/usr/local/share/mime/application/vnd.flatpak.repo.xml -/usr/local/share/mime/application/vnd.flatpak.xml -/usr/local/share/mime/application/vnd.framemaker.xml -/usr/local/share/mime/application/vnd.google-earth.kml+xml.xml -/usr/local/share/mime/application/vnd.google-earth.kmz.xml -/usr/local/share/mime/application/vnd.hp-hpgl.xml -/usr/local/share/mime/application/vnd.hp-pcl.xml -/usr/local/share/mime/application/vnd.iccprofile.xml -/usr/local/share/mime/application/vnd.lotus-1-2-3.xml -/usr/local/share/mime/application/vnd.lotus-wordpro.xml -/usr/local/share/mime/application/vnd.mozilla.xul+xml.xml -/usr/local/share/mime/application/vnd.ms-access.xml -/usr/local/share/mime/application/vnd.ms-asf.xml -/usr/local/share/mime/application/vnd.ms-cab-compressed.xml -/usr/local/share/mime/application/vnd.ms-excel.addin.macroenabled.12.xml -/usr/local/share/mime/application/vnd.ms-excel.sheet.binary.macroenabled.12.xml -/usr/local/share/mime/application/vnd.ms-excel.sheet.macroenabled.12.xml -/usr/local/share/mime/application/vnd.ms-excel.template.macroenabled.12.xml -/usr/local/share/mime/application/vnd.ms-excel.xml -/usr/local/share/mime/application/vnd.ms-htmlhelp.xml -/usr/local/share/mime/application/vnd.ms-powerpoint.addin.macroenabled.12.xml -/usr/local/share/mime/application/vnd.ms-powerpoint.presentation.macroenabled.12.xml -/usr/local/share/mime/application/vnd.ms-powerpoint.slide.macroenabled.12.xml -/usr/local/share/mime/application/vnd.ms-powerpoint.slideshow.macroenabled.12.xml -/usr/local/share/mime/application/vnd.ms-powerpoint.template.macroenabled.12.xml -/usr/local/share/mime/application/vnd.ms-powerpoint.xml -/usr/local/share/mime/application/vnd.ms-publisher.xml -/usr/local/share/mime/application/vnd.ms-tnef.xml -/usr/local/share/mime/application/vnd.ms-visio.drawing.macroenabled.main+xml.xml -/usr/local/share/mime/application/vnd.ms-visio.drawing.main+xml.xml -/usr/local/share/mime/application/vnd.ms-visio.stencil.macroenabled.main+xml.xml -/usr/local/share/mime/application/vnd.ms-visio.stencil.main+xml.xml -/usr/local/share/mime/application/vnd.ms-visio.template.macroenabled.main+xml.xml -/usr/local/share/mime/application/vnd.ms-visio.template.main+xml.xml -/usr/local/share/mime/application/vnd.ms-word.document.macroenabled.12.xml -/usr/local/share/mime/application/vnd.ms-word.template.macroenabled.12.xml -/usr/local/share/mime/application/vnd.ms-works.xml -/usr/local/share/mime/application/vnd.ms-wpl.xml -/usr/local/share/mime/application/vnd.nintendo.snes.rom.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.chart-template.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.chart.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.database.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.formula-template.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.formula.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.graphics-flat-xml.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.graphics-template.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.graphics.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.image.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.presentation-flat-xml.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.presentation-template.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.presentation.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.spreadsheet-flat-xml.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.spreadsheet-template.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.spreadsheet.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.text-flat-xml.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.text-master.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.text-template.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.text-web.xml -/usr/local/share/mime/application/vnd.oasis.opendocument.text.xml -/usr/local/share/mime/application/vnd.openofficeorg.extension.xml -/usr/local/share/mime/application/vnd.openxmlformats-officedocument.presentationml.presentation.xml -/usr/local/share/mime/application/vnd.openxmlformats-officedocument.presentationml.slide.xml -/usr/local/share/mime/application/vnd.openxmlformats-officedocument.presentationml.slideshow.xml -/usr/local/share/mime/application/vnd.openxmlformats-officedocument.presentationml.template.xml -/usr/local/share/mime/application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.xml -/usr/local/share/mime/application/vnd.openxmlformats-officedocument.spreadsheetml.template.xml -/usr/local/share/mime/application/vnd.openxmlformats-officedocument.wordprocessingml.document.xml -/usr/local/share/mime/application/vnd.openxmlformats-officedocument.wordprocessingml.template.xml -/usr/local/share/mime/application/vnd.palm.xml -/usr/local/share/mime/application/vnd.rar.xml -/usr/local/share/mime/application/vnd.rn-realmedia.xml -/usr/local/share/mime/application/vnd.snap.xml -/usr/local/share/mime/application/vnd.sqlite3.xml -/usr/local/share/mime/application/vnd.squashfs.xml -/usr/local/share/mime/application/vnd.stardivision.calc.xml -/usr/local/share/mime/application/vnd.stardivision.chart.xml -/usr/local/share/mime/application/vnd.stardivision.draw.xml -/usr/local/share/mime/application/vnd.stardivision.impress.xml -/usr/local/share/mime/application/vnd.stardivision.mail.xml -/usr/local/share/mime/application/vnd.stardivision.math.xml -/usr/local/share/mime/application/vnd.stardivision.writer.xml -/usr/local/share/mime/application/vnd.sun.xml.calc.template.xml -/usr/local/share/mime/application/vnd.sun.xml.calc.xml -/usr/local/share/mime/application/vnd.sun.xml.draw.template.xml -/usr/local/share/mime/application/vnd.sun.xml.draw.xml -/usr/local/share/mime/application/vnd.sun.xml.impress.template.xml -/usr/local/share/mime/application/vnd.sun.xml.impress.xml -/usr/local/share/mime/application/vnd.sun.xml.math.xml -/usr/local/share/mime/application/vnd.sun.xml.writer.global.xml -/usr/local/share/mime/application/vnd.sun.xml.writer.template.xml -/usr/local/share/mime/application/vnd.sun.xml.writer.xml -/usr/local/share/mime/application/vnd.symbian.install.xml -/usr/local/share/mime/application/vnd.tcpdump.pcap.xml -/usr/local/share/mime/application/vnd.visio.xml -/usr/local/share/mime/application/vnd.wordperfect.xml -/usr/local/share/mime/application/vnd.youtube.yt.xml -/usr/local/share/mime/application/winhlp.xml -/usr/local/share/mime/application/x-7z-compressed.xml -/usr/local/share/mime/application/x-abiword.xml -/usr/local/share/mime/application/x-ace.xml -/usr/local/share/mime/application/x-alz.xml -/usr/local/share/mime/application/x-amiga-disk-format.xml -/usr/local/share/mime/application/x-amipro.xml -/usr/local/share/mime/application/x-aportisdoc.xml -/usr/local/share/mime/application/x-apple-diskimage.xml -/usr/local/share/mime/application/x-applix-spreadsheet.xml -/usr/local/share/mime/application/x-applix-word.xml -/usr/local/share/mime/application/x-arc.xml -/usr/local/share/mime/application/x-archive.xml -/usr/local/share/mime/application/x-arj.xml -/usr/local/share/mime/application/x-asp.xml -/usr/local/share/mime/application/x-atari-2600-rom.xml -/usr/local/share/mime/application/x-atari-7800-rom.xml -/usr/local/share/mime/application/x-atari-lynx-rom.xml -/usr/local/share/mime/application/x-awk.xml -/usr/local/share/mime/application/x-bcpio.xml -/usr/local/share/mime/application/x-bittorrent.xml -/usr/local/share/mime/application/x-blender.xml -/usr/local/share/mime/application/x-bsdiff.xml -/usr/local/share/mime/application/x-bzdvi.xml -/usr/local/share/mime/application/x-bzip-compressed-tar.xml -/usr/local/share/mime/application/x-bzip.xml -/usr/local/share/mime/application/x-bzpdf.xml -/usr/local/share/mime/application/x-bzpostscript.xml -/usr/local/share/mime/application/x-cb7.xml -/usr/local/share/mime/application/x-cbt.xml -/usr/local/share/mime/application/x-ccmx.xml -/usr/local/share/mime/application/x-cd-image.xml -/usr/local/share/mime/application/x-cdrdao-toc.xml -/usr/local/share/mime/application/x-cisco-vpn-settings.xml -/usr/local/share/mime/application/x-class-file.xml -/usr/local/share/mime/application/x-compress.xml -/usr/local/share/mime/application/x-compressed-tar.xml -/usr/local/share/mime/application/x-core.xml -/usr/local/share/mime/application/x-cpio-compressed.xml -/usr/local/share/mime/application/x-cpio.xml -/usr/local/share/mime/application/x-csh.xml -/usr/local/share/mime/application/x-cue.xml -/usr/local/share/mime/application/x-dar.xml -/usr/local/share/mime/application/x-dbf.xml -/usr/local/share/mime/application/x-dc-rom.xml -/usr/local/share/mime/application/x-designer.xml -/usr/local/share/mime/application/x-desktop.xml -/usr/local/share/mime/application/x-dia-diagram.xml -/usr/local/share/mime/application/x-dia-shape.xml -/usr/local/share/mime/application/x-docbook+xml.xml -/usr/local/share/mime/application/x-doom-wad.xml -/usr/local/share/mime/application/x-dvi.xml -/usr/local/share/mime/application/x-e-theme.xml -/usr/local/share/mime/application/x-egon.xml -/usr/local/share/mime/application/x-executable.xml -/usr/local/share/mime/application/x-fds-disk.xml -/usr/local/share/mime/application/x-fictionbook+xml.xml -/usr/local/share/mime/application/x-fluid.xml -/usr/local/share/mime/application/x-font-afm.xml -/usr/local/share/mime/application/x-font-bdf.xml -/usr/local/share/mime/application/x-font-dos.xml -/usr/local/share/mime/application/x-font-framemaker.xml -/usr/local/share/mime/application/x-font-libgrx.xml -/usr/local/share/mime/application/x-font-linux-psf.xml -/usr/local/share/mime/application/x-font-pcf.xml -/usr/local/share/mime/application/x-font-speedo.xml -/usr/local/share/mime/application/x-font-sunos-news.xml -/usr/local/share/mime/application/x-font-tex-tfm.xml -/usr/local/share/mime/application/x-font-tex.xml -/usr/local/share/mime/application/x-font-ttx.xml -/usr/local/share/mime/application/x-font-type1.xml -/usr/local/share/mime/application/x-font-vfont.xml -/usr/local/share/mime/application/x-gameboy-color-rom.xml -/usr/local/share/mime/application/x-gameboy-rom.xml -/usr/local/share/mime/application/x-gamecube-rom.xml -/usr/local/share/mime/application/x-gamegear-rom.xml -/usr/local/share/mime/application/x-gba-rom.xml -/usr/local/share/mime/application/x-gdbm.xml -/usr/local/share/mime/application/x-gedcom.xml -/usr/local/share/mime/application/x-genesis-32x-rom.xml -/usr/local/share/mime/application/x-genesis-rom.xml -/usr/local/share/mime/application/x-gettext-translation.xml -/usr/local/share/mime/application/x-glade.xml -/usr/local/share/mime/application/x-gnucash.xml -/usr/local/share/mime/application/x-gnumeric.xml -/usr/local/share/mime/application/x-gnuplot.xml -/usr/local/share/mime/application/x-go-sgf.xml -/usr/local/share/mime/application/x-graphite.xml -/usr/local/share/mime/application/x-gtk-builder.xml -/usr/local/share/mime/application/x-gtktalog.xml -/usr/local/share/mime/application/x-gz-font-linux-psf.xml -/usr/local/share/mime/application/x-gzdvi.xml -/usr/local/share/mime/application/x-gzpdf.xml -/usr/local/share/mime/application/x-gzpostscript.xml -/usr/local/share/mime/application/x-hdf.xml -/usr/local/share/mime/application/x-hfe-floppy-image.xml -/usr/local/share/mime/application/x-hwp.xml -/usr/local/share/mime/application/x-hwt.xml -/usr/local/share/mime/application/x-ica.xml -/usr/local/share/mime/application/x-iff.xml -/usr/local/share/mime/application/x-ipod-firmware.xml -/usr/local/share/mime/application/x-ipynb+json.xml -/usr/local/share/mime/application/x-iso9660-appimage.xml -/usr/local/share/mime/application/x-it87.xml -/usr/local/share/mime/application/x-iwork-keynote-sffkey.xml -/usr/local/share/mime/application/x-java-archive.xml -/usr/local/share/mime/application/x-java-jce-keystore.xml -/usr/local/share/mime/application/x-java-jnlp-file.xml -/usr/local/share/mime/application/x-java-keystore.xml -/usr/local/share/mime/application/x-java-pack200.xml -/usr/local/share/mime/application/x-java.xml -/usr/local/share/mime/application/x-jbuilder-project.xml -/usr/local/share/mime/application/x-karbon.xml -/usr/local/share/mime/application/x-kchart.xml -/usr/local/share/mime/application/x-kexi-connectiondata.xml -/usr/local/share/mime/application/x-kexiproject-shortcut.xml -/usr/local/share/mime/application/x-kexiproject-sqlite2.xml -/usr/local/share/mime/application/x-kexiproject-sqlite3.xml -/usr/local/share/mime/application/x-kformula.xml -/usr/local/share/mime/application/x-killustrator.xml -/usr/local/share/mime/application/x-kivio.xml -/usr/local/share/mime/application/x-kontour.xml -/usr/local/share/mime/application/x-kpovmodeler.xml -/usr/local/share/mime/application/x-kpresenter.xml -/usr/local/share/mime/application/x-krita.xml -/usr/local/share/mime/application/x-kspread-crypt.xml -/usr/local/share/mime/application/x-kspread.xml -/usr/local/share/mime/application/x-ksysv-package.xml -/usr/local/share/mime/application/x-kugar.xml -/usr/local/share/mime/application/x-kword-crypt.xml -/usr/local/share/mime/application/x-kword.xml -/usr/local/share/mime/application/x-lha.xml -/usr/local/share/mime/application/x-lhz.xml -/usr/local/share/mime/application/x-lrzip-compressed-tar.xml -/usr/local/share/mime/application/x-lrzip.xml -/usr/local/share/mime/application/x-lyx.xml -/usr/local/share/mime/application/x-lz4-compressed-tar.xml -/usr/local/share/mime/application/x-lz4.xml -/usr/local/share/mime/application/x-lzip-compressed-tar.xml -/usr/local/share/mime/application/x-lzip.xml -/usr/local/share/mime/application/x-lzma-compressed-tar.xml -/usr/local/share/mime/application/x-lzma.xml -/usr/local/share/mime/application/x-lzop.xml -/usr/local/share/mime/application/x-lzpdf.xml -/usr/local/share/mime/application/x-m4.xml -/usr/local/share/mime/application/x-macbinary.xml -/usr/local/share/mime/application/x-magicpoint.xml -/usr/local/share/mime/application/x-markaby.xml -/usr/local/share/mime/application/x-matroska.xml -/usr/local/share/mime/application/x-mif.xml -/usr/local/share/mime/application/x-mimearchive.xml -/usr/local/share/mime/application/x-mobipocket-ebook.xml -/usr/local/share/mime/application/x-mozilla-bookmarks.xml -/usr/local/share/mime/application/x-ms-dos-executable.xml -/usr/local/share/mime/application/x-ms-wim.xml -/usr/local/share/mime/application/x-msi.xml -/usr/local/share/mime/application/x-mswinurl.xml -/usr/local/share/mime/application/x-mswrite.xml -/usr/local/share/mime/application/x-msx-rom.xml -/usr/local/share/mime/application/x-n64-rom.xml -/usr/local/share/mime/application/x-nautilus-link.xml -/usr/local/share/mime/application/x-navi-animation.xml -/usr/local/share/mime/application/x-neo-geo-pocket-color-rom.xml -/usr/local/share/mime/application/x-neo-geo-pocket-rom.xml -/usr/local/share/mime/application/x-nes-rom.xml -/usr/local/share/mime/application/x-netcdf.xml -/usr/local/share/mime/application/x-netshow-channel.xml -/usr/local/share/mime/application/x-nintendo-ds-rom.xml -/usr/local/share/mime/application/x-nzb.xml -/usr/local/share/mime/application/x-object.xml -/usr/local/share/mime/application/x-ole-storage.xml -/usr/local/share/mime/application/x-oleo.xml -/usr/local/share/mime/application/x-pagemaker.xml -/usr/local/share/mime/application/x-pak.xml -/usr/local/share/mime/application/x-par2.xml -/usr/local/share/mime/application/x-partial-download.xml -/usr/local/share/mime/application/x-pc-engine-rom.xml -/usr/local/share/mime/application/x-pef-executable.xml -/usr/local/share/mime/application/x-perl.xml -/usr/local/share/mime/application/x-php.xml -/usr/local/share/mime/application/x-pkcs7-certificates.xml -/usr/local/share/mime/application/x-planperfect.xml -/usr/local/share/mime/application/x-pocket-word.xml -/usr/local/share/mime/application/x-profile.xml -/usr/local/share/mime/application/x-pw.xml -/usr/local/share/mime/application/x-python-bytecode.xml -/usr/local/share/mime/application/x-qpress.xml -/usr/local/share/mime/application/x-qtiplot.xml -/usr/local/share/mime/application/x-quattropro.xml -/usr/local/share/mime/application/x-quicktime-media-link.xml -/usr/local/share/mime/application/x-qw.xml -/usr/local/share/mime/application/x-raw-disk-image-xz-compressed.xml -/usr/local/share/mime/application/x-raw-disk-image.xml -/usr/local/share/mime/application/x-raw-floppy-disk-image.xml -/usr/local/share/mime/application/x-riff.xml -/usr/local/share/mime/application/x-rpm.xml -/usr/local/share/mime/application/x-ruby.xml -/usr/local/share/mime/application/x-sami.xml -/usr/local/share/mime/application/x-saturn-rom.xml -/usr/local/share/mime/application/x-sc.xml -/usr/local/share/mime/application/x-sega-cd-rom.xml -/usr/local/share/mime/application/x-sega-pico-rom.xml -/usr/local/share/mime/application/x-sg1000-rom.xml -/usr/local/share/mime/application/x-shar.xml -/usr/local/share/mime/application/x-shared-library-la.xml -/usr/local/share/mime/application/x-sharedlib.xml -/usr/local/share/mime/application/x-shellscript.xml -/usr/local/share/mime/application/x-shorten.xml -/usr/local/share/mime/application/x-siag.xml -/usr/local/share/mime/application/x-slp.xml -/usr/local/share/mime/application/x-smaf.xml -/usr/local/share/mime/application/x-sms-rom.xml -/usr/local/share/mime/application/x-source-rpm.xml -/usr/local/share/mime/application/x-spss-por.xml -/usr/local/share/mime/application/x-spss-sav.xml -/usr/local/share/mime/application/x-sqlite2.xml -/usr/local/share/mime/application/x-stuffit.xml -/usr/local/share/mime/application/x-subrip.xml -/usr/local/share/mime/application/x-sv4cpio.xml -/usr/local/share/mime/application/x-sv4crc.xml -/usr/local/share/mime/application/x-t602.xml -/usr/local/share/mime/application/x-tar.xml -/usr/local/share/mime/application/x-tarz.xml -/usr/local/share/mime/application/x-tex-gf.xml -/usr/local/share/mime/application/x-tex-pk.xml -/usr/local/share/mime/application/x-tgif.xml -/usr/local/share/mime/application/x-theme.xml -/usr/local/share/mime/application/x-thomson-cartridge-memo7.xml -/usr/local/share/mime/application/x-thomson-cassette.xml -/usr/local/share/mime/application/x-thomson-sap-image.xml -/usr/local/share/mime/application/x-toutdoux.xml -/usr/local/share/mime/application/x-trash.xml -/usr/local/share/mime/application/x-troff-man-compressed.xml -/usr/local/share/mime/application/x-troff-man.xml -/usr/local/share/mime/application/x-tzo.xml -/usr/local/share/mime/application/x-ufraw.xml -/usr/local/share/mime/application/x-ustar.xml -/usr/local/share/mime/application/x-virtual-boy-rom.xml -/usr/local/share/mime/application/x-wais-source.xml -/usr/local/share/mime/application/x-wii-rom.xml -/usr/local/share/mime/application/x-wii-wad.xml -/usr/local/share/mime/application/x-windows-themepack.xml -/usr/local/share/mime/application/x-wonderswan-color-rom.xml -/usr/local/share/mime/application/x-wonderswan-rom.xml -/usr/local/share/mime/application/x-wpg.xml -/usr/local/share/mime/application/x-wwf.xml -/usr/local/share/mime/application/x-x509-ca-cert.xml -/usr/local/share/mime/application/x-xar.xml -/usr/local/share/mime/application/x-xbel.xml -/usr/local/share/mime/application/x-xpinstall.xml -/usr/local/share/mime/application/x-xz-compressed-tar.xml -/usr/local/share/mime/application/x-xz.xml -/usr/local/share/mime/application/x-xzpdf.xml -/usr/local/share/mime/application/x-yaml.xml -/usr/local/share/mime/application/x-zerosize.xml -/usr/local/share/mime/application/x-zip-compressed-fb2.xml -/usr/local/share/mime/application/x-zoo.xml -/usr/local/share/mime/application/xhtml+xml.xml -/usr/local/share/mime/application/xliff+xml.xml -/usr/local/share/mime/application/xml-dtd.xml -/usr/local/share/mime/application/xml-external-parsed-entity.xml -/usr/local/share/mime/application/xml.xml -/usr/local/share/mime/application/xslt+xml.xml -/usr/local/share/mime/application/xspf+xml.xml -/usr/local/share/mime/application/zip.xml -/usr/local/share/mime/application/zlib.xml -/usr/local/share/mime/audio/aac.xml -/usr/local/share/mime/audio/ac3.xml -/usr/local/share/mime/audio/amr-wb.xml -/usr/local/share/mime/audio/amr.xml -/usr/local/share/mime/audio/annodex.xml -/usr/local/share/mime/audio/basic.xml -/usr/local/share/mime/audio/flac.xml -/usr/local/share/mime/audio/midi.xml -/usr/local/share/mime/audio/mp2.xml -/usr/local/share/mime/audio/mp4.xml -/usr/local/share/mime/audio/mpeg.xml -/usr/local/share/mime/audio/ogg.xml -/usr/local/share/mime/audio/prs.sid.xml -/usr/local/share/mime/audio/usac.xml -/usr/local/share/mime/audio/vnd.dts.hd.xml -/usr/local/share/mime/audio/vnd.dts.xml -/usr/local/share/mime/audio/vnd.rn-realaudio.xml -/usr/local/share/mime/audio/webm.xml -/usr/local/share/mime/audio/x-adpcm.xml -/usr/local/share/mime/audio/x-aifc.xml -/usr/local/share/mime/audio/x-aiff.xml -/usr/local/share/mime/audio/x-amzxml.xml -/usr/local/share/mime/audio/x-ape.xml -/usr/local/share/mime/audio/x-flac+ogg.xml -/usr/local/share/mime/audio/x-gsm.xml -/usr/local/share/mime/audio/x-iriver-pla.xml -/usr/local/share/mime/audio/x-it.xml -/usr/local/share/mime/audio/x-m4b.xml -/usr/local/share/mime/audio/x-m4r.xml -/usr/local/share/mime/audio/x-matroska.xml -/usr/local/share/mime/audio/x-minipsf.xml -/usr/local/share/mime/audio/x-mo3.xml -/usr/local/share/mime/audio/x-mod.xml -/usr/local/share/mime/audio/x-mpegurl.xml -/usr/local/share/mime/audio/x-ms-asx.xml -/usr/local/share/mime/audio/x-ms-wma.xml -/usr/local/share/mime/audio/x-musepack.xml -/usr/local/share/mime/audio/x-opus+ogg.xml -/usr/local/share/mime/audio/x-pn-audibleaudio.xml -/usr/local/share/mime/audio/x-psf.xml -/usr/local/share/mime/audio/x-psflib.xml -/usr/local/share/mime/audio/x-riff.xml -/usr/local/share/mime/audio/x-s3m.xml -/usr/local/share/mime/audio/x-scpls.xml -/usr/local/share/mime/audio/x-speex+ogg.xml -/usr/local/share/mime/audio/x-speex.xml -/usr/local/share/mime/audio/x-stm.xml -/usr/local/share/mime/audio/x-tta.xml -/usr/local/share/mime/audio/x-voc.xml -/usr/local/share/mime/audio/x-vorbis+ogg.xml -/usr/local/share/mime/audio/x-wav.xml -/usr/local/share/mime/audio/x-wavpack-correction.xml -/usr/local/share/mime/audio/x-wavpack.xml -/usr/local/share/mime/audio/x-xi.xml -/usr/local/share/mime/audio/x-xm.xml -/usr/local/share/mime/audio/x-xmf.xml -/usr/local/share/mime/font/collection.xml -/usr/local/share/mime/font/otf.xml -/usr/local/share/mime/font/ttf.xml -/usr/local/share/mime/font/woff.xml -/usr/local/share/mime/generic-icons -/usr/local/share/mime/globs -/usr/local/share/mime/globs2 -/usr/local/share/mime/icons -/usr/local/share/mime/image/bmp.xml -/usr/local/share/mime/image/cgm.xml -/usr/local/share/mime/image/dpx.xml -/usr/local/share/mime/image/emf.xml -/usr/local/share/mime/image/fax-g3.xml -/usr/local/share/mime/image/fits.xml -/usr/local/share/mime/image/g3fax.xml -/usr/local/share/mime/image/gif.xml -/usr/local/share/mime/image/heif.xml -/usr/local/share/mime/image/ief.xml -/usr/local/share/mime/image/jp2.xml -/usr/local/share/mime/image/jpeg.xml -/usr/local/share/mime/image/jpm.xml -/usr/local/share/mime/image/jpx.xml -/usr/local/share/mime/image/ktx.xml -/usr/local/share/mime/image/openraster.xml -/usr/local/share/mime/image/png.xml -/usr/local/share/mime/image/rle.xml -/usr/local/share/mime/image/svg+xml-compressed.xml -/usr/local/share/mime/image/svg+xml.xml -/usr/local/share/mime/image/tiff.xml -/usr/local/share/mime/image/vnd.adobe.photoshop.xml -/usr/local/share/mime/image/vnd.djvu+multipage.xml -/usr/local/share/mime/image/vnd.djvu.xml -/usr/local/share/mime/image/vnd.dwg.xml -/usr/local/share/mime/image/vnd.dxf.xml -/usr/local/share/mime/image/vnd.microsoft.icon.xml -/usr/local/share/mime/image/vnd.ms-modi.xml -/usr/local/share/mime/image/vnd.rn-realpix.xml -/usr/local/share/mime/image/vnd.wap.wbmp.xml -/usr/local/share/mime/image/vnd.zbrush.pcx.xml -/usr/local/share/mime/image/webp.xml -/usr/local/share/mime/image/wmf.xml -/usr/local/share/mime/image/x-3ds.xml -/usr/local/share/mime/image/x-adobe-dng.xml -/usr/local/share/mime/image/x-applix-graphics.xml -/usr/local/share/mime/image/x-bzeps.xml -/usr/local/share/mime/image/x-canon-cr2.xml -/usr/local/share/mime/image/x-canon-crw.xml -/usr/local/share/mime/image/x-cmu-raster.xml -/usr/local/share/mime/image/x-compressed-xcf.xml -/usr/local/share/mime/image/x-dcraw.xml -/usr/local/share/mime/image/x-dds.xml -/usr/local/share/mime/image/x-dib.xml -/usr/local/share/mime/image/x-eps.xml -/usr/local/share/mime/image/x-exr.xml -/usr/local/share/mime/image/x-fpx.xml -/usr/local/share/mime/image/x-fuji-raf.xml -/usr/local/share/mime/image/x-gimp-gbr.xml -/usr/local/share/mime/image/x-gimp-gih.xml -/usr/local/share/mime/image/x-gimp-pat.xml -/usr/local/share/mime/image/x-gzeps.xml -/usr/local/share/mime/image/x-icns.xml -/usr/local/share/mime/image/x-ilbm.xml -/usr/local/share/mime/image/x-jng.xml -/usr/local/share/mime/image/x-jp2-codestream.xml -/usr/local/share/mime/image/x-kodak-dcr.xml -/usr/local/share/mime/image/x-kodak-k25.xml -/usr/local/share/mime/image/x-kodak-kdc.xml -/usr/local/share/mime/image/x-lwo.xml -/usr/local/share/mime/image/x-lws.xml -/usr/local/share/mime/image/x-macpaint.xml -/usr/local/share/mime/image/x-minolta-mrw.xml -/usr/local/share/mime/image/x-msod.xml -/usr/local/share/mime/image/x-niff.xml -/usr/local/share/mime/image/x-nikon-nef.xml -/usr/local/share/mime/image/x-olympus-orf.xml -/usr/local/share/mime/image/x-panasonic-rw.xml -/usr/local/share/mime/image/x-panasonic-rw2.xml -/usr/local/share/mime/image/x-pentax-pef.xml -/usr/local/share/mime/image/x-photo-cd.xml -/usr/local/share/mime/image/x-pict.xml -/usr/local/share/mime/image/x-portable-anymap.xml -/usr/local/share/mime/image/x-portable-bitmap.xml -/usr/local/share/mime/image/x-portable-graymap.xml -/usr/local/share/mime/image/x-portable-pixmap.xml -/usr/local/share/mime/image/x-quicktime.xml -/usr/local/share/mime/image/x-rgb.xml -/usr/local/share/mime/image/x-sgi.xml -/usr/local/share/mime/image/x-sigma-x3f.xml -/usr/local/share/mime/image/x-skencil.xml -/usr/local/share/mime/image/x-sony-arw.xml -/usr/local/share/mime/image/x-sony-sr2.xml -/usr/local/share/mime/image/x-sony-srf.xml -/usr/local/share/mime/image/x-sun-raster.xml -/usr/local/share/mime/image/x-tga.xml -/usr/local/share/mime/image/x-tiff-multipage.xml -/usr/local/share/mime/image/x-win-bitmap.xml -/usr/local/share/mime/image/x-xbitmap.xml -/usr/local/share/mime/image/x-xcf.xml -/usr/local/share/mime/image/x-xcursor.xml -/usr/local/share/mime/image/x-xfig.xml -/usr/local/share/mime/image/x-xpixmap.xml -/usr/local/share/mime/image/x-xwindowdump.xml -/usr/local/share/mime/inode/blockdevice.xml -/usr/local/share/mime/inode/chardevice.xml -/usr/local/share/mime/inode/directory.xml -/usr/local/share/mime/inode/fifo.xml -/usr/local/share/mime/inode/mount-point.xml -/usr/local/share/mime/inode/socket.xml -/usr/local/share/mime/inode/symlink.xml -/usr/local/share/mime/magic -/usr/local/share/mime/message/delivery-status.xml -/usr/local/share/mime/message/disposition-notification.xml -/usr/local/share/mime/message/external-body.xml -/usr/local/share/mime/message/news.xml -/usr/local/share/mime/message/partial.xml -/usr/local/share/mime/message/rfc822.xml -/usr/local/share/mime/message/x-gnu-rmail.xml -/usr/local/share/mime/mime.cache -/usr/local/share/mime/model/iges.xml -/usr/local/share/mime/model/stl.xml -/usr/local/share/mime/model/vrml.xml -/usr/local/share/mime/multipart/alternative.xml -/usr/local/share/mime/multipart/appledouble.xml -/usr/local/share/mime/multipart/digest.xml -/usr/local/share/mime/multipart/encrypted.xml -/usr/local/share/mime/multipart/mixed.xml -/usr/local/share/mime/multipart/related.xml -/usr/local/share/mime/multipart/report.xml -/usr/local/share/mime/multipart/signed.xml -/usr/local/share/mime/multipart/x-mixed-replace.xml +/usr/local/share/man/man1/update-mime-database.1.zst /usr/local/share/mime/packages/freedesktop.org.xml -/usr/local/share/mime/subclasses -/usr/local/share/mime/text/cache-manifest.xml -/usr/local/share/mime/text/calendar.xml -/usr/local/share/mime/text/css.xml -/usr/local/share/mime/text/csv-schema.xml -/usr/local/share/mime/text/csv.xml -/usr/local/share/mime/text/enriched.xml -/usr/local/share/mime/text/html.xml -/usr/local/share/mime/text/htmlh.xml -/usr/local/share/mime/text/markdown.xml -/usr/local/share/mime/text/plain.xml -/usr/local/share/mime/text/rfc822-headers.xml -/usr/local/share/mime/text/richtext.xml -/usr/local/share/mime/text/rust.xml -/usr/local/share/mime/text/sgml.xml -/usr/local/share/mime/text/spreadsheet.xml -/usr/local/share/mime/text/tab-separated-values.xml -/usr/local/share/mime/text/troff.xml -/usr/local/share/mime/text/turtle.xml -/usr/local/share/mime/text/vcard.xml -/usr/local/share/mime/text/vnd.graphviz.xml -/usr/local/share/mime/text/vnd.qt.linguist.xml -/usr/local/share/mime/text/vnd.rn-realtext.xml -/usr/local/share/mime/text/vnd.sun.j2me.app-descriptor.xml -/usr/local/share/mime/text/vnd.wap.wml.xml -/usr/local/share/mime/text/vnd.wap.wmlscript.xml -/usr/local/share/mime/text/vtt.xml -/usr/local/share/mime/text/x-adasrc.xml -/usr/local/share/mime/text/x-authors.xml -/usr/local/share/mime/text/x-bibtex.xml -/usr/local/share/mime/text/x-c++hdr.xml -/usr/local/share/mime/text/x-c++src.xml -/usr/local/share/mime/text/x-changelog.xml -/usr/local/share/mime/text/x-chdr.xml -/usr/local/share/mime/text/x-cmake.xml -/usr/local/share/mime/text/x-cobol.xml -/usr/local/share/mime/text/x-copying.xml -/usr/local/share/mime/text/x-credits.xml -/usr/local/share/mime/text/x-csharp.xml -/usr/local/share/mime/text/x-csrc.xml -/usr/local/share/mime/text/x-dbus-service.xml -/usr/local/share/mime/text/x-dcl.xml -/usr/local/share/mime/text/x-dsl.xml -/usr/local/share/mime/text/x-dsrc.xml -/usr/local/share/mime/text/x-eiffel.xml -/usr/local/share/mime/text/x-emacs-lisp.xml -/usr/local/share/mime/text/x-erlang.xml -/usr/local/share/mime/text/x-fortran.xml -/usr/local/share/mime/text/x-genie.xml -/usr/local/share/mime/text/x-gettext-translation-template.xml -/usr/local/share/mime/text/x-gettext-translation.xml -/usr/local/share/mime/text/x-gherkin.xml -/usr/local/share/mime/text/x-go.xml -/usr/local/share/mime/text/x-google-video-pointer.xml -/usr/local/share/mime/text/x-haskell.xml -/usr/local/share/mime/text/x-idl.xml -/usr/local/share/mime/text/x-imelody.xml -/usr/local/share/mime/text/x-install.xml -/usr/local/share/mime/text/x-iptables.xml -/usr/local/share/mime/text/x-java.xml -/usr/local/share/mime/text/x-ldif.xml -/usr/local/share/mime/text/x-lilypond.xml -/usr/local/share/mime/text/x-literate-haskell.xml -/usr/local/share/mime/text/x-log.xml -/usr/local/share/mime/text/x-lua.xml -/usr/local/share/mime/text/x-makefile.xml -/usr/local/share/mime/text/x-matlab.xml -/usr/local/share/mime/text/x-meson.xml -/usr/local/share/mime/text/x-microdvd.xml -/usr/local/share/mime/text/x-moc.xml -/usr/local/share/mime/text/x-modelica.xml -/usr/local/share/mime/text/x-mof.xml -/usr/local/share/mime/text/x-mpsub.xml -/usr/local/share/mime/text/x-mrml.xml -/usr/local/share/mime/text/x-ms-regedit.xml -/usr/local/share/mime/text/x-mup.xml -/usr/local/share/mime/text/x-nfo.xml -/usr/local/share/mime/text/x-objcsrc.xml -/usr/local/share/mime/text/x-ocaml.xml -/usr/local/share/mime/text/x-ocl.xml -/usr/local/share/mime/text/x-ooc.xml -/usr/local/share/mime/text/x-opencl-src.xml -/usr/local/share/mime/text/x-opml+xml.xml -/usr/local/share/mime/text/x-pascal.xml -/usr/local/share/mime/text/x-patch.xml -/usr/local/share/mime/text/x-python.xml -/usr/local/share/mime/text/x-python3.xml -/usr/local/share/mime/text/x-qml.xml -/usr/local/share/mime/text/x-readme.xml -/usr/local/share/mime/text/x-reject.xml -/usr/local/share/mime/text/x-rpm-spec.xml -/usr/local/share/mime/text/x-sass.xml -/usr/local/share/mime/text/x-scala.xml -/usr/local/share/mime/text/x-scheme.xml -/usr/local/share/mime/text/x-scons.xml -/usr/local/share/mime/text/x-scss.xml -/usr/local/share/mime/text/x-setext.xml -/usr/local/share/mime/text/x-ssa.xml -/usr/local/share/mime/text/x-subviewer.xml -/usr/local/share/mime/text/x-svhdr.xml -/usr/local/share/mime/text/x-svsrc.xml -/usr/local/share/mime/text/x-systemd-unit.xml -/usr/local/share/mime/text/x-tcl.xml -/usr/local/share/mime/text/x-tex.xml -/usr/local/share/mime/text/x-texinfo.xml -/usr/local/share/mime/text/x-troff-me.xml -/usr/local/share/mime/text/x-troff-mm.xml -/usr/local/share/mime/text/x-troff-ms.xml -/usr/local/share/mime/text/x-twig.xml -/usr/local/share/mime/text/x-txt2tags.xml -/usr/local/share/mime/text/x-uil.xml -/usr/local/share/mime/text/x-uri.xml -/usr/local/share/mime/text/x-uuencode.xml -/usr/local/share/mime/text/x-vala.xml -/usr/local/share/mime/text/x-verilog.xml -/usr/local/share/mime/text/x-vhdl.xml -/usr/local/share/mime/text/x-xmi.xml -/usr/local/share/mime/text/x-xslfo.xml -/usr/local/share/mime/text/x.gcode.xml -/usr/local/share/mime/text/xmcd.xml -/usr/local/share/mime/treemagic -/usr/local/share/mime/types -/usr/local/share/mime/version -/usr/local/share/mime/video/3gpp.xml -/usr/local/share/mime/video/3gpp2.xml -/usr/local/share/mime/video/annodex.xml -/usr/local/share/mime/video/dv.xml -/usr/local/share/mime/video/isivideo.xml -/usr/local/share/mime/video/mj2.xml -/usr/local/share/mime/video/mp2t.xml -/usr/local/share/mime/video/mp4.xml -/usr/local/share/mime/video/mpeg.xml -/usr/local/share/mime/video/ogg.xml -/usr/local/share/mime/video/quicktime.xml -/usr/local/share/mime/video/vnd.mpegurl.xml -/usr/local/share/mime/video/vnd.rn-realvideo.xml -/usr/local/share/mime/video/vnd.vivo.xml -/usr/local/share/mime/video/wavelet.xml -/usr/local/share/mime/video/webm.xml -/usr/local/share/mime/video/x-anim.xml -/usr/local/share/mime/video/x-flic.xml -/usr/local/share/mime/video/x-flv.xml -/usr/local/share/mime/video/x-javafx.xml -/usr/local/share/mime/video/x-matroska-3d.xml -/usr/local/share/mime/video/x-matroska.xml -/usr/local/share/mime/video/x-mjpeg.xml -/usr/local/share/mime/video/x-mng.xml -/usr/local/share/mime/video/x-ms-wmv.xml -/usr/local/share/mime/video/x-msvideo.xml -/usr/local/share/mime/video/x-nsv.xml -/usr/local/share/mime/video/x-ogm+ogg.xml -/usr/local/share/mime/video/x-sgi-movie.xml -/usr/local/share/mime/video/x-theora+ogg.xml -/usr/local/share/mime/x-content/audio-cdda.xml -/usr/local/share/mime/x-content/audio-dvd.xml -/usr/local/share/mime/x-content/audio-player.xml -/usr/local/share/mime/x-content/blank-bd.xml -/usr/local/share/mime/x-content/blank-cd.xml -/usr/local/share/mime/x-content/blank-dvd.xml -/usr/local/share/mime/x-content/blank-hddvd.xml -/usr/local/share/mime/x-content/ebook-reader.xml -/usr/local/share/mime/x-content/image-dcf.xml -/usr/local/share/mime/x-content/image-picturecd.xml -/usr/local/share/mime/x-content/software.xml -/usr/local/share/mime/x-content/unix-software.xml -/usr/local/share/mime/x-content/video-bluray.xml -/usr/local/share/mime/x-content/video-dvd.xml -/usr/local/share/mime/x-content/video-hddvd.xml -/usr/local/share/mime/x-content/video-svcd.xml -/usr/local/share/mime/x-content/video-vcd.xml -/usr/local/share/mime/x-content/win32-software.xml -/usr/local/share/mime/x-epoc/x-sisx-app.xml /usr/local/share/pkgconfig/shared-mime-info.pc diff --git a/manifest/x86_64/s/sphinx.filelist b/manifest/x86_64/s/sphinx.filelist index 351f73019..26ee80c37 100644 --- a/manifest/x86_64/s/sphinx.filelist +++ b/manifest/x86_64/s/sphinx.filelist @@ -2,13 +2,13 @@ /usr/local/bin/sphinx-autogen /usr/local/bin/sphinx-build /usr/local/bin/sphinx-quickstart -/usr/local/lib/python3.12/site-packages/sphinx-7.4.5.dist-info/INSTALLER -/usr/local/lib/python3.12/site-packages/sphinx-7.4.5.dist-info/LICENSE.rst -/usr/local/lib/python3.12/site-packages/sphinx-7.4.5.dist-info/METADATA -/usr/local/lib/python3.12/site-packages/sphinx-7.4.5.dist-info/RECORD -/usr/local/lib/python3.12/site-packages/sphinx-7.4.5.dist-info/REQUESTED -/usr/local/lib/python3.12/site-packages/sphinx-7.4.5.dist-info/WHEEL -/usr/local/lib/python3.12/site-packages/sphinx-7.4.5.dist-info/entry_points.txt +/usr/local/lib/python3.12/site-packages/sphinx-8.0.2.dist-info/INSTALLER +/usr/local/lib/python3.12/site-packages/sphinx-8.0.2.dist-info/LICENSE.rst +/usr/local/lib/python3.12/site-packages/sphinx-8.0.2.dist-info/METADATA +/usr/local/lib/python3.12/site-packages/sphinx-8.0.2.dist-info/RECORD +/usr/local/lib/python3.12/site-packages/sphinx-8.0.2.dist-info/REQUESTED +/usr/local/lib/python3.12/site-packages/sphinx-8.0.2.dist-info/WHEEL +/usr/local/lib/python3.12/site-packages/sphinx-8.0.2.dist-info/entry_points.txt /usr/local/lib/python3.12/site-packages/sphinx/__init__.py /usr/local/lib/python3.12/site-packages/sphinx/__main__.py /usr/local/lib/python3.12/site-packages/sphinx/__pycache__/__init__.cpython-312.pyc @@ -548,10 +548,8 @@ /usr/local/lib/python3.12/site-packages/sphinx/templates/latex/sphinxmessages.sty.jinja /usr/local/lib/python3.12/site-packages/sphinx/templates/latex/tabular.tex.jinja /usr/local/lib/python3.12/site-packages/sphinx/templates/latex/tabulary.tex.jinja -/usr/local/lib/python3.12/site-packages/sphinx/templates/quickstart/Makefile.jinja /usr/local/lib/python3.12/site-packages/sphinx/templates/quickstart/Makefile.new.jinja /usr/local/lib/python3.12/site-packages/sphinx/templates/quickstart/conf.py.jinja -/usr/local/lib/python3.12/site-packages/sphinx/templates/quickstart/make.bat.jinja /usr/local/lib/python3.12/site-packages/sphinx/templates/quickstart/make.bat.new.jinja /usr/local/lib/python3.12/site-packages/sphinx/templates/quickstart/root_doc.rst.jinja /usr/local/lib/python3.12/site-packages/sphinx/templates/texinfo/Makefile @@ -711,6 +709,7 @@ /usr/local/lib/python3.12/site-packages/sphinx/util/__pycache__/__init__.cpython-312.pyc /usr/local/lib/python3.12/site-packages/sphinx/util/__pycache__/_io.cpython-312.pyc /usr/local/lib/python3.12/site-packages/sphinx/util/__pycache__/_pathlib.cpython-312.pyc +/usr/local/lib/python3.12/site-packages/sphinx/util/__pycache__/_timestamps.cpython-312.pyc /usr/local/lib/python3.12/site-packages/sphinx/util/__pycache__/build_phase.cpython-312.pyc /usr/local/lib/python3.12/site-packages/sphinx/util/__pycache__/cfamily.cpython-312.pyc /usr/local/lib/python3.12/site-packages/sphinx/util/__pycache__/console.cpython-312.pyc @@ -742,6 +741,7 @@ /usr/local/lib/python3.12/site-packages/sphinx/util/__pycache__/typing.cpython-312.pyc /usr/local/lib/python3.12/site-packages/sphinx/util/_io.py /usr/local/lib/python3.12/site-packages/sphinx/util/_pathlib.py +/usr/local/lib/python3.12/site-packages/sphinx/util/_timestamps.py /usr/local/lib/python3.12/site-packages/sphinx/util/build_phase.py /usr/local/lib/python3.12/site-packages/sphinx/util/cfamily.py /usr/local/lib/python3.12/site-packages/sphinx/util/console.py diff --git a/manifest/x86_64/t/tdb.filelist b/manifest/x86_64/t/tdb.filelist index 65a15c172..100d053a9 100644 --- a/manifest/x86_64/t/tdb.filelist +++ b/manifest/x86_64/t/tdb.filelist @@ -5,7 +5,7 @@ /usr/local/include/tdb.h /usr/local/lib64/libtdb.so /usr/local/lib64/libtdb.so.1 -/usr/local/lib64/libtdb.so.1.4.10 +/usr/local/lib64/libtdb.so.1.4.12 /usr/local/lib64/pkgconfig/tdb.pc /usr/local/lib64/python3.12/site-packages/_tdb_text.py /usr/local/lib64/python3.12/site-packages/tdb.cpython-312-x86_64-linux-gnu.so diff --git a/manifest/x86_64/t/tepl_6.filelist b/manifest/x86_64/t/tepl_6.filelist index 5740ded9c..72522236a 100644 --- a/manifest/x86_64/t/tepl_6.filelist +++ b/manifest/x86_64/t/tepl_6.filelist @@ -1,80 +1,81 @@ -/usr/local/include/tepl-6/tepl/tepl-abstract-factory.h -/usr/local/include/tepl-6/tepl/tepl-application-window.h -/usr/local/include/tepl-6/tepl/tepl-application.h -/usr/local/include/tepl-6/tepl/tepl-buffer.h -/usr/local/include/tepl-6/tepl/tepl-encoding-iconv.h -/usr/local/include/tepl-6/tepl/tepl-encoding.h -/usr/local/include/tepl-6/tepl/tepl-enum-types.h -/usr/local/include/tepl-6/tepl/tepl-file-chooser.h -/usr/local/include/tepl-6/tepl/tepl-file-loader.h -/usr/local/include/tepl-6/tepl/tepl-file-saver.h -/usr/local/include/tepl-6/tepl/tepl-file.h -/usr/local/include/tepl-6/tepl/tepl-fold-region.h -/usr/local/include/tepl-6/tepl/tepl-goto-line-bar.h -/usr/local/include/tepl-6/tepl/tepl-gutter-renderer-folds.h -/usr/local/include/tepl-6/tepl/tepl-info-bar.h -/usr/local/include/tepl-6/tepl/tepl-init.h -/usr/local/include/tepl-6/tepl/tepl-io-error-info-bars.h -/usr/local/include/tepl-6/tepl/tepl-iter.h -/usr/local/include/tepl-6/tepl/tepl-language-chooser-dialog.h -/usr/local/include/tepl-6/tepl/tepl-language-chooser-widget.h -/usr/local/include/tepl-6/tepl/tepl-language-chooser.h -/usr/local/include/tepl-6/tepl/tepl-line-column-indicator.h -/usr/local/include/tepl-6/tepl/tepl-macros.h -/usr/local/include/tepl-6/tepl/tepl-menu-shell.h -/usr/local/include/tepl-6/tepl/tepl-metadata-manager.h -/usr/local/include/tepl-6/tepl/tepl-metadata.h -/usr/local/include/tepl-6/tepl/tepl-notebook.h -/usr/local/include/tepl-6/tepl/tepl-overwrite-indicator.h -/usr/local/include/tepl-6/tepl/tepl-panel-container.h -/usr/local/include/tepl-6/tepl/tepl-panel-item.h -/usr/local/include/tepl-6/tepl/tepl-panel-switcher-menu.h -/usr/local/include/tepl-6/tepl/tepl-panel.h -/usr/local/include/tepl-6/tepl/tepl-panel1.h -/usr/local/include/tepl-6/tepl/tepl-pango.h -/usr/local/include/tepl-6/tepl/tepl-prefs-dialog.h -/usr/local/include/tepl-6/tepl/tepl-prefs.h -/usr/local/include/tepl-6/tepl/tepl-progress-info-bar.h -/usr/local/include/tepl-6/tepl/tepl-settings.h -/usr/local/include/tepl-6/tepl/tepl-signal-group.h -/usr/local/include/tepl-6/tepl/tepl-space-drawer-prefs.h -/usr/local/include/tepl-6/tepl/tepl-status-menu-button.h -/usr/local/include/tepl-6/tepl/tepl-style-scheme-chooser-widget.h -/usr/local/include/tepl-6/tepl/tepl-tab-group.h -/usr/local/include/tepl-6/tepl/tepl-tab-label.h -/usr/local/include/tepl-6/tepl/tepl-tab-loading.h -/usr/local/include/tepl-6/tepl/tepl-tab-saving.h -/usr/local/include/tepl-6/tepl/tepl-tab.h -/usr/local/include/tepl-6/tepl/tepl-utils.h -/usr/local/include/tepl-6/tepl/tepl-view.h -/usr/local/include/tepl-6/tepl/tepl.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-abstract-factory.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-application-window.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-application.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-buffer.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-encoding-iconv.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-encoding.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-enum-types.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-file-chooser.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-file-loader.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-file-saver.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-file.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-fold-region.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-goto-line-bar.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-gutter-renderer-folds.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-info-bar.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-init.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-io-error-info-bars.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-iter.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-language-chooser-dialog.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-language-chooser-widget.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-language-chooser.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-line-column-indicator.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-menu-shell.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-metadata-manager.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-metadata.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-notebook.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-object-counters.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-overwrite-indicator.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-panel-container.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-panel-item.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-panel-switcher-menu.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-panel-switcher-notebook.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-panel.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-panel1.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-pango.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-prefs-dialog.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-prefs.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-progress-info-bar.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-settings.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-signal-group.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-space-drawer-prefs.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-status-menu-button.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-style-scheme-chooser-widget.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-tab-group.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-tab-label.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-tab-loading.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-tab-saving.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-tab.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-utils.h +/usr/local/include/libgedit-tepl-6/tepl/tepl-view.h +/usr/local/include/libgedit-tepl-6/tepl/tepl.h /usr/local/lib64/girepository-1.0/Tepl-6.typelib -/usr/local/lib64/libtepl-6.so -/usr/local/lib64/libtepl-6.so.4 -/usr/local/lib64/pkgconfig/tepl-6.pc +/usr/local/lib64/libgedit-tepl-6.so +/usr/local/lib64/libgedit-tepl-6.so.0 +/usr/local/lib64/pkgconfig/libgedit-tepl-6.pc /usr/local/share/gir-1.0/Tepl-6.gir -/usr/local/share/locale/ca/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/cs/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/da/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/de/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/el/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/en_GB/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/es/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/eu/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/fr/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/fur/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/hr/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/hu/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/id/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/ja/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/nl/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/pl/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/pt_BR/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/ro/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/ru/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/sl/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/sr/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/sv/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/tr/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/uk/LC_MESSAGES/tepl-6.mo -/usr/local/share/locale/zh_CN/LC_MESSAGES/tepl-6.mo +/usr/local/share/locale/ca/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/cs/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/da/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/de/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/el/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/en_GB/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/es/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/eu/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/fr/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/fur/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/hr/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/hu/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/id/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/ja/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/nl/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/pl/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/pt_BR/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/ro/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/ru/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/sl/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/sr/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/sv/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/tr/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/uk/LC_MESSAGES/libgedit-tepl-6.mo +/usr/local/share/locale/zh_CN/LC_MESSAGES/libgedit-tepl-6.mo diff --git a/manifest/x86_64/t/tesseract.filelist b/manifest/x86_64/t/tesseract.filelist index 865615d19..c5b8b8ef3 100644 --- a/manifest/x86_64/t/tesseract.filelist +++ b/manifest/x86_64/t/tesseract.filelist @@ -32,7 +32,7 @@ /usr/local/lib64/cmake/tesseract/TesseractTargets.cmake /usr/local/lib64/libcommon_training.so /usr/local/lib64/libtesseract.so -/usr/local/lib64/libtesseract.so.5.3.3 +/usr/local/lib64/libtesseract.so.5.4.1 /usr/local/lib64/libunicharset_training.so /usr/local/lib64/pkgconfig/tesseract.pc /usr/local/share/tessdata/configs/alto @@ -53,6 +53,7 @@ /usr/local/share/tessdata/configs/lstmbox /usr/local/share/tessdata/configs/lstmdebug /usr/local/share/tessdata/configs/makebox +/usr/local/share/tessdata/configs/page /usr/local/share/tessdata/configs/pdf /usr/local/share/tessdata/configs/quiet /usr/local/share/tessdata/configs/rebox diff --git a/manifest/x86_64/t/tracker3.filelist b/manifest/x86_64/t/tinysparql.filelist similarity index 81% rename from manifest/x86_64/t/tracker3.filelist rename to manifest/x86_64/t/tinysparql.filelist index 0db628998..b394a888d 100644 --- a/manifest/x86_64/t/tracker3.filelist +++ b/manifest/x86_64/t/tinysparql.filelist @@ -1,4 +1,10 @@ /usr/local/bin/tracker3 +/usr/local/bin/tracker3-endpoint +/usr/local/bin/tracker3-export +/usr/local/bin/tracker3-help +/usr/local/bin/tracker3-import +/usr/local/bin/tracker3-sparql +/usr/local/bin/tracker3-sql /usr/local/include/tracker-3.0/libtracker-sparql/tracker-batch.h /usr/local/include/tracker-3.0/libtracker-sparql/tracker-connection.h /usr/local/include/tracker-3.0/libtracker-sparql/tracker-cursor.h @@ -20,7 +26,7 @@ /usr/local/lib64/girepository-1.0/Tracker-3.0.typelib /usr/local/lib64/libtracker-sparql-3.0.so /usr/local/lib64/libtracker-sparql-3.0.so.0 -/usr/local/lib64/libtracker-sparql-3.0.so.0.600.0 +/usr/local/lib64/libtracker-sparql-3.0.so.0.703.0 /usr/local/lib64/pkgconfig/tracker-sparql-3.0.pc /usr/local/lib64/pkgconfig/tracker-testutils-3.0.pc /usr/local/lib64/tracker-3.0/libtracker-http-soup2.so @@ -40,12 +46,6 @@ /usr/local/lib64/tracker-3.0/trackertestutils/tracker-await-file /usr/local/lib64/tracker-3.0/trackertestutils/tracker-sandbox /usr/local/libexec/tracker-xdg-portal-3 -/usr/local/libexec/tracker3/endpoint -/usr/local/libexec/tracker3/export -/usr/local/libexec/tracker3/help -/usr/local/libexec/tracker3/import -/usr/local/libexec/tracker3/sparql -/usr/local/libexec/tracker3/sql /usr/local/share/bash-completion/completions/tracker3 /usr/local/share/dbus-1/services/org.freedesktop.portal.Tracker.service /usr/local/share/gir-1.0/Tracker-3.0.gir @@ -81,6 +81,7 @@ /usr/local/share/locale/it/LC_MESSAGES/tracker3.mo /usr/local/share/locale/ja/LC_MESSAGES/tracker3.mo /usr/local/share/locale/ka/LC_MESSAGES/tracker3.mo +/usr/local/share/locale/kab/LC_MESSAGES/tracker3.mo /usr/local/share/locale/kk/LC_MESSAGES/tracker3.mo /usr/local/share/locale/ko/LC_MESSAGES/tracker3.mo /usr/local/share/locale/lt/LC_MESSAGES/tracker3.mo @@ -113,23 +114,11 @@ /usr/local/share/locale/zh_CN/LC_MESSAGES/tracker3.mo /usr/local/share/locale/zh_HK/LC_MESSAGES/tracker3.mo /usr/local/share/locale/zh_TW/LC_MESSAGES/tracker3.mo -/usr/local/share/tracker3/ontologies/nepomuk/30-nie.description -/usr/local/share/tracker3/ontologies/nepomuk/30-nie.ontology -/usr/local/share/tracker3/ontologies/nepomuk/31-nao.description -/usr/local/share/tracker3/ontologies/nepomuk/31-nao.ontology -/usr/local/share/tracker3/ontologies/nepomuk/32-nco.description -/usr/local/share/tracker3/ontologies/nepomuk/32-nco.ontology -/usr/local/share/tracker3/ontologies/nepomuk/33-nfo.description -/usr/local/share/tracker3/ontologies/nepomuk/33-nfo.ontology -/usr/local/share/tracker3/ontologies/nepomuk/38-nmm.description -/usr/local/share/tracker3/ontologies/nepomuk/38-nmm.ontology -/usr/local/share/tracker3/ontologies/nepomuk/41-mfo.description -/usr/local/share/tracker3/ontologies/nepomuk/41-mfo.ontology -/usr/local/share/tracker3/ontologies/nepomuk/90-tracker.description -/usr/local/share/tracker3/ontologies/nepomuk/90-tracker.ontology -/usr/local/share/tracker3/ontologies/nepomuk/92-slo.description -/usr/local/share/tracker3/ontologies/nepomuk/92-slo.ontology -/usr/local/share/tracker3/ontologies/nepomuk/93-libosinfo.description -/usr/local/share/tracker3/ontologies/nepomuk/93-libosinfo.ontology +/usr/local/share/tracker3/commands/tracker-endpoint.desktop +/usr/local/share/tracker3/commands/tracker-export.desktop +/usr/local/share/tracker3/commands/tracker-help.desktop +/usr/local/share/tracker3/commands/tracker-import.desktop +/usr/local/share/tracker3/commands/tracker-sparql.desktop +/usr/local/share/tracker3/commands/tracker-sql.desktop /usr/local/share/vala/vapi/tracker-sparql-3.0.deps /usr/local/share/vala/vapi/tracker-sparql-3.0.vapi diff --git a/manifest/x86_64/u/uriparser.filelist b/manifest/x86_64/u/uriparser.filelist new file mode 100644 index 000000000..c478bc177 --- /dev/null +++ b/manifest/x86_64/u/uriparser.filelist @@ -0,0 +1,15 @@ +/usr/local/bin/uriparse +/usr/local/include/uriparser/Uri.h +/usr/local/include/uriparser/UriBase.h +/usr/local/include/uriparser/UriDefsAnsi.h +/usr/local/include/uriparser/UriDefsConfig.h +/usr/local/include/uriparser/UriDefsUnicode.h +/usr/local/include/uriparser/UriIp4.h +/usr/local/lib64/cmake/uriparser-0.9.8/uriparser-config-version.cmake +/usr/local/lib64/cmake/uriparser-0.9.8/uriparser-config.cmake +/usr/local/lib64/cmake/uriparser-0.9.8/uriparser-release.cmake +/usr/local/lib64/cmake/uriparser-0.9.8/uriparser.cmake +/usr/local/lib64/liburiparser.so +/usr/local/lib64/liburiparser.so.1 +/usr/local/lib64/liburiparser.so.1.0.31 +/usr/local/lib64/pkgconfig/liburiparser.pc diff --git a/manifest/x86_64/v/vte.filelist b/manifest/x86_64/v/vte.filelist index 24760c65b..4c745aa53 100644 --- a/manifest/x86_64/v/vte.filelist +++ b/manifest/x86_64/v/vte.filelist @@ -12,6 +12,7 @@ /usr/local/include/vte-2.91-gtk4/vte/vteterminal.h /usr/local/include/vte-2.91-gtk4/vte/vtetypebuiltins-gtk4.h /usr/local/include/vte-2.91-gtk4/vte/vtetypebuiltins.h +/usr/local/include/vte-2.91-gtk4/vte/vteuuid.h /usr/local/include/vte-2.91-gtk4/vte/vteversion.h /usr/local/include/vte-2.91/vte/vte.h /usr/local/include/vte-2.91/vte/vtedeprecated.h @@ -23,12 +24,13 @@ /usr/local/include/vte-2.91/vte/vteterminal.h /usr/local/include/vte-2.91/vte/vtetypebuiltins-gtk3.h /usr/local/include/vte-2.91/vte/vtetypebuiltins.h +/usr/local/include/vte-2.91/vte/vteuuid.h /usr/local/include/vte-2.91/vte/vteversion.h /usr/local/lib64/libvte-2.91-gtk4.so /usr/local/lib64/libvte-2.91-gtk4.so.0 /usr/local/lib64/libvte-2.91.so /usr/local/lib64/libvte-2.91.so.0 -/usr/local/lib64/libvte-2.91.so.0.7592.0 +/usr/local/lib64/libvte-2.91.so.0.7791.0 /usr/local/lib64/pkgconfig/vte-2.91-gtk4.pc /usr/local/lib64/pkgconfig/vte-2.91.pc /usr/local/libexec/vte-urlencode-cwd @@ -82,6 +84,7 @@ /usr/local/share/locale/it/LC_MESSAGES/vte-2.91.mo /usr/local/share/locale/ja/LC_MESSAGES/vte-2.91.mo /usr/local/share/locale/ka/LC_MESSAGES/vte-2.91.mo +/usr/local/share/locale/kab/LC_MESSAGES/vte-2.91.mo /usr/local/share/locale/kk/LC_MESSAGES/vte-2.91.mo /usr/local/share/locale/kn/LC_MESSAGES/vte-2.91.mo /usr/local/share/locale/ko/LC_MESSAGES/vte-2.91.mo @@ -133,3 +136,4 @@ /usr/local/share/locale/zh_CN/LC_MESSAGES/vte-2.91.mo /usr/local/share/locale/zh_HK/LC_MESSAGES/vte-2.91.mo /usr/local/share/locale/zh_TW/LC_MESSAGES/vte-2.91.mo +/usr/local/share/vte-2.91/terminfo/x/xterm-256color diff --git a/manifest/x86_64/x/xmlto.filelist b/manifest/x86_64/x/xmlto.filelist index 894af0bdf..5d636573b 100644 --- a/manifest/x86_64/x/xmlto.filelist +++ b/manifest/x86_64/x/xmlto.filelist @@ -1,7 +1,7 @@ /usr/local/bin/xmlif /usr/local/bin/xmlto -/usr/local/share/man/man1/xmlif.1.gz -/usr/local/share/man/man1/xmlto.1.gz +/usr/local/share/man/man1/xmlif.1.zst +/usr/local/share/man/man1/xmlto.1.zst /usr/local/share/xmlto/format/docbook/awt /usr/local/share/xmlto/format/docbook/dvi /usr/local/share/xmlto/format/docbook/epub diff --git a/packages/appstream.rb b/packages/appstream.rb index c648aa710..3170148f7 100644 --- a/packages/appstream.rb +++ b/packages/appstream.rb @@ -6,7 +6,7 @@ require 'buildsystems/meson' class Appstream < Meson description 'Provides a standard for creating app stores across distributions' homepage 'https://www.freedesktop.org/wiki/Distributions/AppStream/' - version '1.0.2' + version '1.0.3' license 'GPL' compatibility 'x86_64 aarch64 armv7l' source_url 'https://github.com/ximion/appstream.git' @@ -14,9 +14,9 @@ class Appstream < Meson binary_compression 'tar.zst' binary_sha256({ - aarch64: '72b90361542d1439be11816b6cc5f1b2259d3ab873a863499539b0cf65fd721a', - armv7l: '72b90361542d1439be11816b6cc5f1b2259d3ab873a863499539b0cf65fd721a', - x86_64: 'ed9f5df75ed2f6cda18c1a104ab2242dd83306f262d35cfd3808ce4661ca63e7' + aarch64: '1b507f791833e4d60dd494cf1fbea2cffe203373aed8063383956361e7f0f1d1', + armv7l: '1b507f791833e4d60dd494cf1fbea2cffe203373aed8063383956361e7f0f1d1', + x86_64: '23f37368bd8055286db5ff9dd7b1d7acd538896fc24a6bc0ef90ebb469b52c7e' }) depends_on 'cairo' # R diff --git a/packages/balena_etcher.rb b/packages/balena_etcher.rb index 301500973..5dddac3a3 100644 --- a/packages/balena_etcher.rb +++ b/packages/balena_etcher.rb @@ -20,7 +20,7 @@ class Balena_etcher < Package depends_on 'cairo' depends_on 'xzutils' depends_on 'libnotify' - depends_on 'nspr' + depends_on 'nss' depends_on 'libgconf' depends_on 'libxss' depends_on 'libcom_err' diff --git a/packages/bind.rb b/packages/bind.rb index 8546cf237..93868ec9f 100644 --- a/packages/bind.rb +++ b/packages/bind.rb @@ -3,18 +3,18 @@ require 'buildsystems/autotools' class Bind < Autotools description 'BIND is open source software that enables you to publish your Domain Name System (DNS) information on the Internet, and to resolve DNS queries for your users.' homepage 'https://www.isc.org/bind/' - version '9.20.0' + version '9.20.0-icu75.1' license 'Apache-2.0, BSD, BSD-2, GPL-2, HPND, ISC and MPL-2.0' compatibility 'all' - source_url "https://ftp.isc.org/isc/bind9/#{version}/bind-#{version}.tar.xz" + source_url "https://ftp.isc.org/isc/bind9/#{version.split('-').first}/bind-#{version.split('-').first}.tar.xz" source_sha256 'cc580998017b51f273964058e8cb3aa5482bc785243dea71e5556ec565a13347' binary_compression 'tar.zst' binary_sha256({ - aarch64: '271147a451d6a6c81231a7d1e2e74480f8e24e4cf26fc01dc9d4b40c918cf980', - armv7l: '271147a451d6a6c81231a7d1e2e74480f8e24e4cf26fc01dc9d4b40c918cf980', - i686: '8c4401d053912ccd13417d97edbaa8ba3a1c5c5bd6db0653f71d216f0d251f0b', - x86_64: '0e0bf08ec93ad2ca55f2e0393882eec31f70185adf0a0c1a93a641d436d95425' + aarch64: 'c38d7b10a9da318f591bfc9daddfa427f4559bf836ab7c4d85a85b9dff5e64f8', + armv7l: 'c38d7b10a9da318f591bfc9daddfa427f4559bf836ab7c4d85a85b9dff5e64f8', + i686: 'bf43eb116dbce313bb2842af5b34221c1d1ffbcc9da14f7b103638666d3bde9b', + x86_64: '15e82de63f95ca9ee4f48627e2240bac20e0991fb55b8e8006a5d5b8ac27d262' }) depends_on 'e2fsprogs' # R @@ -28,7 +28,7 @@ class Bind < Autotools depends_on 'libidn2' # R depends_on 'libnghttp2' # R depends_on 'libunistring' => :build - depends_on 'liburcu' => :build + depends_on 'liburcu' # R depends_on 'libuv' # R depends_on 'libxml2' # R depends_on 'ncurses' => :build diff --git a/packages/boost.rb b/packages/boost.rb index f2d97c67b..c3e505eb0 100644 --- a/packages/boost.rb +++ b/packages/boost.rb @@ -3,7 +3,7 @@ require 'package' class Boost < Package description 'Boost provides free peer-reviewed portable C++ source libraries.' homepage 'https://www.boost.org/' - version '1.85.0-py3.12' + version '1.85.0-icu75.1-py3.12' license 'Boost-1.0' compatibility 'all' source_url "https://boostorg.jfrog.io/artifactory/main/release/#{version.split('-').first}/source/boost_#{version.split('-').first.gsub('.', '_')}.tar.bz2" @@ -11,10 +11,10 @@ class Boost < Package binary_compression 'tar.zst' binary_sha256({ - aarch64: 'b4db9eb12101b140b6071bcf65e24e7d541728f9e64f4c71fa3dff3adf1ac208', - armv7l: 'b4db9eb12101b140b6071bcf65e24e7d541728f9e64f4c71fa3dff3adf1ac208', - i686: '2d68696fe8469881653e45579750952424537e6e2f7aad0c19957a3f570488e0', - x86_64: '8043b7745e036cf75717b1c8b59700d41fdff0479536b375a71a6054ce73d3d9' + aarch64: '7d0ee487577eace4b5fd7e479dc9c08891036b122f198ccd47b209147b38cbe9', + armv7l: '7d0ee487577eace4b5fd7e479dc9c08891036b122f198ccd47b209147b38cbe9', + i686: 'c32bc6ac43f9bfc06787cfb034cb0c38c91af5b4297ded00702ce491cc6f7a3f', + x86_64: '61413bd082a6e53f2ca3da765c39df97a5fbd7c727e69666cfa10a2c667e9a7a' }) depends_on 'bzip2' # R diff --git a/packages/buildessential.rb b/packages/buildessential.rb index 99be20ab0..707f97277 100644 --- a/packages/buildessential.rb +++ b/packages/buildessential.rb @@ -3,7 +3,7 @@ require 'package' class Buildessential < Package description 'A collection of tools essential to compile and build software.' homepage 'SKIP' - version '1.33' + version '1.34' license 'GPL-3+' compatibility 'all' @@ -171,6 +171,10 @@ class Buildessential < Package depends_on 'ruby_rubocop' # Add ruby_concurrent_ruby depends_on 'ruby_concurrent_ruby' + # For use in ruby prompts. + depends_on 'ruby_highline' + # For crew debugging. + depends_on 'ruby_pry_byebug' if CREW_IN_CONTAINER # Code quality depends_on 'py3_pre_commit' diff --git a/packages/cairo.rb b/packages/cairo.rb index a14d88ea9..df4d5fd93 100644 --- a/packages/cairo.rb +++ b/packages/cairo.rb @@ -3,17 +3,17 @@ require 'buildsystems/meson' class Cairo < Meson description 'Cairo is a 2D graphics library with support for multiple output devices.' homepage 'https://www.cairographics.org' - version '1.18.1-27c8ad5' + version '1.18.1-43e08ae' license 'LGPL-2.1 or MPL-1.1' compatibility 'x86_64 aarch64 armv7l' source_url 'https://gitlab.freedesktop.org/cairo/cairo.git' - git_hashtag '27c8ad5cd8591db742dbf2000ca0d2b08b2c3675' + git_hashtag '43e08aed8b70655d7e5834e81fa87fd353e27e1c' binary_compression 'tar.zst' binary_sha256({ - aarch64: 'b3f20a3551db00c8054a648f4b9efdd06becac58f4e95806e17f959a279c07ab', - armv7l: 'b3f20a3551db00c8054a648f4b9efdd06becac58f4e95806e17f959a279c07ab', - x86_64: '9f432c84a29a7de5eb6014b911eeb58fa96cd036ac5c2b57d35d99c07eeedc1c' + aarch64: 'a62399b2399be1666777e3840ddb61e0f3f7295f67f63bfac88c62d7b0bff964', + armv7l: 'a62399b2399be1666777e3840ddb61e0f3f7295f67f63bfac88c62d7b0bff964', + x86_64: 'a979754d2b6d6ad19fa0454032b6cdbb53184f315f52b5f8eab86e4cf2e77291' }) depends_on 'fontconfig' # R diff --git a/packages/caja.rb b/packages/caja.rb index 688cb3566..7ddc0cfcd 100644 --- a/packages/caja.rb +++ b/packages/caja.rb @@ -6,17 +6,17 @@ require 'buildsystems/autotools' class Caja < Autotools description 'Caja file manager for the MATE desktop' homepage 'https://mate-desktop.org' - version '1.28.0' + version '1.28.0-icu75.1' license 'GPL-2+ LGPL-2+' compatibility 'x86_64 aarch64 armv7l' - source_url "https://pub.mate-desktop.org/releases/#{version.rpartition('.')[0]}/caja-#{version}.tar.xz" + source_url "https://pub.mate-desktop.org/releases/#{version.split('-').first.rpartition('.')[0]}/caja-#{version.split('-').first}.tar.xz" source_sha256 '1e3014ce1455817ec2ef74d09efdfb6835d8a372ed9a16efb5919ef7b821957a' binary_compression 'tar.zst' binary_sha256({ - aarch64: '0b9f66473078dd9f81b039fe44b5547f66f2404f0858e09cc46d5e1127f8a25d', - armv7l: '0b9f66473078dd9f81b039fe44b5547f66f2404f0858e09cc46d5e1127f8a25d', - x86_64: '74eff4aaec8f5d73efb4f4e8f25f8cfb9b3b2dcb919c2a3f1e6034868cca9708' + aarch64: '0a5706de0ac174f4eb8c2015a800a04bd1902d82913528e4084f66cf515c3e7c', + armv7l: '0a5706de0ac174f4eb8c2015a800a04bd1902d82913528e4084f66cf515c3e7c', + x86_64: 'c568946505c011070dd603fe5ecc5b5354ecadf04a58e83dc34d0bde7d323e8a' }) depends_on 'at_spi2_core' # R diff --git a/packages/crew_profile_base.rb b/packages/crew_profile_base.rb index b3752fd31..0a80cfd40 100644 --- a/packages/crew_profile_base.rb +++ b/packages/crew_profile_base.rb @@ -3,11 +3,11 @@ require 'package' class Crew_profile_base < Package description 'Crew-profile-base sets up Chromebrew\'s environment capabilities.' homepage 'https://github.com/chromebrew/crew-profile-base' - version '0.0.20' + version '0.0.21' license 'GPL-3+' compatibility 'all' source_url "https://github.com/chromebrew/crew-profile-base/archive/refs/tags/#{version}.tar.gz" - source_sha256 '37f115f98259e2925f8737db13e9483df3fb0267f35fc27843ee274c5ab822bf' + source_sha256 'd2f26488edc6f32ec7026f687c299fbfc2fbdd08bad093b4ae9598507f97959d' no_compile_needed print_source_bashrc diff --git a/packages/dehtml.rb b/packages/dehtml.rb index 0bc6dbf51..8cdea3db9 100644 --- a/packages/dehtml.rb +++ b/packages/dehtml.rb @@ -1,23 +1,23 @@ -require 'package' +require 'buildsystems/autotools' -class Dehtml < Package +class Dehtml < Autotools description 'Dehtml removes HTML constructs from documents for indexing, spell checking and so on.' homepage 'http://www.moria.de/~michael/dehtml/' - version '1.8' + version '1.8-1' license 'GPL-2' compatibility 'all' source_url 'http://www.moria.de/~michael/dehtml/dehtml-1.8.tar.gz' source_sha256 'a00e86643b0aa73861e9d8d619a80370f0f99519d34ce12459fab77f5f6b5bde' - binary_compression 'tar.xz' + binary_compression 'tar.zst' binary_sha256({ - aarch64: '01a111714310dcf69cbdc0cc132ce03151742939708911dabe9b6af5ec9c5c5b', - armv7l: '01a111714310dcf69cbdc0cc132ce03151742939708911dabe9b6af5ec9c5c5b', - i686: '1f0c1048aeb7170a1d21e57d89c573b3a871b98026ef1885eb92fbcccbbf68b6', - x86_64: '76346ded317eea0d12ac0d02dbf8947f4b3251333dcdfb1af5fbab03eb334e66' + aarch64: 'bf71a6d20c294963a7dd9ac875d0d4b03df747664de408cf72c958e26d706195', + armv7l: 'bf71a6d20c294963a7dd9ac875d0d4b03df747664de408cf72c958e26d706195', + i686: '2484ea4c57eed480d14ea7f33b2ed75b813adcf92bbaaa43b45acff954f4832e', + x86_64: '02b2bb63225eee9a2eb464fd3f663f9d692e4575d0b83e203a6f54e61446d04d' }) - depends_on 'icu4c' + depends_on 'glibc' # R def self.build system "./configure --prefix=#{CREW_DEST_PREFIX}" diff --git a/packages/docbook_xsl.rb b/packages/docbook_xsl.rb index a57a7ff8f..1c6897a3b 100644 --- a/packages/docbook_xsl.rb +++ b/packages/docbook_xsl.rb @@ -3,11 +3,10 @@ require 'package' class Docbook_xsl < Package description 'The DocBook XSL Stylesheets package contains XSL stylesheets. These are useful for performing transformations on XML DocBook files.' homepage 'https://github.com/docbook/xslt10-stylesheets' - @_ver = '1.79.2' - version "#{@_ver}-4" + version '1.79.2-4' license 'custom' compatibility 'all' - source_url "https://github.com/docbook/xslt10-stylesheets/releases/download/release/#{@_ver}/docbook-xsl-#{@_ver}.zip" + source_url "https://github.com/docbook/xslt10-stylesheets/releases/download/release/#{version.split('-').first}/docbook-xsl-#{version.split('-').first}.zip" source_sha256 '853dce096f5b32fe0b157d8018d8fecf92022e9c79b5947a98b365679c7e31d7' binary_compression 'tar.zst' @@ -21,6 +20,7 @@ class Docbook_xsl < Package depends_on 'docbook_xml' depends_on 'libxml2' depends_on 'xmlcatmgr' + print_source_bashrc def self.patch downloader 'https://github.com/archlinux/svntogit-packages/raw/packages/docbook-xsl/trunk/765567_non-recursive_string_subst.patch', diff --git a/packages/evolution_data_server.rb b/packages/evolution_data_server.rb index 87a2bc570..0ad5a83ea 100644 --- a/packages/evolution_data_server.rb +++ b/packages/evolution_data_server.rb @@ -3,17 +3,17 @@ require 'buildsystems/cmake' class Evolution_data_server < CMake description 'Centralized access to appointments and contacts' homepage 'https://wiki.gnome.org/Apps/Evolution' - version '3.52.0' + version '3.52.4-icu75.1' license 'LGPL-2 or LGPL-3, BSD and Sleepycat' compatibility 'x86_64 aarch64 armv7l' source_url 'https://gitlab.gnome.org/GNOME/evolution-data-server.git' - git_hashtag version + git_hashtag version.split('-').first binary_compression 'tar.zst' binary_sha256({ - aarch64: '3f7032d95995a85d6c5873fc77936228ea269cecf33c2ea0f8b3edb64d373589', - armv7l: '3f7032d95995a85d6c5873fc77936228ea269cecf33c2ea0f8b3edb64d373589', - x86_64: 'd25bfa3f764b50d9b50de1650f7b31d5e0e119b8098fe5dae5d37ed07fc2694c' + aarch64: '412f9158079a8854043b61b7af86f441aafd0df26c495405d27931a95d708899', + armv7l: '412f9158079a8854043b61b7af86f441aafd0df26c495405d27931a95d708899', + x86_64: 'c62e7f447c0f9d84ae27b3a83b52d042e3190377d582b0cfd99fe054e6dbc445' }) depends_on 'at_spi2_core' # R diff --git a/packages/fontconfig.rb b/packages/fontconfig.rb index e8540a854..e648c002d 100644 --- a/packages/fontconfig.rb +++ b/packages/fontconfig.rb @@ -4,17 +4,17 @@ require 'buildsystems/meson' class Fontconfig < Meson description 'Fontconfig is a library for configuring and customizing font access.' homepage 'https://www.freedesktop.org/wiki/Software/fontconfig/' - version '2.15.0' + version '2.15.0-1' license 'MIT' compatibility 'x86_64 aarch64 armv7l' source_url 'https://gitlab.freedesktop.org/fontconfig/fontconfig.git' - git_hashtag version + git_hashtag version.split('-').first binary_compression 'tar.zst' binary_sha256({ - aarch64: 'f5af985710bd151112adb8eb55ed194aee1e6ed1226479e0d0bb5bd6fb9849ef', - armv7l: 'f5af985710bd151112adb8eb55ed194aee1e6ed1226479e0d0bb5bd6fb9849ef', - x86_64: '0be5e2b39cb0b9aba7255f05c76fd38b2b43e6ebad5176b748fea953d8dad4ac' + aarch64: 'db4ecc4a5e66ec68761a21f1112867d185712e337514928ca93dc40ba7e386e6', + armv7l: 'db4ecc4a5e66ec68761a21f1112867d185712e337514928ca93dc40ba7e386e6', + x86_64: '522fd2617e68a7fb67502c36b1accdf8ada922b895c8ab767a9fb36a69eb2585' }) depends_on 'expat' # R diff --git a/packages/freerdp.rb b/packages/freerdp.rb index b73a96dd7..7aa79b8ee 100644 --- a/packages/freerdp.rb +++ b/packages/freerdp.rb @@ -1,13 +1,14 @@ -require 'package' +# Build failure reported at https://github.com/FreeRDP/FreeRDP/issues/10466 +require 'buildsystems/cmake' -class Freerdp < Package +class Freerdp < CMake description 'FreeRDP is a free implementation of the Remote Desktop Protocol.' homepage 'https://www.freerdp.com/' - version '2.10.0-2a72946' + version '3.7.0-icu75.1' license 'Apache-2.0' compatibility 'x86_64 aarch64 armv7l' source_url 'https://github.com/FreeRDP/FreeRDP.git' - git_hashtag '2a72946d18d813daffa574b26c686c3df479a447' + git_hashtag version.split('-').first binary_compression 'tar.zst' binary_sha256({ @@ -31,11 +32,13 @@ class Freerdp < Package depends_on 'gstreamer' => :build depends_on 'harfbuzz' # R depends_on 'icu4c' # R + depends_on 'json_c' => :build depends_on 'krb5' # R + depends_on 'libbacktrace' => :build depends_on 'libfdk_aac' => :build depends_on 'libjpeg_turbo' # R + depends_on 'libmbedtls' => :build depends_on 'libmp3lame' # R - depends_on 'libsdl2' # R depends_on 'libsoxr' # R depends_on 'libusb' # R depends_on 'libx11' # R @@ -55,16 +58,19 @@ class Freerdp < Package depends_on 'openh264' # R depends_on 'openssl' # R depends_on 'pulseaudio' # R + # depends_on 'sdl2_image' => :build + depends_on 'sdl2_ttf' => :build + depends_on 'sdl3' => :build + depends_on 'sdl3_ttf' => :build depends_on 'sommelier' # L + depends_on 'uriparser' => :build depends_on 'wayland' # R + depends_on 'webkit2gtk_4_1' => :build depends_on 'xdg_base' # L depends_on 'xmlto' => :build depends_on 'xprop' => :build - def self.build - system "env GSS_ROOT_FLAVOUR=MIT \ - mold -run cmake -B builddir #{CREW_CMAKE_OPTIONS} \ - -DCMAKE_SKIP_INSTALL_RPATH=ON \ + cmake_options "-DCMAKE_SKIP_INSTALL_RPATH=ON \ -DDOCBOOKXSL_DIR=#{CREW_PREFIX}/share/xml/docbook/xsl-stylesheets-1.79.2 \ -DWITH_CAIRO=ON \ -DWITH_CHANNELS=ON \ @@ -79,20 +85,14 @@ class Freerdp < Package -DWITH_JPEG=ON \ -DWITH_LAME=ON \ -DWITH_LIBSYSTEMD=OFF \ + -DWITH_MBEDTLS=ON \ -DWITH_OPENH264=ON \ -DWITH_PULSE=ON \ -DWITH_SERVER=ON \ -DWITH_SOXR=ON \ -DWITH_SWSCALE=ON \ - -DWITH_WAYLAND=ON \ - -Wno-dev \ - -G Ninja" - system "#{CREW_NINJA} -C builddir" - end - - def self.install - system "DESTDIR=#{CREW_DEST_DIR} #{CREW_NINJA} -C builddir install" - end + -DUSE_UNWIND=OFF \ + -DWITH_WAYLAND=ON" def self.postinstall puts diff --git a/packages/freetype.rb b/packages/freetype.rb index 75d193f91..2406cea1a 100644 --- a/packages/freetype.rb +++ b/packages/freetype.rb @@ -4,17 +4,17 @@ require 'buildsystems/meson' class Freetype < Meson description 'FreeType is a freely available software library to render fonts.' homepage 'https://freetype.org/' - version '2.13.2' # Update freetype in harfbuzz when updating freetype + version '2.13.2-1' # Update freetype in harfbuzz when updating freetype license 'FTL or GPL-2+' compatibility 'x86_64 aarch64 armv7l' source_url 'https://gitlab.freedesktop.org/freetype/freetype.git' - git_hashtag "VER-#{version.tr('.', '-')}" + git_hashtag "VER-#{version.split('-').first.tr('.', '-')}" binary_compression 'tar.zst' binary_sha256({ - aarch64: '1910229405d27c90a8dabeba5be6ea3884bdf5bfe48a6a1978a7a40af7879246', - armv7l: '1910229405d27c90a8dabeba5be6ea3884bdf5bfe48a6a1978a7a40af7879246', - x86_64: '8136147b106facdb16d82bdf3683615d68da9fd8735cab9d8a47e7c564520eae' + aarch64: '958e0cac92d47841889a468d33ac48237131ccde495953634a130e69399f1ed8', + armv7l: '958e0cac92d47841889a468d33ac48237131ccde495953634a130e69399f1ed8', + x86_64: 'fdc286d7ea8b83d6100b1c77a3fca43f6bbc7bc5f0a6fc627e7e1dd502f78389' }) depends_on 'brotli' # R diff --git a/packages/geany_plugins.rb b/packages/geany_plugins.rb index 8a7520718..553a6321f 100644 --- a/packages/geany_plugins.rb +++ b/packages/geany_plugins.rb @@ -3,22 +3,21 @@ require 'buildsystems/autotools' class Geany_plugins < Autotools description 'Geany plugins.' homepage 'https://www.geany.org/' - version '2.0.0' + version '2.0.0-icu75.1' license 'GPL-2' compatibility 'x86_64 aarch64 armv7l' source_url 'https://github.com/geany/geany-plugins.git' - git_hashtag version + git_hashtag version.split('-').first binary_compression 'tar.zst' binary_sha256({ - aarch64: '712ed5e1737c8ae1bae903a36c182433ab01d829ec809e292d506fb1d9b2483f', - armv7l: '712ed5e1737c8ae1bae903a36c182433ab01d829ec809e292d506fb1d9b2483f', - x86_64: 'bd9e2dafbefab9bab849b93243ecc1e39174f0914267d3db55b7f1be5eda70cd' + aarch64: '59df5d161cebaef8831a1147adfdef7c28580d2c6cb0201ec3f9fe24141d8b27', + armv7l: '59df5d161cebaef8831a1147adfdef7c28580d2c6cb0201ec3f9fe24141d8b27', + x86_64: 'a1e96bedcad6e4417dc2dbe3086688ff6ff1532ce2d799dcd83212c23c8fddb5' }) depends_on 'aspell' # R depends_on 'at_spi2_core' # R - depends_on 'cairo' => :build depends_on 'cairo' # R depends_on 'enchant' # R depends_on 'gcc_lib' # R @@ -38,4 +37,7 @@ class Geany_plugins < Autotools depends_on 'vte' # R depends_on 'webkit2gtk_4' # R depends_on 'zlib' # R + + # try to avoid gcc14 issues. + configure_options '--disable-projectorganizer' end diff --git a/packages/gettext.rb b/packages/gettext.rb index d285a36db..99dcbb93f 100644 --- a/packages/gettext.rb +++ b/packages/gettext.rb @@ -3,7 +3,7 @@ require 'buildsystems/autotools' class Gettext < Autotools description 'GNU gettext utilities are a set of tools that provides a framework to help other GNU packages produce multi-lingual messages.' homepage 'https://www.gnu.org/software/gettext/' - version '0.22.5' + version '0.22.5-icu75.1' license 'GPL-3+ and LGPL-2.1+' compatibility 'all' source_url 'https://ftpmirror.gnu.org/gettext/gettext-0.22.5.tar.lz' @@ -11,10 +11,10 @@ class Gettext < Autotools binary_compression 'tar.zst' binary_sha256({ - aarch64: 'c3b5f9dc11b4158694bd2ff9b06464fe5218dceb99720248178030a51efbc08a', - armv7l: 'c3b5f9dc11b4158694bd2ff9b06464fe5218dceb99720248178030a51efbc08a', - i686: '5a6a375b91d4546ae573fc138cbf2a7f686552bca019ac0fa3c129dbec034795', - x86_64: '4129d6eb6791bafb1695e749d4622dc9ae85d702d3473a48aacc47a803a8fa92' + aarch64: '0528c0d1398c393ead61741a1fd473821275a61ad75e39c8130bd4db6b170a29', + armv7l: '0528c0d1398c393ead61741a1fd473821275a61ad75e39c8130bd4db6b170a29', + i686: '40f499bae4e3540779f998323178f72ff4f32cf4006a99518cb88c4d948f7069', + x86_64: 'f8440ef3e6522ed8649a8aff0646d612a5b97908842b6c570c8795ba7ca2337c' }) depends_on 'acl' # R @@ -24,6 +24,7 @@ class Gettext < Autotools depends_on 'icu4c' # R depends_on 'libunistring' # R depends_on 'libxml2' # R + depends_on 'ncurses' # R depends_on 'openjdk8' => :build depends_on 'zlib' # R @@ -34,5 +35,6 @@ class Gettext < Autotools --with-pic \ --without-included-gettext' - run_tests + # cldr-plurals-1 test fails with icu75.1 + # run_tests end diff --git a/packages/glib.rb b/packages/glib.rb index e089fad72..d8551c31a 100644 --- a/packages/glib.rb +++ b/packages/glib.rb @@ -3,7 +3,7 @@ require 'buildsystems/meson' class Glib < Meson description 'GLib provides the core application building blocks for libraries and applications written in C.' homepage 'https://docs.gtk.org/glib/' - version '2.80.0' + version '2.81.1' license 'LGPL-2.1' compatibility 'all' source_url 'https://gitlab.gnome.org/GNOME/glib.git' @@ -11,10 +11,10 @@ class Glib < Meson binary_compression 'tar.zst' binary_sha256({ - aarch64: '873ece37b177e99afc33e0aeb078f84753194a055330ea6db3f7d45720cf705f', - armv7l: '873ece37b177e99afc33e0aeb078f84753194a055330ea6db3f7d45720cf705f', - i686: '8d5c84282eb479f7afeb1e312866fcc6eca37ee2a1aba578d8a554e66cf6a3e2', - x86_64: '69ccb81979e4d8837289f11d2142878c9823b4386128c78ef5f251284b20954e' + aarch64: '57c2786ced63e26c717e0e7951dc8960df8e3887de8bdedc94d2186aa59c3087', + armv7l: '57c2786ced63e26c717e0e7951dc8960df8e3887de8bdedc94d2186aa59c3087', + i686: 'aa85475d828e1c4469567defb6fd484cef6a8d716784ca9e8f53e458e95d4a7c', + x86_64: '10a5a19bba806274e5aef833cd465c8b7f531ca74af37f77a05c208850408282' }) depends_on 'elfutils' # R diff --git a/packages/gnome_docking_library.rb b/packages/gnome_docking_library.rb index 228165719..8bf093cd2 100644 --- a/packages/gnome_docking_library.rb +++ b/packages/gnome_docking_library.rb @@ -1,13 +1,15 @@ +# Currently broken with gcc 14. +# See https://gitlab.gnome.org/GNOME/gdl/-/issues/9 require 'buildsystems/autotools' class Gnome_docking_library < Autotools description 'GUsb is a GObject wrapper for libusb1' homepage 'https://www.gnome.org/' - version '3.40.0' + version '3.40.0-icu75.1' license 'LGPL-2.1+' compatibility 'x86_64 aarch64 armv7l' source_url 'https://gitlab.gnome.org/GNOME/gdl.git' - git_hashtag "GDL_#{version.gsub('.', '_')}" + git_hashtag "GDL_#{version.split('-').first.gsub('.', '_')}" binary_compression 'tar.zst' binary_sha256({ @@ -23,7 +25,6 @@ class Gnome_docking_library < Autotools depends_on 'glib' # R depends_on 'gnome_common' => :build depends_on 'gtk3' # R - depends_on 'gtk_doc' => :build depends_on 'harfbuzz' # R depends_on 'icu4c' # R depends_on 'libxml2' # R @@ -31,4 +32,12 @@ class Gnome_docking_library < Autotools depends_on 'zlib' # R gnome + + def self.patch + # Fix libxml compat. + downloader 'https://gitlab.gnome.org/GNOME/gdl/-/merge_requests/4.patch', '3bbd9118ea685bd3b161afdb6653825bf96a844551dadaa024c1fa0e57617f57' + system 'patch -Np1 -i 4.patch' + end + + configure_options '--disable-gtk-doc' end diff --git a/packages/gnome_text_editor.rb b/packages/gnome_text_editor.rb index 9dbbdb4ea..15036299a 100644 --- a/packages/gnome_text_editor.rb +++ b/packages/gnome_text_editor.rb @@ -3,17 +3,17 @@ require 'buildsystems/meson' class Gnome_text_editor < Meson description 'GNOME Text Editor' homepage 'https://gitlab.gnome.org/GNOME/gnome-text-editor' - version '46.0' + version '47.beta' license 'GPL-3' compatibility 'x86_64 aarch64 armv7l' source_url 'https://gitlab.gnome.org/GNOME/gnome-text-editor.git' - git_hashtag version + git_hashtag version.split('-').first binary_compression 'tar.zst' binary_sha256({ - aarch64: '8b870b1ce0e78ab2c07b37c3b1681912f49510dc02a771defb13832ae901be45', - armv7l: '8b870b1ce0e78ab2c07b37c3b1681912f49510dc02a771defb13832ae901be45', - x86_64: 'fd1ac48f213c3ca2c7f3f51bd5d2a2b5a470cec94876fc6fc87e5aa66f41cb12' + aarch64: '4a054cfb5030a01f538cea822bb24986bae41d413ba73d07c55de0e2fbe4803b', + armv7l: '4a054cfb5030a01f538cea822bb24986bae41d413ba73d07c55de0e2fbe4803b', + x86_64: '4771dc0e77de5069289161792a1101d0be593df9866315b90755180a2f9b8562' }) depends_on 'cairo' # R @@ -42,6 +42,7 @@ class Gnome_text_editor < Meson depends_on 'pcre2' # R depends_on 'pcre' => :build depends_on 'pygobject' => :build + depends_on 'sassc' => :build depends_on 'vala' => :build depends_on 'vulkan_icd_loader' # R depends_on 'yelp_tools' => :build diff --git a/packages/gobject_introspection.rb b/packages/gobject_introspection.rb index 10e90010e..ee1bc5f2e 100644 --- a/packages/gobject_introspection.rb +++ b/packages/gobject_introspection.rb @@ -3,18 +3,17 @@ require 'buildsystems/meson' class Gobject_introspection < Meson description 'GObject introspection is a middleware layer between C libraries (using GObject) and language bindings.' homepage 'https://wiki.gnome.org/action/show/Projects/GObjectIntrospection' - @_ver = '1.80.0' - version "#{@_ver}-py3.12" + version '1.80.1-py3.12' license 'LGPL-2+ and GPL-2+' compatibility 'x86_64 aarch64 armv7l' source_url 'https://gitlab.gnome.org/GNOME/gobject-introspection.git' - git_hashtag @_ver + git_hashtag version.split('-').first binary_compression 'tar.zst' binary_sha256({ - aarch64: '0922ab24d17e086daf1078aba52e8437f192baeb203643912bb7832c67d6eb8d', - armv7l: '0922ab24d17e086daf1078aba52e8437f192baeb203643912bb7832c67d6eb8d', - x86_64: '8686243750b6c522da0a5540b81c1ccfb616118c4a141d25b58e79ecdf7cd03d' + aarch64: 'a747463eebb4e9fa8dc3911e048ab7ea76657bab5d435df31e2211f425d2525f', + armv7l: 'a747463eebb4e9fa8dc3911e048ab7ea76657bab5d435df31e2211f425d2525f', + x86_64: '00e09ff95436dfe99998c60d968b2364affca461f1034d8bf38e5f9d2790e616' }) depends_on 'gcc_lib' # R diff --git a/packages/google_chrome.rb b/packages/google_chrome.rb index ce0581d78..793fbf7d6 100644 --- a/packages/google_chrome.rb +++ b/packages/google_chrome.rb @@ -11,7 +11,7 @@ class Google_chrome < Package source_url "https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-#{@update_channel}/google-chrome-#{@update_channel}_#{@version}_amd64.deb" source_sha256 'a4c18b49a8b80bf5e27c5911994a13446ff77444c62575a125b7b0b5bfeccd58' - depends_on 'nspr' + depends_on 'nss' depends_on 'cairo' depends_on 'gtk3' depends_on 'expat' diff --git a/packages/google_chrome_beta.rb b/packages/google_chrome_beta.rb index 5ba1354d0..50cae3265 100644 --- a/packages/google_chrome_beta.rb +++ b/packages/google_chrome_beta.rb @@ -11,7 +11,7 @@ class Google_chrome_beta < Package source_url "https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-#{@update_channel}/google-chrome-#{@update_channel}_#{@version}_amd64.deb" source_sha256 'ca9bce2d3c8b6b2e092f28a73af01e7d95de093108ab40609e0390d0dd1a4ba3' - depends_on 'nspr' + depends_on 'nss' depends_on 'cairo' depends_on 'gtk3' depends_on 'expat' diff --git a/packages/google_chrome_unstable.rb b/packages/google_chrome_unstable.rb index f97870a8d..cf83f614f 100644 --- a/packages/google_chrome_unstable.rb +++ b/packages/google_chrome_unstable.rb @@ -11,7 +11,7 @@ class Google_chrome_unstable < Package source_url "https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-#{@update_channel}/google-chrome-#{@update_channel}_#{@version}_amd64.deb" source_sha256 '04ecad6568443416e347833cd9733b9866bb5b0465e34a93d6442eb75bc51d26' - depends_on 'nspr' + depends_on 'nss' depends_on 'cairo' depends_on 'gtk3' depends_on 'expat' diff --git a/packages/google_webdesigner.rb b/packages/google_webdesigner.rb index ba4426a32..63052ed58 100644 --- a/packages/google_webdesigner.rb +++ b/packages/google_webdesigner.rb @@ -9,7 +9,7 @@ class Google_webdesigner < Package source_url 'https://dl.google.com/linux/webdesigner/deb/pool/main/g/google-webdesigner/google-webdesigner_14.0.1.0-1_amd64.deb' source_sha256 'c22385674a38b5693f8933fb09c61ae6d8f861cadad96d390d94549787d0ec97' - depends_on 'nspr' + depends_on 'nss' depends_on 'cairo' depends_on 'gtk3' depends_on 'expat' diff --git a/packages/graphicsmagick.rb b/packages/graphicsmagick.rb index d2825b9e9..4c388459a 100644 --- a/packages/graphicsmagick.rb +++ b/packages/graphicsmagick.rb @@ -3,17 +3,17 @@ require 'package' class Graphicsmagick < Package description 'GraphicsMagick is the swiss army knife of image processing.' homepage 'http://www.graphicsmagick.org/' - version '1.3.40' + version '1.3.43-icu75.1' license 'MIT' compatibility 'x86_64 aarch64 armv7l' - source_url 'https://sourceforge.net/projects/graphicsmagick/files/graphicsmagick/1.3.40/GraphicsMagick-1.3.40.tar.zst' - source_sha256 '1c86bc8cdcfb7daa6d34940e1bccf82c201a27ecdcc65e8bb1089a4da6f2cfcc' + source_url 'https://sourceforge.net/projects/graphicsmagick/files/graphicsmagick/1.3.43/GraphicsMagick-1.3.43.tar.xz' + source_sha256 '2b88580732cd7e409d9e22c6116238bef4ae06fcda11451bf33d259f9cbf399f' binary_compression 'tar.zst' binary_sha256({ - aarch64: '37e665f7b389b8f7a27cff67f10efbd5210e19e2f5bbe45167c6b11e2cd85eff', - armv7l: '37e665f7b389b8f7a27cff67f10efbd5210e19e2f5bbe45167c6b11e2cd85eff', - x86_64: 'a63ecd56ae08387fbd9d8db5817ab7a358d5894f8901f859d51609f513a87601' + aarch64: 'aeff59b26a27af04fd89485d29b4375be3b526eaebef964a22ec8c027082467e', + armv7l: 'aeff59b26a27af04fd89485d29b4375be3b526eaebef964a22ec8c027082467e', + x86_64: 'd10dba42f7cdf317ef437c4fdd6500d7cce82eb1fc56e9596e1a494f3b13cda1' }) depends_on 'brotli' # R diff --git a/packages/gspell.rb b/packages/gspell.rb index db75424d0..6c4bfe6ea 100644 --- a/packages/gspell.rb +++ b/packages/gspell.rb @@ -1,19 +1,19 @@ -require 'buildsystems/autotools' +require 'buildsystems/meson' -class Gspell < Autotools +class Gspell < Meson description 'a flexible API to implement the spell checking in a GTK+ application' homepage 'https://wiki.gnome.org/Projects/gspell' - version '1.12.2-87b8146' + version '1.13.1-icu75.1' license 'LGPL-2.1+' compatibility 'x86_64 aarch64 armv7l' source_url 'https://gitlab.gnome.org/GNOME/gspell.git' - git_hashtag '87b8146864a130bc1c85c57baa211df160ae564c' + git_hashtag version.split('-').first binary_compression 'tar.zst' binary_sha256({ - aarch64: 'eb9f5a0b0d0dd27050ec4d953c648cc87c47610ca19968eebfedc699e417e998', - armv7l: 'eb9f5a0b0d0dd27050ec4d953c648cc87c47610ca19968eebfedc699e417e998', - x86_64: '3350a5e32bfe4783f680aa54091072f2955824f1271de4336678d519a02c947c' + aarch64: '6ac757e5b1395d38c5c0e71c73520221da80ba1eece3e1b9a193af908ca32fae', + armv7l: '6ac757e5b1395d38c5c0e71c73520221da80ba1eece3e1b9a193af908ca32fae', + x86_64: '1bd1ceda2c88ffb2885beba6cec7583e0efb16e4478d9be67b7e4e630461123c' }) depends_on 'aspell' => :build @@ -28,7 +28,6 @@ class Gspell < Autotools depends_on 'gobject_introspection' => :build depends_on 'graphite' => :build depends_on 'gtk3' # R - depends_on 'gtk_doc' => :build depends_on 'harfbuzz' # R depends_on 'hunspell' # L depends_on 'icu4c' # R @@ -41,4 +40,6 @@ class Gspell < Autotools depends_on 'zlib' # R gnome + + meson_options '-Dgtk_doc=false -Dtests=false' end diff --git a/packages/gtk3.rb b/packages/gtk3.rb index d0a0903eb..1b8a6483f 100644 --- a/packages/gtk3.rb +++ b/packages/gtk3.rb @@ -3,7 +3,7 @@ require 'buildsystems/meson' class Gtk3 < Meson description 'GTK+ is a multi-platform toolkit for creating graphical user interfaces.' homepage 'https://docs.gtk.org/gtk3/' - version '3.24.41' + version '3.24.42' license 'LGPL-2.1' compatibility 'x86_64 aarch64 armv7l' source_url 'https://gitlab.gnome.org/GNOME/gtk.git' @@ -11,9 +11,9 @@ class Gtk3 < Meson binary_compression 'tar.zst' binary_sha256({ - aarch64: '3760322a4d9bf7d8ca10e49a8b67d7222550e69f24b8b6188bcdcdb378b2dbbd', - armv7l: '3760322a4d9bf7d8ca10e49a8b67d7222550e69f24b8b6188bcdcdb378b2dbbd', - x86_64: 'dbb3e25dd81f9b9315448915a8b62bddb92ae62de28a21c17fa5e235e62e4277' + aarch64: 'e5235420bc26f24f91ee5b5d1f4c5e5088abe4d95b60f0461a38ed00a3ffddc2', + armv7l: 'e5235420bc26f24f91ee5b5d1f4c5e5088abe4d95b60f0461a38ed00a3ffddc2', + x86_64: '82137a4436122b01483137fe772724df66f1cdebe3b2a6ba03c0204d96d6230b' }) # L = Logical Dependency, R = Runtime Dependency @@ -55,6 +55,7 @@ class Gtk3 < Meson depends_on 'libxi' # R depends_on 'libxkbcommon' # R depends_on 'libxrandr' # R + depends_on 'libxrender' # R depends_on 'mesa' => :build depends_on 'pango' # R depends_on 'rest' => :build diff --git a/packages/gtk4.rb b/packages/gtk4.rb index da91228b8..08efbb415 100644 --- a/packages/gtk4.rb +++ b/packages/gtk4.rb @@ -3,7 +3,7 @@ require 'buildsystems/meson' class Gtk4 < Meson description 'GTK+ is a multi-platform toolkit for creating graphical user interfaces.' homepage 'https://developer.gnome.org/gtk4/' - version '4.15.2' + version '4.15.4' license 'LGPL-2.1' compatibility 'x86_64 aarch64 armv7l' source_url 'https://gitlab.gnome.org/GNOME/gtk.git' @@ -11,9 +11,9 @@ class Gtk4 < Meson binary_compression 'tar.zst' binary_sha256({ - aarch64: 'fc59001b24b696939b8c9e4bce743fcd7df2cc0f1c3652d0bcf9c076c950e898', - armv7l: 'fc59001b24b696939b8c9e4bce743fcd7df2cc0f1c3652d0bcf9c076c950e898', - x86_64: 'ca4cf382aeb6da6ab3fb3b3084de3b043655bde325cf8c0904c00c20483c3f9a' + aarch64: '24afa2516f6bbbd290735f58c1cdbdcea63f832423f88abf5b0bae1bc1343f4e', + armv7l: '24afa2516f6bbbd290735f58c1cdbdcea63f832423f88abf5b0bae1bc1343f4e', + x86_64: '11dd98f1d841007c830e9a2fe9b8fe98f105db0070a0de585f64a081c154ed21' }) # L = Logical Dependency, R = Runtime Dependency @@ -60,6 +60,7 @@ class Gtk4 < Meson depends_on 'libxrender' # R depends_on 'mesa' => :build depends_on 'pango' # R + depends_on 'py3_docutils' => :build depends_on 'py3_gi_docgen' => :build depends_on 'py3_pygments' => :build depends_on 'sassc' => :build diff --git a/packages/gtksourceview_5.rb b/packages/gtksourceview_5.rb index 3b6b2047d..fb732d51a 100644 --- a/packages/gtksourceview_5.rb +++ b/packages/gtksourceview_5.rb @@ -3,7 +3,7 @@ require 'buildsystems/meson' class Gtksourceview_5 < Meson description 'Source code editing widget' homepage 'https://wiki.gnome.org/Projects/GtkSourceView' - version '5.6.1' + version '5.13.1' license 'LGPL-2.1+' compatibility 'x86_64 aarch64 armv7l' source_url 'https://gitlab.gnome.org/GNOME/gtksourceview.git' @@ -11,30 +11,30 @@ class Gtksourceview_5 < Meson binary_compression 'tar.zst' binary_sha256({ - aarch64: '0f8d59796235811fe0293bc1b812a4bb65a717c4ba05a6accd7cd850d1b55208', - armv7l: '0f8d59796235811fe0293bc1b812a4bb65a717c4ba05a6accd7cd850d1b55208', - x86_64: '025bfd8d5b98858324e8590e0f3fb813b5f7464e63bfe2e346f9925fe153ef69' + aarch64: '191105613a3f40d8885ae675a7ccf39f56cc09e716b9ddae7a4a7ab688d931e5', + armv7l: '191105613a3f40d8885ae675a7ccf39f56cc09e716b9ddae7a4a7ab688d931e5', + x86_64: 'b000e44594ab4e3154042396d4f46a1b2949d98d964c37d001605a507ca2dc26' }) - depends_on 'at_spi2_core' - depends_on 'cairo' - depends_on 'fontconfig' - depends_on 'freetype' - depends_on 'fribidi' - depends_on 'gdk_pixbuf' - depends_on 'glib' - depends_on 'graphene' - depends_on 'gtk3' - depends_on 'gtk4' - depends_on 'harfbuzz' - depends_on 'libsoup' - depends_on 'pango' - depends_on 'vala' - depends_on 'vulkan_headers' => :build - depends_on 'vulkan_icd_loader' + depends_on 'at_spi2_core' => :build + depends_on 'cairo' # R + depends_on 'fontconfig' # R + depends_on 'freetype' # R + depends_on 'fribidi' # R + depends_on 'gdk_pixbuf' # R depends_on 'glibc' # R + depends_on 'glib' # R + depends_on 'graphene' # R + depends_on 'gtk3' => :build + depends_on 'gtk4' # R + depends_on 'harfbuzz' # R + depends_on 'libsoup' => :build depends_on 'libxml2' # R + depends_on 'pango' # R depends_on 'pcre2' # R + depends_on 'vala' => :build + depends_on 'vulkan_headers' => :build + depends_on 'vulkan_icd_loader' # R gnome no_upstream_update @@ -43,5 +43,5 @@ class Gtksourceview_5 < Meson system "sed -i 's/-fstack-protector-strong/-flto=auto/g' meson.build" end - meson_options '-Db_asneeded=false' + meson_options '-Db_asneeded=false -Dbuild-testsuite=false' end diff --git a/packages/handbrake.rb b/packages/handbrake.rb index 221a7f94c..230cdef64 100644 --- a/packages/handbrake.rb +++ b/packages/handbrake.rb @@ -3,9 +3,10 @@ require 'package' class Handbrake < Package description 'HandBrake is a tool for converting video from nearly any format to a selection of modern, widely supported codecs.' homepage 'https://handbrake.fr/' - version '1.8.0' + version '1.8.1' license 'GPL-2' compatibility 'x86_64' + min_glibc '2.37' source_url 'https://github.com/HandBrake/HandBrake.git' git_hashtag version binary_compression 'tar.zst' diff --git a/packages/harfbuzz.rb b/packages/harfbuzz.rb index 1512f7a95..61b89d666 100644 --- a/packages/harfbuzz.rb +++ b/packages/harfbuzz.rb @@ -7,17 +7,17 @@ Package.load_package("#{__dir__}/freetype.rb") class Harfbuzz < Meson description 'HarfBuzz is an OpenType text shaping engine.' homepage 'https://harfbuzz.github.io/' - version '8.5.0' + version '9.0.0-icu75.1' license 'Old-MIT, ISC and icu' compatibility 'x86_64 aarch64 armv7l' source_url 'https://github.com/harfbuzz/harfbuzz.git' - git_hashtag version + git_hashtag version.split('-').first binary_compression 'tar.zst' binary_sha256({ - aarch64: '448ad35c9e90e8c5cbcdef4440061f83041446c98e069a937f9048cd5e24d703', - armv7l: '448ad35c9e90e8c5cbcdef4440061f83041446c98e069a937f9048cd5e24d703', - x86_64: 'a987092cf2e77d5620d3a412979ca4d6708a26afb0e1ae7478ce36e184b8f193' + aarch64: '83327f98fd8a245db7f98354a30937a39a8013ff65b7adc5aed2102ae1288e0b', + armv7l: '83327f98fd8a245db7f98354a30937a39a8013ff65b7adc5aed2102ae1288e0b', + x86_64: '76385118024b7c22e6e30caf5ed6369e2ed45566030f56d46beb334ba5764fa7' }) depends_on 'brotli' # R diff --git a/packages/icu4c.rb b/packages/icu4c.rb index 95d53cad5..f59d3c80c 100644 --- a/packages/icu4c.rb +++ b/packages/icu4c.rb @@ -3,18 +3,18 @@ require 'package' class Icu4c < Package description 'ICU is a mature, widely used set of C/C++ and Java libraries providing Unicode and Globalization support for software applications.' homepage 'https://icu.unicode.org/' - version '74.2' + version '75.1' license 'BSD' compatibility 'all' - source_url 'https://github.com/unicode-org/icu/releases/download/release-74-2/icu4c-74_2-src.tgz' - source_sha256 '68db082212a96d6f53e35d60f47d38b962e9f9d207a74cfac78029ae8ff5e08c' + source_url 'https://github.com/unicode-org/icu/releases/download/release-75-1/icu4c-75_1-src.tgz' + source_sha256 'cb968df3e4d2e87e8b11c49a5d01c787bd13b9545280fc6642f826527618caef' binary_compression 'tar.zst' binary_sha256({ - aarch64: 'fe4fdd869d949f3caf863b543dd2f8b189e34b14e9c498c00f92979f8ddc0e9c', - armv7l: 'fe4fdd869d949f3caf863b543dd2f8b189e34b14e9c498c00f92979f8ddc0e9c', - i686: 'c7a47779435d14a382281dbd3208913f4cbe5ef54f391f729f74d1037942238a', - x86_64: 'd982bd98cb626a29bff9c6bb4a155610cad0a4239aadbdfe1e16e0acbec76b75' + aarch64: '2ff2ed4760529e3611a51211876c17df5c9acc5a689cd35cb5a98ce0c4c1f714', + armv7l: '2ff2ed4760529e3611a51211876c17df5c9acc5a689cd35cb5a98ce0c4c1f714', + i686: '3bab33be0214ced3080b895c615ee8f9bf3b98e191701be0917c2e02c783c26f', + x86_64: '83e81c0d8bb9981034d6d63755ac0e9ae833d9544cbc07e32d242e98cf3d30db' }) depends_on 'gcc_lib' # R @@ -24,7 +24,6 @@ class Icu4c < Package Dir.chdir 'source' do system "mold -run ./configure \ #{CREW_OPTIONS} \ - --enable-static \ --enable-shared \ --disable-samples \ --disable-tests" @@ -32,8 +31,7 @@ class Icu4c < Package end end - @icuver = '74.2' - @oldicuver = %w[73] + @oldicuver = %w[version.split('.').first.to_i - 1] def self.install Dir.chdir 'source' do @@ -42,12 +40,12 @@ class Icu4c < Package Dir.chdir CREW_DEST_LIB_PREFIX do @oldicuver.each do |oldver| # Backwards compatibility symlinks (which may not work - see postinstall.) - FileUtils.ln_sf "libicudata.so.#{@icuver}", "libicudata.so.#{oldver}" - FileUtils.ln_sf "libicui18n.so.#{@icuver}", "libicui18n.so.#{oldver}" - FileUtils.ln_sf "libicuio.so.#{@icuver}", "libicuio.so.#{oldver}" - FileUtils.ln_sf "libicutest.so.#{@icuver}", "libicutest.so.#{oldver}" - FileUtils.ln_sf "libicutu.so.#{@icuver}", "libicutu.so.#{oldver}" - FileUtils.ln_sf "libicuuc.so.#{@icuver}", "libicuuc.so.#{oldver}" + FileUtils.ln_sf "libicudata.so.#{version}", "libicudata.so.#{oldver}" + FileUtils.ln_sf "libicui18n.so.#{version}", "libicui18n.so.#{oldver}" + FileUtils.ln_sf "libicuio.so.#{version}", "libicuio.so.#{oldver}" + FileUtils.ln_sf "libicutest.so.#{version}", "libicutest.so.#{oldver}" + FileUtils.ln_sf "libicutu.so.#{version}", "libicutu.so.#{oldver}" + FileUtils.ln_sf "libicuuc.so.#{version}", "libicuuc.so.#{oldver}" end end end @@ -58,7 +56,7 @@ class Icu4c < Package return if CREW_IN_CONTAINER Dir.chdir CREW_LIB_PREFIX do - @oldicuver = %w[73.2 73 72 72.1] + @oldicuver = %w[74.2 73.2 73 72 72.1] @oldicuver.each do |oldver| puts "Finding Packages expecting icu4c version #{oldver} that may need updating:".lightgreen @file_array = [] @@ -73,7 +71,7 @@ class Icu4c < Package end # Mozjs contains an internal icu which will not match this version. # Update the following when there is a new version of mozjs. - @file_array.delete_if { |item| item == 'js102' } + @file_array.delete_if { |item| item == 'js115' } next if @file_array.empty? @file_array.uniq.sort.each do |item| diff --git a/packages/imagemagick7.rb b/packages/imagemagick7.rb index 9074fad8d..ff4e2db43 100644 --- a/packages/imagemagick7.rb +++ b/packages/imagemagick7.rb @@ -3,18 +3,18 @@ require 'buildsystems/autotools' class Imagemagick7 < Autotools description 'Use ImageMagick to create, edit, compose, or convert bitmap images.' homepage 'http://www.imagemagick.org/script/index.php' - version '7.1.1-35-perl5.40' + version '7.1.1-36-perl5.40-icu75.1' license 'imagemagick' compatibility 'x86_64 aarch64 armv7l' source_url 'https://github.com/ImageMagick/ImageMagick.git' # The imagemagick7 version always has a dash in it. - git_hashtag version.reverse.split('-', 2).collect(&:reverse).reverse.first + git_hashtag version.reverse.split('-', 3).collect(&:reverse).reverse.first binary_compression 'tar.zst' binary_sha256({ - aarch64: 'b7146f1123cd6ae450a71d10b530aa83c8ae1f3a0f96d6d972093a032cdcc840', - armv7l: 'b7146f1123cd6ae450a71d10b530aa83c8ae1f3a0f96d6d972093a032cdcc840', - x86_64: '06912529a92089de5a8c3c84321fceb2dd53ce53850f142742cff2375b4c43c8' + aarch64: '5a3607ff766e0da06451f8a1d19c2b794a8984f7b5443bdba5d995937949c35b', + armv7l: '5a3607ff766e0da06451f8a1d19c2b794a8984f7b5443bdba5d995937949c35b', + x86_64: '8fe3bfce6062370e8bc73bc2f16532ffd07944f8f68864d5494d7fbd6b584cfc' }) depends_on 'bzip2' # R diff --git a/packages/imlib2.rb b/packages/imlib2.rb index 4063cab43..8a50078bf 100644 --- a/packages/imlib2.rb +++ b/packages/imlib2.rb @@ -1,65 +1,58 @@ -require 'package' +require 'buildsystems/autotools' -class Imlib2 < Package +class Imlib2 < Autotools description 'library that does image file loading and saving as well as rendering, manipulation, arbitrary polygon support, etc.' homepage 'https://sourceforge.net/projects/enlightenment/' - version '1.9.1' + version '1.12.3-icu75.1' license 'BSD' compatibility 'x86_64 aarch64 armv7l' - source_url "https://downloads.sourceforge.net/enlightenment/imlib2-#{version}.tar.xz" - source_sha256 '4a224038bfffbe5d4d250c44e05f4ee5ae24dcfef8395b1677c715c58f764d43' + source_url "https://sourceforge.net/projects/enlightenment/files/imlib2-src/#{version.split('-').first}/imlib2-#{version.split('-').first}.tar.xz" + source_sha256 '96244656576a3e0a6f58b78e514ddc919622ac6806711bc231837eee62c1de34' binary_compression 'tar.zst' binary_sha256({ - aarch64: '3975a861cde1bc361f8045e80b580e92585308856cdf64fb419b97be43e50e4c', - armv7l: '3975a861cde1bc361f8045e80b580e92585308856cdf64fb419b97be43e50e4c', - x86_64: '5a301b10f322d868e0d1a2e13b9190c95064e4f50bc7654b12e7650f9f2812ef' + aarch64: 'efcce21c77145b6db2823bb7a0d5cccb83ebd5e59163cc21ffe3ea2ecc8fca4e', + armv7l: 'efcce21c77145b6db2823bb7a0d5cccb83ebd5e59163cc21ffe3ea2ecc8fca4e', + x86_64: 'b58d6d00929472e6b5f738e84d361e7922ab45dd3a0c270f1c9652dda1e836d9' }) - depends_on 'fontconfig' - depends_on 'freetype' - depends_on 'giflib' - depends_on 'libid3tag' - depends_on 'libheif' - depends_on 'libjpeg_turbo' - depends_on 'libjxl' - depends_on 'libtiff' - depends_on 'libx11' - depends_on 'libxcb' - depends_on 'libxext' - depends_on 'protobuf_c' depends_on 'bzip2' # R + depends_on 'cairo' # R depends_on 'expat' # R + depends_on 'fontconfig' => :build + depends_on 'freetype' # R depends_on 'gcc_lib' # R depends_on 'gdk_pixbuf' # R - depends_on 'glib' # R + depends_on 'giflib' # R depends_on 'glibc' # R + depends_on 'glib' # R depends_on 'harfbuzz' # R depends_on 'icu4c' # R + depends_on 'jbigkit' # R depends_on 'libbsd' # R depends_on 'libdeflate' # R + depends_on 'libheif' # R + depends_on 'libid3tag' => :build + depends_on 'libjpeg_turbo' # R + depends_on 'libjxl' # R depends_on 'libmd' # R depends_on 'libpng' # R depends_on 'librsvg' # R + depends_on 'libtiff' # R depends_on 'libwebp' # R + depends_on 'libx11' # R depends_on 'libxau' # R + depends_on 'libxcb' # R depends_on 'libxdmcp' # R + depends_on 'libxext' # R depends_on 'libxml2' # R depends_on 'openjpeg' # R depends_on 'pango' # R + depends_on 'protobuf_c' => :build depends_on 'xzutils' # R depends_on 'zlib' # R depends_on 'zstd' # R - def self.build - system "./configure \ - #{CREW_OPTIONS} \ - --sysconfdir=#{CREW_PREFIX}/etc/imlib2 \ + configure_options "--sysconfdir=#{CREW_PREFIX}/etc/imlib2 \ --x-libraries=#{CREW_LIB_PREFIX}" - system 'make' - end - - def self.install - system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install' - end end diff --git a/packages/js102.rb b/packages/js102.rb index 3ffd9718b..3bebf6420 100644 --- a/packages/js102.rb +++ b/packages/js102.rb @@ -24,7 +24,7 @@ class Js102 < Package depends_on 'libnotify' => :build depends_on 'llvm18_dev' => :build depends_on 'ncurses' # R - depends_on 'nspr' + depends_on 'nss' depends_on 'nss' # R depends_on 'readline' # R depends_on 'rust' => :build diff --git a/packages/js115.rb b/packages/js115.rb index b1133da6b..7207a64e2 100644 --- a/packages/js115.rb +++ b/packages/js115.rb @@ -7,10 +7,12 @@ class Js115 < Package description 'JavaScript interpreter and libraries - Version 115' homepage 'https://spidermonkey.dev/' version '115.8.0' + # version '115.14.0' license 'MPL-2.0' compatibility 'x86_64 aarch64 armv7l' - source_url "https://archive.mozilla.org/pub/firefox/releases/#{version}esr/source/firefox-#{version}esr.source.tar.xz" + source_url "https://archive.mozilla.org/pub/firefox/releases/#{version.split('-').first}esr/source/firefox-#{version.split('-').first}esr.source.tar.xz" source_sha256 'af8086f23efc8492d286671f6035b1a915de6f4ed5c7897e40be0e1cb6b895ea' + # source_sha256 '8955e1b5db83200a70c6dea4b614e19328d92b406ec9a1bde2ea86333a74dab4' binary_compression 'tar.zst' binary_sha256({ @@ -27,8 +29,9 @@ class Js115 < Package depends_on 'libnotify' => :build depends_on 'llvm18_dev' => :build depends_on 'ncurses' # R - depends_on 'nspr' + depends_on 'nss' depends_on 'nss' # R + depends_on 'py3_pre_commit' => :build depends_on 'py3_pycairo' => :build depends_on 'readline' # R depends_on 'rust' => :build @@ -52,7 +55,7 @@ class Js115 < Package ac_add_options --disable-strip ac_add_options --enable-application=js ac_add_options --enable-hardening - ac_add_options --enable-linker=lld + ac_add_options --enable-linker=#{CREW_LINKER} ac_add_options --enable-optimize ac_add_options --enable-readline ac_add_options --enable-release @@ -63,20 +66,21 @@ class Js115 < Package ac_add_options --with-intl-api ac_add_options --with-system-nspr ac_add_options --with-system-zlib + ac_add_options --without-system-icu mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/obj MOZCONFIG_EOF File.write('.mozconfig', @mozconfig) - if %w[armv7l aarch64].include?(ARCH) - # see https://bugzilla.mozilla.org/show_bug.cgi?id=1786621 - open('.mozconfig', 'a') do |f| - f.puts 'ac_add_options --with-system-icu' - end - else - open('.mozconfig', 'a') do |f| - f.puts 'ac_add_options --enable-rust-simd' - f.puts 'ac_add_options --without-system-icu' - end - end + # if %w[armv7l aarch64].include?(ARCH) + # # see https://bugzilla.mozilla.org/show_bug.cgi?id=1786621 + # open('.mozconfig', 'a') do |f| + # f.puts 'ac_add_options --without-system-icu' + # end + # else + # open('.mozconfig', 'a') do |f| + # f.puts 'ac_add_options --enable-rust-simd' + # f.puts 'ac_add_options --without-system-icu' + # end + # end FileUtils.mkdir_p 'obj' Dir.chdir 'obj' do # error: Cannot set `RUSTC_BOOTSTRAP=1` from build script of `packed_simd v0.3.4 (https://github.com/hsivonen/packed_simd?rev=0917fe780032a6bbb23d71be545f9c1834128d75#0917fe78)`. @@ -86,12 +90,12 @@ class Js115 < Package system "CFLAGS='-fcf-protection=none' \ CXXFLAGS='-fcf-protection=none' \ CC=gcc CXX=g++ \ - LD=mold \ + LD=#{CREW_LINKER} \ RUSTFLAGS='-Clto=thin' \ RUSTUP_HOME='#{CREW_PREFIX}/share/rustup' \ CARGO_HOME='#{CREW_PREFIX}/share/cargo' \ LDFLAGS='-lreadline -ltinfo' \ - MACH_BUILD_PYTHON_NATIVE_PACKAGE_SOURCE=system \ + MACH_BUILD_PYTHON_NATIVE_PACKAGE_SOURCE=pip \ MOZCONFIG=../.mozconfig \ ../mach build" end diff --git a/packages/js78.rb b/packages/js78.rb index c87ac7b22..cb75661c5 100644 --- a/packages/js78.rb +++ b/packages/js78.rb @@ -20,7 +20,7 @@ class Js78 < Package depends_on 'autoconf213' => :build depends_on 'rust' => :build depends_on 'llvm16_dev' => :build - depends_on 'nspr' + depends_on 'nss' no_upstream_update diff --git a/packages/js91.rb b/packages/js91.rb index 9bd2f2093..72aa5a7e0 100644 --- a/packages/js91.rb +++ b/packages/js91.rb @@ -20,7 +20,7 @@ class Js91 < Package depends_on 'autoconf213' => :build depends_on 'rust' => :build depends_on 'llvm16_dev' => :build - depends_on 'nspr' + depends_on 'nss' no_upstream_update diff --git a/packages/ldb.rb b/packages/ldb.rb index a82470d58..a7380ec02 100644 --- a/packages/ldb.rb +++ b/packages/ldb.rb @@ -6,24 +6,24 @@ require 'package' class Ldb < Package description 'Schema-less, ldap like, API and database' homepage 'https://ldb.samba.org/' - @_ver = '2.9.0' - version "#{@_ver}-py3.12" + version '2.9.1-py3.12' license 'GPLv3' compatibility 'all' - source_url "https://samba.org/ftp/ldb/ldb-#{@_ver}.tar.gz" + source_url "https://samba.org/ftp/ldb/ldb-#{version.split('-').first}.tar.gz" source_sha256 '105aaff71ad881a7faeb582fd416ae28221b6fde338fff82828065062c2507a5' binary_compression 'tar.zst' binary_sha256({ - aarch64: '4f355683fe450dbb30a34904ee85abef2d7895907897f03133f74a853100c6f0', - armv7l: '4f355683fe450dbb30a34904ee85abef2d7895907897f03133f74a853100c6f0', - i686: '6af6a1202c85b38cab2fdeb47138f7c124b17c7639dff3cbac10bfff15fc4c76', - x86_64: '1c1743b78c2b12a9f69d287bc2fbcc127d91111286a25cd2e35090039e8245df' + aarch64: '78ec3789e72251b4439325dac0c5ce6137e5787df52cfdadd591d9ccafba7382', + armv7l: '78ec3789e72251b4439325dac0c5ce6137e5787df52cfdadd591d9ccafba7382', + i686: '41a64479efa5a4e84eb760a5a099a5aee385709097306b84b6335bffaeb223d7', + x86_64: '48f44065d72deb20771736cfbfe802fe668736a01ec776c8a710d8ba12db09b0' }) depends_on 'cmocka' => :build depends_on 'docbook_xsl' => :build depends_on 'gcc_lib' # R + depends_on 'gdb' => :build depends_on 'glibc' # R depends_on 'libbsd' # R depends_on 'libxcrypt' => :build diff --git a/packages/libabigail.rb b/packages/libabigail.rb new file mode 100644 index 000000000..a7630878e --- /dev/null +++ b/packages/libabigail.rb @@ -0,0 +1,37 @@ +# Adapted from Arch Linux libabigail PKGBUILD at: +# https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=libabigail + +require 'buildsystems/autotools' + +class Libabigail < Autotools + description 'ABI Generic Analysis and Instrumentation Library' + homepage 'https://sourceware.org/libabigail/' + version '2.5-py3.12' + license 'Apache' + compatibility 'all' + source_url 'https://sourceware.org/git/libabigail.git' + git_hashtag "libabigail-#{version.split('-').first}" + binary_compression 'tar.zst' + + binary_sha256({ + aarch64: '450734b97afc1dfca6ef49224af28470cbe60f71c3cb49ef618645ad8a408cec', + armv7l: '450734b97afc1dfca6ef49224af28470cbe60f71c3cb49ef618645ad8a408cec', + i686: '8abe86ed59dee6eb9b597153d064333db38bab3392e9ac4c308a6f1f3b3905c8', + x86_64: '6af286b67a55f5765e724ee1bd3ca43c153cd07b91e016f18a9cf5c96435ecc2' + }) + + depends_on 'binutils' # R + depends_on 'elfutils' # R + depends_on 'gcc_lib' # R + depends_on 'glibc' # R + depends_on 'libxml2' # R + depends_on 'python3' => :build + depends_on 'sphinx' => :build + depends_on 'zlib' # R + depends_on 'zstd' # R + + configure_options '--enable-bash-completion \ + --disable-manual \ + --disable-apidoc \ + --disable-static' +end diff --git a/packages/libadwaita.rb b/packages/libadwaita.rb index e7516fd18..c482b0c34 100644 --- a/packages/libadwaita.rb +++ b/packages/libadwaita.rb @@ -3,7 +3,7 @@ require 'buildsystems/meson' class Libadwaita < Meson description 'Library of GNOME-specific UI patterns, replacing libhandy for GTK4' homepage 'https://gitlab.gnome.org/GNOME/libadwaita/' - version '1.5.0' + version '1.6.beta' license 'LGPL-2.1+' compatibility 'x86_64 aarch64 armv7l' source_url 'https://gitlab.gnome.org/GNOME/libadwaita.git' @@ -11,9 +11,9 @@ class Libadwaita < Meson binary_compression 'tar.zst' binary_sha256({ - aarch64: '9b3faec205030705a0c057d3acf659f381d8ca350a0742c197e26d8b5f35e57f', - armv7l: '9b3faec205030705a0c057d3acf659f381d8ca350a0742c197e26d8b5f35e57f', - x86_64: '8016af17106412697616c1af4159be10c66ff0b4d15bc303048bbc4f3a1885eb' + aarch64: '986ab05714ec676db239846ec08a81ba6a7f6696b6726478b04655435ae3908b', + armv7l: '986ab05714ec676db239846ec08a81ba6a7f6696b6726478b04655435ae3908b', + x86_64: '9843c177eefacd1e5eb9bf08e7323d9131c243285bc31a01776664c52de8d2f7' }) depends_on 'appstream' # R diff --git a/packages/libarchive.rb b/packages/libarchive.rb index 648f77720..ba8eaf954 100644 --- a/packages/libarchive.rb +++ b/packages/libarchive.rb @@ -3,23 +3,24 @@ require 'buildsystems/autotools' class Libarchive < Autotools description 'Multi-format archive and compression library.' homepage 'https://www.libarchive.org/' - version '3.7.2' + version '3.7.4-icu75.1' license 'BSD, BSD-2, BSD-4 and public-domain' compatibility 'all' - source_url "https://www.libarchive.org/downloads/libarchive-#{version}.tar.xz" - source_sha256 '04357661e6717b6941682cde02ad741ae4819c67a260593dfb2431861b251acb' + source_url "https://www.libarchive.org/downloads/libarchive-#{version.split('-').first}.tar.xz" + source_sha256 'f887755c434a736a609cbd28d87ddbfbe9d6a3bb5b703c22c02f6af80a802735' binary_compression 'tar.zst' binary_sha256({ - aarch64: '27d7882d8f01b817ea8f2089fbbed808518135e16b8b9d1841db25d78b56888a', - armv7l: '27d7882d8f01b817ea8f2089fbbed808518135e16b8b9d1841db25d78b56888a', - i686: '476f5b9467a28fa8814efae881dbd7b1dc5ba77e011dade4cda532c775aa61e9', - x86_64: '5a002f95983f1e11efc15f0b9b0d2a9fb2081895080b918f5944808a99cbb195' + aarch64: '86a2891e468a8b0aba9f017ddb9986193dc1416c9971edd00a62e84c1132ccfe', + armv7l: '86a2891e468a8b0aba9f017ddb9986193dc1416c9971edd00a62e84c1132ccfe', + i686: '2aef89c9ed12b699ebb226a73acb7d6849825af6b0e9ef4604e685f85f15e594', + x86_64: 'a055feffdd4c67283a1584b198073f48633d64f7f58297b1411bdfd011053fa8' }) depends_on 'acl' # R depends_on 'attr' # R depends_on 'bzip2' # R + depends_on 'expat' # R depends_on 'gcc_lib' => :build depends_on 'glibc' # R depends_on 'icu4c' # R diff --git a/packages/libbacktrace.rb b/packages/libbacktrace.rb index 7a92bcdff..e76b21b7a 100644 --- a/packages/libbacktrace.rb +++ b/packages/libbacktrace.rb @@ -6,18 +6,19 @@ require 'buildsystems/autotools' class Libbacktrace < Autotools description 'Library to produce symbolic backtraces' homepage 'https://github.com/ianlancetaylor/libbacktrace' - version '11427f31a64b11583fec94b4c2a265c7dafb1ab3' + @_ver = '86885d14049fab06ef8a33aac51664230ca09200' + version "1.0-#{@_ver[0..6]}" license 'BSD-3 Clause' compatibility 'all' source_url 'https://github.com/ianlancetaylor/libbacktrace.git' - git_hashtag version + git_hashtag @_ver binary_compression 'tar.zst' binary_sha256({ - aarch64: 'cb445bca3969abf2eba6d08db797d184c9dad392f15c46a6da011f7a5b8af0b1', - armv7l: 'cb445bca3969abf2eba6d08db797d184c9dad392f15c46a6da011f7a5b8af0b1', - i686: '9c11d9d2255fd8c430ddb15fa303f016c0968e1744831d259712d62035f13314', - x86_64: 'f0d7c6dafc7530d0e447f4b3cae715c1d82988ef7eb5745614b5ead57e21e648' + aarch64: '4f9490d8a645de5704cc4b721ec0882d058e000c2e3606a0a502549888712f79', + armv7l: '4f9490d8a645de5704cc4b721ec0882d058e000c2e3606a0a502549888712f79', + i686: 'de19d4c80932fd0f989c12019bdde4a6c90550875e27dca51d811227312f3edc', + x86_64: 'a5f708982f6d649c002397bd581b326ae68ee3223104df29c8d2f48c771d58fc' }) depends_on 'gcc_lib' # R diff --git a/packages/libcdr.rb b/packages/libcdr.rb index da13c8b34..acf393d7e 100644 --- a/packages/libcdr.rb +++ b/packages/libcdr.rb @@ -6,7 +6,7 @@ require 'buildsystems/autotools' class Libcdr < Autotools description 'CorelDraw file format importer library for LibreOffice' homepage 'https://wiki.documentfoundation.org/DLP/Libraries/libcdr' - version '0.1.7-2' + version '0.1.7-icu75.1' license 'GPL2 LGPL2.1 MPL' compatibility 'all' source_url 'https://dev-www.libreoffice.org/src/libcdr/libcdr-0.1.7.tar.xz' @@ -14,10 +14,10 @@ class Libcdr < Autotools binary_compression 'tar.zst' binary_sha256({ - aarch64: '79124696e55c0a01674829d77e7f8c9d17e688b502e94776b4a0df0e01a0f4e0', - armv7l: '79124696e55c0a01674829d77e7f8c9d17e688b502e94776b4a0df0e01a0f4e0', - i686: '0a7f893c78a6d7d964b7191215421333e7a98584296e50e5217262cb7ebeaf40', - x86_64: '81bea42bae37815908e4144ad8e2da2b8a07447fed3e6cbc0e6e9d768813eafd' + aarch64: 'f75389cc0dc595d9c126946a1869c1432f38a0aa2840e012f8af84252bfa4420', + armv7l: 'f75389cc0dc595d9c126946a1869c1432f38a0aa2840e012f8af84252bfa4420', + i686: '18458e613b393e2b896632d285dbad3f85c41c833176ee1593aebe4b31c0aaef', + x86_64: '27a7b288cef16935905289ba65693ef7edbcedacf66eda9cd35b67d933f562af' }) depends_on 'boost' => :build diff --git a/packages/libdbusmenu_gtk3.rb b/packages/libdbusmenu_gtk3.rb index d71443ed4..dbe1521b2 100644 --- a/packages/libdbusmenu_gtk3.rb +++ b/packages/libdbusmenu_gtk3.rb @@ -1,45 +1,48 @@ # Adapted from Arch Linux libdbusmenu PKGBUILD at: # https://github.com/archlinux/svntogit-community/raw/packages/libdbusmenu/trunk/PKGBUILD -require 'package' +require 'buildsystems/autotools' -class Libdbusmenu_gtk3 < Package +class Libdbusmenu_gtk3 < Autotools description 'Library for passing menus over DBus' homepage 'https://launchpad.net/libdbusmenu' - version '16.04.0' + @ubuntu_version = '18.10.20180917~bzr492+repack1-3.1ubuntu5' + version '18.10.20180917-bcafbd2' license 'GPL3 LGPL2.1 LGPL3' compatibility 'x86_64 aarch64 armv7l' source_url 'https://git.launchpad.net/ubuntu/+source/libdbusmenu' - git_hashtag 'a3658f1208c31b1fb03b71af6e49c01119ba52fd' - binary_compression 'tpxz' + git_hashtag 'bcafbd2190848570fd57bb5f81d9f9bca119365f' + binary_compression 'tar.zst' binary_sha256({ - aarch64: '1b83ca1cf073b97d68d5f3a69dc587b7bb9019ed85c64c3186a66586f943eb7d', - armv7l: '1b83ca1cf073b97d68d5f3a69dc587b7bb9019ed85c64c3186a66586f943eb7d', - x86_64: '15883cf528411d88b1ddfed31cc34432ef405fb0ebaedd436861ccc70a3510ec' + aarch64: '81541bf0bd0c873b702691e2c9ac27a89c02ab0518af08ece2e8d1016a921549', + armv7l: '81541bf0bd0c873b702691e2c9ac27a89c02ab0518af08ece2e8d1016a921549', + x86_64: 'bfb26200b3b33fa3f13bd01325f38d2b46d1b4631a8545de3c3f760883e175cd' }) - depends_on 'gnome_common' - depends_on 'gobject_introspection' - depends_on 'gtk2' - depends_on 'gtk3' - depends_on 'intltool' - depends_on 'vala' + depends_on 'at_spi2_core' # R + depends_on 'cairo' # R + depends_on 'gdk_pixbuf' # R + depends_on 'glibc' # R + depends_on 'glib' # R + depends_on 'gnome_common' => :build + depends_on 'gobject_introspection' => :build + depends_on 'gtk3' # R + depends_on 'harfbuzz' # R + depends_on 'intltool' => :build + depends_on 'json_glib' # R + depends_on 'pango' # R + depends_on 'vala' => :build + depends_on 'zlib' # R + + configure_options '--disable-dumper --disable-scrollkeeper --disable-gtk-doc --enable-introspection --with-gtk=3' def self.patch - system 'NOCONFIGURE=1 ./autogen.sh' - end - - def self.build - system "#{CREW_ENV_OPTIONS.sub("CFLAGS='", "CFLAGS='-Wno-deprecated-declarations ")} \ - ./configure \ - #{CREW_OPTIONS} \ - --localstatedir=#{CREW_PREFIX}/var \ - --sysconfdir=#{CREW_PREFIX}/etc \ - --with-gtk=3" - end - - def self.install - system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install' + downloader "http://archive.ubuntu.com/ubuntu/pool/main/libd/libdbusmenu/libdbusmenu_#{@ubuntu_version}.debian.tar.xz", '2d00f79281340516f326468efee0e75651f0926834ce2671195f7a6b5945b314' + FileUtils.mkdir 'ubuntu_patches' + system "tar fx libdbusmenu_#{@ubuntu_version}.debian.tar.xz -C ubuntu_patches" + Dir['ubuntu_patches/debian/patches/000*'].each do |patch| + system "patch -Np1 -i #{patch}" + end end end diff --git a/packages/libgedit_gfls.rb b/packages/libgedit_gfls.rb new file mode 100644 index 000000000..7eb80342a --- /dev/null +++ b/packages/libgedit_gfls.rb @@ -0,0 +1,23 @@ +# Adapted from Arch Linux libgedit-gfls PKGBUILD at: +# https://gitlab.archlinux.org/archlinux/packaging/packages/libgedit-gfls/-/blob/main/PKGBUILD?ref_type=heads + +require 'buildsystems/meson' + +class Libgedit_gfls < Meson + description 'A module dedicated to file loading and saving.' + homepage 'https://gitlab.gnome.org/World/gedit/libgedit-gfls' + version '0.1.0' + license 'LGPL-3.0-or-later' + compatibility 'all' + source_url 'https://gitlab.gnome.org/World/gedit/libgedit-gfls.git' + git_hashtag version + binary_compression 'tar.zst' + + binary_sha256({ + aarch64: '5a38524bfffb0acba0ecb60c5c34fbee3d0fe2453537d6830801b317afcff632', + armv7l: '5a38524bfffb0acba0ecb60c5c34fbee3d0fe2453537d6830801b317afcff632', + x86_64: 'fc3dbebc7df1faef769ca9ec8206520c4a8d2ee2cd111b019ab6e5b8d7670778' + }) + + meson_options '-Dgtk_doc=false' +end diff --git a/packages/libgedit_gtksourceview.rb b/packages/libgedit_gtksourceview.rb index 56cb0428d..46d0f70b3 100644 --- a/packages/libgedit_gtksourceview.rb +++ b/packages/libgedit_gtksourceview.rb @@ -6,7 +6,7 @@ require 'buildsystems/meson' class Libgedit_gtksourceview < Meson description 'A library that extends GtkTextView, the standard GTK ' homepage 'https://gedit-technology.github.io' - version '299.0.5' + version '299.2.1' license 'LGPL2.1' compatibility 'x86_64 aarch64 armv7l' source_url 'https://github.com/gedit-technology/libgedit-gtksourceview.git' @@ -14,9 +14,9 @@ class Libgedit_gtksourceview < Meson binary_compression 'tar.zst' binary_sha256({ - aarch64: 'af6025427fb18b30b14ec3161e27ecf1d5042fbc9d37d767ede33d6a50fbc1c1', - armv7l: 'af6025427fb18b30b14ec3161e27ecf1d5042fbc9d37d767ede33d6a50fbc1c1', - x86_64: '6ec6e56cc039e43d03031de00c2dd0347826124407d60ed754ee3f82dcd9cae8' + aarch64: '6379ba00383a5eb73734d4ccf690fd92c9a638a5905746ab117dd2ddfc3c8da9', + armv7l: '6379ba00383a5eb73734d4ccf690fd92c9a638a5905746ab117dd2ddfc3c8da9', + x86_64: '155feea345e7a6a0451fb5eb7345a61f6e6e076befcb8d30f3814a094c3483a0' }) depends_on 'cairo' # R diff --git a/packages/libgsf.rb b/packages/libgsf.rb index 23b75efab..d9c637493 100644 --- a/packages/libgsf.rb +++ b/packages/libgsf.rb @@ -3,29 +3,29 @@ require 'buildsystems/autotools' class Libgsf < Autotools description 'The G Structured File Library' homepage 'https://gitlab.gnome.org/GNOME/libgsf' - version '1.14.52' + version '1.14.52-634340d-icu75.1' license 'GPL-2 and LGPL-2' compatibility 'x86_64 aarch64 armv7l' source_url 'https://gitlab.gnome.org/GNOME/libgsf.git' - git_hashtag "LIBGSF_#{version.gsub('.', '_')}" + git_hashtag '634340d31177c02ccdb43171e37291948e7f8974' + # git_hashtag "LIBGSF_#{version.split('-').first.gsub('.', '_')}" binary_compression 'tar.zst' binary_sha256({ - aarch64: '3ec63a99914ca5a6f52e5c6d7f7a7d2cd7c3a4468276aae62caa11e5b889aa61', - armv7l: '3ec63a99914ca5a6f52e5c6d7f7a7d2cd7c3a4468276aae62caa11e5b889aa61', - x86_64: 'a50aaef9c124b5e0b3448d819c21731c05566d0c56a3d9fc29f1bbfd4a7fb74c' + aarch64: 'bf5545a06b87dcfe050261ec24f2d4bde2e171fc9738888d37da71010bbcc618', + armv7l: 'bf5545a06b87dcfe050261ec24f2d4bde2e171fc9738888d37da71010bbcc618', + x86_64: '55290360c18f65034004fb5e4f747e034fbbcb04ce7705134bc654820bd0b9fc' }) - depends_on 'gdk_pixbuf' => :build - depends_on 'gtk_doc' => :build depends_on 'bzip2' # R depends_on 'gcc_lib' # R - depends_on 'glib' # R + depends_on 'gdk_pixbuf' # R depends_on 'glibc' # R + depends_on 'glib' # R + depends_on 'gtk_doc' => :build depends_on 'icu4c' # R depends_on 'libxml2' # R depends_on 'zlib' # R - depends_on 'gdk_pixbuf' # R gnome diff --git a/packages/libical.rb b/packages/libical.rb index 0c5068acf..2c1bf9dee 100644 --- a/packages/libical.rb +++ b/packages/libical.rb @@ -1,40 +1,33 @@ -require 'package' +require 'buildsystems/cmake' -class Libical < Package +class Libical < CMake description 'An open source reference implementation of the icalendar data type and serialization format' homepage 'https://github.com/libical/libical' - version '3.0.10' + version '3.0.18-icu75.1' license 'MPL-2.0 or LGPL-2.1' compatibility 'x86_64 aarch64 armv7l' - source_url 'https://github.com/libical/libical/releases/download/v3.0.10/libical-3.0.10.tar.gz' - source_sha256 'f933b3e6cf9d56a35bb5625e8e4a9c3a50239a85aea05ed842932c1a1dc336b4' - binary_compression 'tpxz' + source_url 'https://github.com/libical/libical.git' + git_hashtag "v#{version.split('-').first}" + binary_compression 'tar.zst' binary_sha256({ - aarch64: 'eaf30d94276f73f41c57f4c4ef520d90db8dd26c6fabd87ec06eb427d7630c1f', - armv7l: 'eaf30d94276f73f41c57f4c4ef520d90db8dd26c6fabd87ec06eb427d7630c1f', - x86_64: '4183f8666361ccb3c4c41e41ec1a17a649d1e432836a55a3aeb56ef2d0976f05' + aarch64: '41707a01e04fa17f6df3705fb955556df1bf852b66cdd02a6f52ffe47546aaca', + armv7l: '41707a01e04fa17f6df3705fb955556df1bf852b66cdd02a6f52ffe47546aaca', + x86_64: '670e55ae69fa5a1938b4a46b261fb3b65768fa2ce00fc6ba63d54a2ba91b90ac' }) - depends_on 'glib' - depends_on 'gtk_doc' => :build - depends_on 'icu4c' - depends_on 'vala' => :build + depends_on 'gcc_lib' # R + depends_on 'glibc' # R + depends_on 'glib' # R depends_on 'gobject_introspection' => :build + depends_on 'gtk_doc' => :build + depends_on 'icu4c' # R + depends_on 'libdb' # R + depends_on 'libxml2' # R + depends_on 'vala' => :build - def self.build - Dir.mkdir 'builddir' - Dir.chdir 'builddir' do - system "cmake #{CREW_CMAKE_OPTIONS} .. -G Ninja \ - -DGOBJECT_INTROSPECTION=true \ + cmake_options '-DGOBJECT_INTROSPECTION=true \ -DICAL_GLIB_VAPI=true \ -DICAL_BUILD_DOCS=false \ - -DLIBICAL_BUILD_TESTING=false" - end - system 'ninja -C builddir' - end - - def self.install - system "DESTDIR=#{CREW_DEST_DIR} ninja -C builddir install" - end + -DLIBICAL_BUILD_TESTING=false' end diff --git a/packages/libmbedtls.rb b/packages/libmbedtls.rb index a4037a39a..52c971766 100644 --- a/packages/libmbedtls.rb +++ b/packages/libmbedtls.rb @@ -3,22 +3,22 @@ require 'buildsystems/cmake' class Libmbedtls < CMake description 'An open source, portable, easy to use, readable and flexible SSL library' homepage 'https://www.trustedfirmware.org/projects/mbed-tls/' - version '3.4.1' + version '3.6.0' license 'Apache-2.0' compatibility 'all' - source_url 'https://github.com/ARMmbed/mbedtls/archive/v3.4.1.tar.gz' - source_sha256 'a420fcf7103e54e775c383e3751729b8fb2dcd087f6165befd13f28315f754f5' + source_url 'https://github.com/ARMmbed/mbedtls.git' + git_hashtag "v#{version}" binary_compression 'tar.zst' binary_sha256({ - aarch64: 'c96084c1a2d4b6781c349b1242a1cdeb156e789aebd74685ac1630bfc7fd68db', - armv7l: 'c96084c1a2d4b6781c349b1242a1cdeb156e789aebd74685ac1630bfc7fd68db', - i686: '026d9cffdfe2d199a6c291b2e4a3f1d441a0f10c04f068ad7f9533544d492051', - x86_64: '45cab571d615d7efe2a550a6647bbef370ea53d7cde330f5cf604d13ba2d869e' + aarch64: 'fb5f733356acdd57769af17d70d3369b2deb38ce130360ccbcd8a065ff61103e', + armv7l: 'fb5f733356acdd57769af17d70d3369b2deb38ce130360ccbcd8a065ff61103e', + i686: '316dddb6af3d89939333d256d97a256ce31947cda68ee55035b89901d9d49839', + x86_64: '4891dfd90df0c29e0646e27aceba87b8932e4b4a817ec995a928c82bcca5d7c9' }) depends_on 'glibc' # R + run_tests - cmake_options '-DUSE_SHARED_MBEDTLS_LIBRARY=ON \ - -DENABLE_ZLIB_SUPPORT=ON' + cmake_options '-DUSE_SHARED_MBEDTLS_LIBRARY=ON' end diff --git a/packages/libmetalink.rb b/packages/libmetalink.rb index 16ecc3ba8..f5bae8848 100644 --- a/packages/libmetalink.rb +++ b/packages/libmetalink.rb @@ -1,9 +1,9 @@ -require 'package' +require 'buildsystems/autotools' -class Libmetalink < Package +class Libmetalink < Autotools description 'libmetalink is a Metalink library written in C language.' homepage 'https://launchpad.net/libmetalink/' - version '0.1.3-4' + version '0.1.3-icu75.1' license 'MIT' compatibility 'all' source_url 'https://launchpad.net/libmetalink/trunk/libmetalink-0.1.3/+download/libmetalink-0.1.3.tar.xz' @@ -11,10 +11,10 @@ class Libmetalink < Package binary_compression 'tar.zst' binary_sha256({ - aarch64: '8bd31fde06e46219af5b677ba5c9b07a08791ac55e54210c5cffab26388765ae', - armv7l: '8bd31fde06e46219af5b677ba5c9b07a08791ac55e54210c5cffab26388765ae', - i686: 'bd310b53a21259a255b889a5bd45aa8be2e37fb27fa46e7335e5301e5527ded2', - x86_64: '8310e4105b2420764bad16dc53886172f7fe1bd80a87c2b22df3c4781db76077' + aarch64: '42cb115a3b2c323130bc34433ebfc14e63242a702fa0f28bda714564b22d0267', + armv7l: '42cb115a3b2c323130bc34433ebfc14e63242a702fa0f28bda714564b22d0267', + i686: 'c1b46a162c5ffbdc8f619161a71783510b481384376338d6dafcb32f7228baa4', + x86_64: '4295610c625ae49b93d8d98e7614b4c9fd3c664ca305720f0e34b99bfabde420' }) depends_on 'glibc' # R @@ -26,21 +26,8 @@ class Libmetalink < Package downloader 'https://launchpadlibrarian.net/380798344/0001-fix-covscan-issues.patch', 'd236dfa0d4a1938a40ff2ce4dd348c42b74ad68807df0f1b6ea69c11725fd9cf' system 'patch -Np1 -i 0001-fix-covscan-issues.patch' - system 'filefix' end - def self.build - system "./configure #{CREW_OPTIONS} \ - --with-libxml2 \ - --without-libexpat" - system 'make' - end - - def self.check - system 'make', 'check' - end - - def self.install - system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install' - end + configure_options '--with-libxml2 \ + --without-libexpat' end diff --git a/packages/librsvg.rb b/packages/librsvg.rb index 0ce32b9ce..cd56408cb 100644 --- a/packages/librsvg.rb +++ b/packages/librsvg.rb @@ -3,11 +3,11 @@ require 'buildsystems/autotools' class Librsvg < Autotools description 'SVG library for GNOME' homepage 'https://wiki.gnome.org/Projects/LibRsvg' - version '2.57.2' + version '2.58.2-icu75.1' license 'LGPL-2+' compatibility 'x86_64 aarch64 armv7l' source_url 'https://gitlab.gnome.org/GNOME/librsvg.git' - git_hashtag version + git_hashtag version.split('-').first binary_compression 'tar.zst' binary_sha256({ diff --git a/packages/libsass.rb b/packages/libsass.rb index 9ee84c764..518bc2f80 100644 --- a/packages/libsass.rb +++ b/packages/libsass.rb @@ -1,31 +1,22 @@ -require 'package' +require 'buildsystems/autotools' -class Libsass < Package +class Libsass < Autotools description 'LibSass is a C/C++ port of the Sass engine' homepage 'https://sass-lang.com/libsass' - version '3.6.5' + version '3.6.6' license 'MIT' compatibility 'all' source_url 'https://github.com/sass/libsass.git' git_hashtag version - binary_compression 'tpxz' + binary_compression 'tar.zst' binary_sha256({ - aarch64: 'da6e45c3477ba90ecf8a21b4594cd3354d4d092044f331eb10a5a1eb72950ca5', - armv7l: 'da6e45c3477ba90ecf8a21b4594cd3354d4d092044f331eb10a5a1eb72950ca5', - i686: '4cf9b50d8ebbb48b9e3645665bcf128c09308b6aed6fca21d2bb6d07ed9959de', - x86_64: 'af2364ca0715f59677cdc1c2b82264ea34640e1b4ce18eb1ab2b38ffa1f366d5' + aarch64: '54edb65b75e405ab734f847204f8b1ccfb583064afffb2698db29d4ec5573da1', + armv7l: '54edb65b75e405ab734f847204f8b1ccfb583064afffb2698db29d4ec5573da1', + i686: '0782e46f2985d8d7b5e5d3d6da925a86e4a326da305b8b2a6054ff7afd92516f', + x86_64: 'cd346d8a6208d342781864cfdfaebafccf06a1491c72b385b34d12cccb43d146' }) - def self.build - system 'autoreconf', '-i' - system "#{CREW_ENV_OPTIONS} \ - ./configure \ - #{CREW_OPTIONS}" - system 'make' - end - - def self.install - system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install' - end + depends_on 'gcc_lib' # R + depends_on 'glibc' # R end diff --git a/packages/libvisio.rb b/packages/libvisio.rb index 8bb020d51..9104dfe49 100644 --- a/packages/libvisio.rb +++ b/packages/libvisio.rb @@ -6,18 +6,18 @@ require 'buildsystems/autotools' class Libvisio < Autotools description 'Library providing ability to interpret and import visio diagrams' homepage 'https://wiki.documentfoundation.org/DLP/Libraries/libvisio' - version '0.1.7-2' + version '0.1.7-aac02f9-icu75.1' license 'LGPL' compatibility 'all' - source_url 'https://dev-www.libreoffice.org/src/libvisio/libvisio-0.1.7.tar.xz' - source_sha256 '8faf8df870cb27b09a787a1959d6c646faa44d0d8ab151883df408b7166bea4c' + source_url 'https://git.libreoffice.org/libvisio' + git_hashtag 'aac02f9141fcaf0acc1bce2ff6a5c2e9618f9235' binary_compression 'tar.zst' binary_sha256({ - aarch64: '881a0996ae47fc7f1402972814298d56a8f1d5e5d94b8c65f3d02a0a120d23d3', - armv7l: '881a0996ae47fc7f1402972814298d56a8f1d5e5d94b8c65f3d02a0a120d23d3', - i686: '51dc3a8c3c3e003423abcf95e2fe1306ef47e75e2311ed96aa747833e02c1ea3', - x86_64: '576f1a0274289b8ec2c4204af563e71e238824c2d03a2ff521077c90be6f7cb8' + aarch64: '32476941af3b6807de3e4086570718b6027d6acc9037a2f2e936511600b2005d', + armv7l: '32476941af3b6807de3e4086570718b6027d6acc9037a2f2e936511600b2005d', + i686: '3de266981909ae345bc768e3a53e00c35b2f38c9d645d2b7190fd9de8e47895b', + x86_64: 'a8e7e743e6499ce1625efb26bf1cd2af06fb7a3cbcf28ffb085e9439f987c6ae' }) depends_on 'boost' => :build diff --git a/packages/libxml2.rb b/packages/libxml2.rb index 4cc1548c0..efbf040e6 100644 --- a/packages/libxml2.rb +++ b/packages/libxml2.rb @@ -3,7 +3,7 @@ require 'buildsystems/cmake' class Libxml2 < CMake description 'Libxml2 is the XML C parser and toolkit developed for the Gnome project.' homepage 'http://xmlsoft.org/' - version '2.13.2-icu74.2-1' + version '2.13.3-icu75.1' license 'MIT' compatibility 'all' source_url 'https://gitlab.gnome.org/GNOME/libxml2.git' @@ -11,10 +11,10 @@ class Libxml2 < CMake binary_compression 'tar.zst' binary_sha256({ - aarch64: 'aec8024aa10271d1726573177ba1afd803be5a100115a072836dbb251c8d368f', - armv7l: 'aec8024aa10271d1726573177ba1afd803be5a100115a072836dbb251c8d368f', - i686: '875063bf41611b377e7325a096a26560028f0d37318badfe77bd4f9722c52677', - x86_64: '92f515d427069e0f3907ee608e3f64e89ae0d330548a9a32ed4d495e41763d9b' + aarch64: '7a39a86ec3fdbf16dd1102463d82b00eed1581e3dc284535a50cef00faf7819d', + armv7l: '7a39a86ec3fdbf16dd1102463d82b00eed1581e3dc284535a50cef00faf7819d', + i686: 'd2bf36872b3467a43b52764340e701efc711ebf6ffd64225346657a0b8d14eaf', + x86_64: '4e001b646c3d74ac82bf2af4fcfc33fe164011fd95a5e2ebde7514b026aef535' }) depends_on 'gcc_lib' # R @@ -24,6 +24,7 @@ class Libxml2 < CMake depends_on 'readline' # R depends_on 'zlib' # R + conflicts_ok gnome def self.patch diff --git a/packages/libxml2_autotools.rb b/packages/libxml2_autotools.rb new file mode 100644 index 000000000..aa91b1a6e --- /dev/null +++ b/packages/libxml2_autotools.rb @@ -0,0 +1,46 @@ +Package.load_package("#{__dir__}/libxml2.rb") +# cmake builds are dependent upon libxml2, so we need a libxml2 build +# done without using cmake. +require 'buildsystems/autotools' + +class Libxml2_autotools < Autotools + description 'Libxml2 is the XML C parser and toolkit developed for the Gnome project.' + homepage 'http://xmlsoft.org/' + version Libxml2.version + license 'MIT' + compatibility 'all' + source_url Libxml2.source_url + git_hashtag Libxml2.git_hashtag + binary_compression 'tar.zst' + + binary_sha256({ + aarch64: '4c09610ce86270d217ba4eefebee41b10fcce17c68a2e594e008ab4964c1a591', + armv7l: '4c09610ce86270d217ba4eefebee41b10fcce17c68a2e594e008ab4964c1a591', + i686: '3f680048525a86d159de286f9b8509295df5316c22a37cb95abc86c050cc22df', + x86_64: 'a96b4e07d84494e485dac0751af571e6cf37258514956195b9ad4e6095df01b0' + }) + + depends_on 'gcc_lib' # R + depends_on 'glibc' # R + depends_on 'icu4c' # R + depends_on 'ncurses' # R + depends_on 'readline' # R + depends_on 'zlib' # R + depends_on 'libxml2' # R + + conflicts_ok + gnome + + def self.patch + # Fix encoding.c:1961:31: error: ‘TRUE’ undeclared (first use in this function) + system "for f in $(grep -rl 'TRUE)'); do sed -i 's,TRUE),true),g' $f; done" + # Remove EBCDIC test since it fails. + # Check https://mail.gnome.org/archives/xml/2010-April/msg00010.html for details. + FileUtils.rm 'test/ebcdic_566012.xml' + end + + configure_options '--disable-static \ + --with-icu \ + --without-python \ + --without-lzma' +end diff --git a/packages/libxslt.rb b/packages/libxslt.rb index 94450ddd5..b8e8d984f 100644 --- a/packages/libxslt.rb +++ b/packages/libxslt.rb @@ -1,20 +1,20 @@ -require 'package' +require 'buildsystems/cmake' -class Libxslt < Package +class Libxslt < CMake description 'Libxslt is the XSLT C library developed for the GNOME project.' homepage 'https://gitlab.gnome.org/GNOME/libxslt/-/wikis/home' - version '1.1.34' + version '1.1.42-icu75.1' license 'MIT' compatibility 'all' - source_url 'http://xmlsoft.org/sources/libxslt-1.1.34.tar.gz' - source_sha256 '98b1bd46d6792925ad2dfe9a87452ea2adebf69dcb9919ffd55bf926a7f93f7f' - binary_compression 'tar.xz' + source_url 'https://gitlab.gnome.org/GNOME/libxslt.git' + git_hashtag "v#{version.split('-').first}" + binary_compression 'tar.zst' binary_sha256({ - aarch64: 'df33590a8edfc86f29fada7d5b44e5914651259015e8df726603a2ffdc23bd42', - armv7l: 'df33590a8edfc86f29fada7d5b44e5914651259015e8df726603a2ffdc23bd42', - i686: 'd201b063ce46e40d354c3e89472aafd54fa524bd57e70b6ab03219e4f165bd93', - x86_64: '2ead1e30cb028f2f299056f8eea5bfb318f7346c6a65cfa4a891672560ed26bc' + aarch64: '79a84b35213937c568b715b859049a1d4555f989ba1379a7328e106c385ea502', + armv7l: '79a84b35213937c568b715b859049a1d4555f989ba1379a7328e106c385ea502', + i686: '086d2c221318809d333c9424ee7714843975ecedab93efd2b7fed3254cc0b731', + x86_64: '57ea96a35e54f1c0c26645e847e1ccfdef098ab0a6fa86f825748f0817e1a010' }) depends_on 'docbook_xsl' => :build @@ -22,17 +22,7 @@ class Libxslt < Package depends_on 'libgcrypt' # R depends_on 'libgpg_error' # R depends_on 'libxml2' # R - depends_on 'py3_libxml2' => :build + depends_on 'icu4c' # R - def self.build - system './configure', - "--prefix=#{CREW_PREFIX}", - "--libdir=#{CREW_LIB_PREFIX}", - '--disable-static' - system 'make' - end - - def self.install - system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install' - end + cmake_options '-DLIBXSLT_WITH_PYTHON=OFF' end diff --git a/packages/tracker3_miners.rb b/packages/localsearch.rb similarity index 53% rename from packages/tracker3_miners.rb rename to packages/localsearch.rb index d518233f3..63af7c978 100644 --- a/packages/tracker3_miners.rb +++ b/packages/localsearch.rb @@ -1,22 +1,20 @@ -# Adapted from Arch Linux tracker3-miners PKGBUILD at: -# https://github.com/archlinux/svntogit-packages/raw/packages/tracker3-miners/trunk/PKGBUILD - require 'buildsystems/meson' -class Tracker3_miners < Meson +class Localsearch < Meson description 'Collection of data extractors for Tracker/Nepomuk' - homepage 'https://wiki.gnome.org/Projects/Tracker' - version '3.6.2' + homepage 'https://gitlab.gnome.org/GNOME/localsearch' + version '3.7.3-icu75.1' license 'GPLv2+' compatibility 'x86_64 aarch64 armv7l' - source_url 'https://gitlab.gnome.org/GNOME/tracker-miners.git' - git_hashtag version + min_glibc '2.37' + source_url 'https://gitlab.gnome.org/GNOME/localsearch.git' + git_hashtag version.split('-').first binary_compression 'tar.zst' binary_sha256({ - aarch64: 'fdc3d16188f3438d9af21fe4b321caa44143530ef775a655754f55e39940f989', - armv7l: 'fdc3d16188f3438d9af21fe4b321caa44143530ef775a655754f55e39940f989', - x86_64: '1486965568cb0e533eb87078efc3e6621b8553b8823ac054dd05f8d051bd0baa' + aarch64: 'ee07d7ac54e1e98360299f1deb15c754cc9bb826eae128e002e8f0fa4af730de', + armv7l: 'ee07d7ac54e1e98360299f1deb15c754cc9bb826eae128e002e8f0fa4af730de', + x86_64: 'ce85968eb93fe979aed0276475ed12ade0a0e1e99b182a32f01f6b644e9b25be' }) depends_on 'asciidoc' => :build @@ -24,7 +22,7 @@ class Tracker3_miners < Meson depends_on 'gcc_lib' => :build depends_on 'gexiv2' # R depends_on 'giflib' # R - depends_on 'glibc_lib' => :build + depends_on 'glibc_lib' # R depends_on 'glibc' # R depends_on 'glib' # R depends_on 'gstreamer' # R @@ -39,14 +37,15 @@ class Tracker3_miners < Meson depends_on 'libtiff' # R depends_on 'libxml2' # R depends_on 'poppler' # R - depends_on 'tracker3' # R + depends_on 'tinysparql' # R depends_on 'util_linux' # R depends_on 'vala' => :build gnome - meson_options "-Ddbus_services_dir=#{CREW_PREFIX}/share/dbus-1/services/ \ - -Dbattery_detection=none \ + meson_options "-Dbattery_detection=none \ + -Ddbus_services_dir=#{CREW_PREFIX}/share/dbus-1/services/ \ + -Dlandlock=disabled \ -Dman=false \ -Dsystemd_user_services=false" end diff --git a/packages/mold.rb b/packages/mold.rb index a0a99ea8d..c20a912a9 100644 --- a/packages/mold.rb +++ b/packages/mold.rb @@ -6,7 +6,7 @@ require 'buildsystems/cmake' class Mold < CMake description 'A Modern Linker' homepage 'https://github.com/rui314/mold' - version '2.32.1' + version '2.33.0' license 'MIT' compatibility 'all' source_url 'https://github.com/rui314/mold.git' @@ -14,10 +14,10 @@ class Mold < CMake binary_compression 'tar.zst' binary_sha256({ - aarch64: 'dd7209850b8c4047bc8db5887220a12a174cc904bf70da3744c7278f8da8d623', - armv7l: 'dd7209850b8c4047bc8db5887220a12a174cc904bf70da3744c7278f8da8d623', - i686: '85c060e00a6f772a1cce442b3fb31c62fda957f7b3fe64b8d844bf26c605aa05', - x86_64: 'eab88cd2847e86fdb447fd399cec7652677a91fccc0c4a3f9b6ff52bc4b9aee8' + aarch64: '2581e31c3d0b974b351232774bd5756adb6f54643b12f3fc05c15f5551cf4877', + armv7l: '2581e31c3d0b974b351232774bd5756adb6f54643b12f3fc05c15f5551cf4877', + i686: '5c38bb663bce3d96738f7556b2bf376f83ff69daaa7f62fe212e302fbcfcdad0', + x86_64: '90f684c1149f5df770395b9808488ebcb9e67014978a1baea93e2f527c1c8b28' }) depends_on 'gcc_lib' # R diff --git a/packages/mysql.rb b/packages/mysql.rb index da536020b..8219371d6 100644 --- a/packages/mysql.rb +++ b/packages/mysql.rb @@ -3,32 +3,33 @@ require 'buildsystems/cmake' class Mysql < CMake description "MySQL Community Edition is a freely downloadable version of the world's most popular open source database" homepage 'https://www.mysql.com/' - version '8.4.0' + version '8.4.2-icu75.1' license 'GPL-2' compatibility 'x86_64' # Only 64-bit platforms are supported, so this will work on aarch64 userspaces once those are supported. - source_url 'https://cdn.mysql.com/Downloads/MySQL-8.4/mysql-8.4.0.tar.gz' - source_sha256 '47a5433fcdd639db836b99e1b5459c2b813cbdad23ff2b5dd4ad27f792ba918e' + min_glibc '2.37' + source_url 'https://cdn.mysql.com/Downloads/MySQL-8.4/mysql-8.4.2.tar.gz' + source_sha256 '5657a78dc86bf0bf2227e0b05f8de5a2c447a816a112ffa26fa70083bcbe9814' binary_compression 'tar.zst' binary_sha256({ - x86_64: 'a8c56afb3c98bcb366e272beba199943279c4307d57e36f19e05e2fe810d650a' + x86_64: '5ce6d8be4a2660d05b7ec4892b09f17a7236881fcc34f9756c6102c5d2539791' }) - depends_on 'boost' - depends_on 'icu4c' - depends_on 'libcyrussasl' - depends_on 'libedit' - depends_on 'lz4' - depends_on 'openldap' - depends_on 'openssl' - depends_on 'protobuf' - depends_on 'rapidjson' - depends_on 'rpcsvc_proto' - depends_on 'zlib' - depends_on 'zstd' + depends_on 'boost' => :build depends_on 'gcc_lib' # R depends_on 'glibc_lib' # R + depends_on 'icu4c' => :build + depends_on 'libcyrussasl' => :build + depends_on 'libedit' # R depends_on 'libtirpc' # R + depends_on 'lz4' # R + depends_on 'openldap' => :build + depends_on 'openssl' # R + depends_on 'protobuf' # R + depends_on 'rapidjson' => :build + depends_on 'rpcsvc_proto' => :build + depends_on 'zlib' # R + depends_on 'zstd' # R def self.install system "DESTDIR=#{CREW_DEST_DIR} #{CREW_NINJA} -C builddir install" diff --git a/packages/nautilus.rb b/packages/nautilus.rb index 83175c788..e679a87b3 100644 --- a/packages/nautilus.rb +++ b/packages/nautilus.rb @@ -6,17 +6,18 @@ require 'buildsystems/meson' class Nautilus < Meson description 'Default file manager for GNOME' homepage 'https://wiki.gnome.org/Apps/Files' - version '46.rc' + version '46.2' license 'GPLv3' compatibility 'x86_64 aarch64 armv7l' + min_glibc '2.37' source_url 'https://gitlab.gnome.org/GNOME/nautilus.git' git_hashtag version binary_compression 'tar.zst' binary_sha256({ - aarch64: 'd608f85f6be5ac19407ef71df3f6e398bb6fd0a412a935063b8464cb7fcf6a55', - armv7l: 'd608f85f6be5ac19407ef71df3f6e398bb6fd0a412a935063b8464cb7fcf6a55', - x86_64: '5867de4e7b37bd255dcc087700866c36b465249549a718666c6cd834cbf7fe2a' + aarch64: 'a9108646b99aa5f1ed6a82fc6c841791eddddfaabebae08064e7dbcfb2d28ef7', + armv7l: 'a9108646b99aa5f1ed6a82fc6c841791eddddfaabebae08064e7dbcfb2d28ef7', + x86_64: '760d0a5029e887e93f849db2440b5b149dd7499e21b213b9ddc95ba7b997bfe5' }) depends_on 'appstream' => :build @@ -28,12 +29,12 @@ class Nautilus < Meson depends_on 'gcc_lib' => :build depends_on 'gdk_pixbuf' # R depends_on 'gexiv2' # R + depends_on 'glibc_lib' # R depends_on 'glibc' # R depends_on 'glib' # R depends_on 'gnome_autoar' # R depends_on 'gnome_desktop' # R depends_on 'gobject_introspection' => :build - depends_on 'graphene' => :build depends_on 'graphene' # R depends_on 'gstreamer' # R depends_on 'gtk3' => :build @@ -49,10 +50,9 @@ class Nautilus < Meson depends_on 'libjpeg_turbo' => :build depends_on 'libportal' # R depends_on 'libxml2' => :build - depends_on 'pango' => :build + depends_on 'localsearch' => :build depends_on 'pango' # R - depends_on 'tracker3_miners' => :build - depends_on 'tracker3' # R + depends_on 'tinysparql' # R depends_on 'vulkan_headers' => :build depends_on 'vulkan_icd_loader' => :build diff --git a/packages/ncurses.rb b/packages/ncurses.rb index da1671315..07a8d6e2f 100644 --- a/packages/ncurses.rb +++ b/packages/ncurses.rb @@ -6,7 +6,7 @@ require 'buildsystems/autotools' class Ncurses < Autotools description 'The ncurses (new curses) library is a free software emulation of curses in System V Release 4.0 (SVr4), and more. — Wide character' homepage 'https://www.gnu.org/software/ncurses/' - version '6_5_20240601' + version '6_5_20240727' license 'MIT' compatibility 'all' source_url 'https://github.com/ThomasDickey/ncurses-snapshots.git' @@ -14,10 +14,10 @@ class Ncurses < Autotools binary_compression 'tar.zst' binary_sha256({ - aarch64: '7ac860a7fa562cd70f74bf68a39b37aef9413f86c77b26b74255771bc729f80c', - armv7l: '7ac860a7fa562cd70f74bf68a39b37aef9413f86c77b26b74255771bc729f80c', - i686: 'bcf7897ca411ef693f37623f1d7aaa16484bbc3468c3b910dbfbf3fe71849a24', - x86_64: '9a8e253b28f6223171621e6723e58909b6757bc9dc5eac48a2e18b2c06d18faa' + aarch64: '89e7ce837045e170325cdceb7e94edb0b82276bc199eeb050d99d21bfe49d394', + armv7l: '89e7ce837045e170325cdceb7e94edb0b82276bc199eeb050d99d21bfe49d394', + i686: 'f8c8c8af6ea6d7eb63940130218d67ca250c75e54d651568b80925b946c2da26', + x86_64: '5039a63035d67af137ea55fc7c3a0db661e29ccb3a62b275477894e64c1b4c5c' }) depends_on 'gcc_lib' # R diff --git a/packages/pango.rb b/packages/pango.rb index f23de815f..f5317bd2a 100644 --- a/packages/pango.rb +++ b/packages/pango.rb @@ -4,7 +4,7 @@ require 'buildsystems/meson' class Pango < Meson description 'Pango is a library for laying out and rendering of text, with an emphasis on internationalization.' homepage 'https://pango.gnome.org/' - version '1.52.2' + version '1.54.0' license 'LGPL-2+ and FTL' compatibility 'x86_64 aarch64 armv7l' source_url 'https://gitlab.gnome.org/GNOME/pango.git' @@ -12,9 +12,9 @@ class Pango < Meson binary_compression 'tar.zst' binary_sha256({ - aarch64: 'bd55b1eb27d8106deaedb2a1af4bacea3c567f5bfbc037d9dde51f11b48e3454', - armv7l: 'bd55b1eb27d8106deaedb2a1af4bacea3c567f5bfbc037d9dde51f11b48e3454', - x86_64: 'dac956a0fb4c555d5aa7242876f150961eeb341ac35bda66833d8cfe8380b9e9' + aarch64: '68a5ce094545ce32662aede32d4f1c26222cc3ca66fdab7ce87f31dc9c721668', + armv7l: '68a5ce094545ce32662aede32d4f1c26222cc3ca66fdab7ce87f31dc9c721668', + x86_64: 'd30719f19fd95d01568bccd201408c27b6dc121fdb1d46bc5d58cb61beec7703' }) depends_on 'cairo' # R @@ -32,10 +32,11 @@ class Pango < Meson depends_on 'libxrender' # R depends_on 'xorg_proto' => :build - meson_options '-Dinstall-tests=false \ + meson_options '-Dbuild-examples=false \ + -Dbuild-testsuite=false \ -Dcairo=enabled \ - -Dfreetype=enabled \ + -Ddocumentation=false \ -Dfontconfig=enabled \ - -Dlibthai=disabled \ - -Dgtk_doc=false' + -Dfreetype=enabled \ + -Dlibthai=disabled' end diff --git a/packages/poppler.rb b/packages/poppler.rb index 56553e289..474e3e216 100644 --- a/packages/poppler.rb +++ b/packages/poppler.rb @@ -29,7 +29,7 @@ class Poppler < Package depends_on 'libjpeg_turbo' # R depends_on 'libpng' # R depends_on 'libtiff' # R - depends_on 'nspr' => :build + depends_on 'nss' => :build depends_on 'nss' # R depends_on 'openjpeg' # R depends_on 'poppler_data' => :build diff --git a/packages/postgresql.rb b/packages/postgresql.rb index 175b352d5..0cc7b6c1a 100644 --- a/packages/postgresql.rb +++ b/packages/postgresql.rb @@ -3,17 +3,17 @@ require 'package' class Postgresql < Package description 'PostgreSQL is a powerful, open source object-relational database system.' homepage 'https://www.postgresql.org' - version '16.2' + version '16.4-icu75.1' license 'PostgreSQL and GPL-2' compatibility 'x86_64 aarch64 armv7l' - source_url 'https://ftp.postgresql.org/pub/source/v16.2/postgresql-16.2.tar.bz2' - source_sha256 '446e88294dbc2c9085ab4b7061a646fa604b4bec03521d5ea671c2e5ad9b2952' + source_url "https://ftp.postgresql.org/pub/source/v#{version.split('-').first}/postgresql-#{version.split('-').first}.tar.bz2" + source_sha256 '971766d645aa73e93b9ef4e3be44201b4f45b5477095b049125403f9f3386d6f' binary_compression 'tar.zst' binary_sha256({ - aarch64: '14db30417e4b2ce3ccdef5ab1db9cab35ea40ef791b2e7f8d4c0f606b927a5c2', - armv7l: '14db30417e4b2ce3ccdef5ab1db9cab35ea40ef791b2e7f8d4c0f606b927a5c2', - x86_64: '7e61c80eeea5c1a7367d46ec04bfad0f91ee8e122931317b2c7c88d75358c14b' + aarch64: 'dd9f2e0d26ca6e2a67af92d5486216342b86e896d6853f9a528297f52824cdb5', + armv7l: 'dd9f2e0d26ca6e2a67af92d5486216342b86e896d6853f9a528297f52824cdb5', + x86_64: 'd90d4059bb2a6d1b128e80aeb5ead326d3f2ffa3bcaca00a5a12c8bea80071d0' }) depends_on 'brotli' => :build diff --git a/packages/py3_cfgv.rb b/packages/py3_cfgv.rb new file mode 100644 index 000000000..3b097dfd0 --- /dev/null +++ b/packages/py3_cfgv.rb @@ -0,0 +1,14 @@ +require 'buildsystems/pip' + +class Py3_cfgv < Pip + description 'Validate configuration and produce human readable error messages.' + homepage 'https://github.com/asottile/cfgv' + version '3.4.0-py3.12' + license 'MIT' + compatibility 'all' + source_url 'SKIP' + + depends_on 'python3' => :build + + no_compile_needed +end diff --git a/packages/py3_configparser.rb b/packages/py3_configparser.rb index 54be7cba0..0f5b08a3e 100644 --- a/packages/py3_configparser.rb +++ b/packages/py3_configparser.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_configparser < Pip description 'Configparser backports newer configparser modules to earlier python versions.' homepage 'https://github.com/jaraco/configparser/' - @_ver = '5.0.2' - version "#{@_ver}-py3.12" + version '5.0.2-py3.12' license 'MIT' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_dateutil.rb b/packages/py3_dateutil.rb index f6e598a66..33410e21b 100644 --- a/packages/py3_dateutil.rb +++ b/packages/py3_dateutil.rb @@ -3,12 +3,11 @@ require 'buildsystems/python' class Py3_dateutil < Python description 'Dateutil provides extensions to the standard Python datetime module.' homepage 'https://dateutil.readthedocs.io/' - @_ver = '2.8.2' - version "#{@_ver}-py3.12" + version '2.8.2-py3.12' license 'BSD-3 and Apache-2.0 or BSD-3' compatibility 'all' source_url 'https://github.com/dateutil/dateutil.git' - git_hashtag @_ver + git_hashtag version.split('-').first binary_compression 'tar.zst' binary_sha256({ diff --git a/packages/py3_identify.rb b/packages/py3_identify.rb new file mode 100644 index 000000000..d3a42952f --- /dev/null +++ b/packages/py3_identify.rb @@ -0,0 +1,14 @@ +require 'buildsystems/pip' + +class Py3_identify < Pip + description 'File identification library for Python' + homepage 'https://github.com/pre-commit/identify' + version '2.6.0-py3.12' + license 'MIT' + compatibility 'all' + source_url 'SKIP' + + depends_on 'python3' => :build + + no_compile_needed +end diff --git a/packages/py3_libxml2.rb b/packages/py3_libxml2.rb index 404505205..46a374694 100644 --- a/packages/py3_libxml2.rb +++ b/packages/py3_libxml2.rb @@ -4,23 +4,22 @@ Package.load_package("#{__dir__}/libxml2.rb") class Py3_libxml2 < Package description 'Libxml2-python provides access to libxml2 and libxslt in Python.' homepage 'https://gitlab.gnome.org/GNOME/libxml2/' - version '2.13.2-py3.12' + version Libxml2.version license 'MIT' compatibility 'all' - source_url 'https://gitlab.gnome.org/GNOME/libxml2.git' - git_hashtag "v#{version.split('-').first}" + source_url Libxml2.source_url + git_hashtag Libxml2.git_hashtag binary_compression 'tar.zst' binary_sha256({ - aarch64: '15c35359711c1cb7f4ea78d7637c955145e1628e78729f49e6377f3ecf121042', - armv7l: '15c35359711c1cb7f4ea78d7637c955145e1628e78729f49e6377f3ecf121042', - i686: 'fcb201b3f942e03466111d8240153a74791dfb05d963598710c59aa8f4a4d318', - x86_64: 'd2a77cc3852dfd53f1e46440ad79062e82e298dea75e028e9b9e10e3b3e1cd05' + aarch64: '8c23226248f7607cd21ce80117a40f3468f066e0d8748cf4183c4fff6fe5ddea', + armv7l: '8c23226248f7607cd21ce80117a40f3468f066e0d8748cf4183c4fff6fe5ddea', + i686: 'fef4655b6f08152a29da01e5daf78d8d39e49a44941b59452983ec45241abfb0', + x86_64: '49e28b37dc9ce0ba6c2efbdcea1ce85b8b600db7e54fc223a85a7eb6701d137e' }) depends_on 'glibc' # R depends_on 'libxml2' # R - depends_on 'libxslt' => :build depends_on 'py3_setuptools' => :build depends_on 'python3' # R depends_on 'zlib' # R diff --git a/packages/py3_mock.rb b/packages/py3_mock.rb index d1346bf42..f5e238a9e 100644 --- a/packages/py3_mock.rb +++ b/packages/py3_mock.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_mock < Pip description 'Mock is a testing library in Python.' homepage 'https://mock.readthedocs.org/' - @_ver = '4.0.3' - version "#{@_ver}-py3.12" + version '4.0.3-py3.12' license 'BSD-2' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_nodeenv.rb b/packages/py3_nodeenv.rb index 869dbe15a..64ddad53b 100644 --- a/packages/py3_nodeenv.rb +++ b/packages/py3_nodeenv.rb @@ -1,14 +1,13 @@ -require 'buildsystems/python' +require 'buildsystems/pip' -class Py3_nodeenv < Python +class Py3_nodeenv < Pip description 'Tool to create isolated node.js environments.' homepage 'https://github.com/ekalinin/nodeenv' - @_ver = '1.8.0' - version "#{@_ver}-py3.12" + version '1.9.1-py3.12' license 'Copyright (c) 2011, Eugene Kalinin' compatibility 'all' source_url 'https://github.com/ekalinin/nodeenv.git' - git_hashtag @_ver + git_hashtag version.split('-').first depends_on 'python3' diff --git a/packages/py3_pip.rb b/packages/py3_pip.rb index b2785a1f1..a7c44e388 100644 --- a/packages/py3_pip.rb +++ b/packages/py3_pip.rb @@ -3,12 +3,11 @@ require 'buildsystems/python' class Py3_pip < Python description 'Pip is the python package manager from the Python Packaging Authority.' homepage 'https://pip.pypa.io/' - @_ver = '24.0' - version "#{@_ver}-py3.12" + version '24.2-py3.12' license 'MIT' compatibility 'all' source_url 'https://github.com/pypa/pip.git' - git_hashtag @_ver + git_hashtag version.split('-').first depends_on 'python3', '< 3.13.0' conflicts_ok diff --git a/packages/py3_ply.rb b/packages/py3_ply.rb index 507a0700a..d9f51a49b 100644 --- a/packages/py3_ply.rb +++ b/packages/py3_ply.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_ply < Pip description 'Python Lex/Yacc is an implementation of lex and yacc parsing tools for Python.' homepage 'https://www.dabeaz.com/ply/index.html' - @_ver = '3.11' - version "#{@_ver}-py3.12" + version '3.11-py3.12' license 'BSD' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_pptx.rb b/packages/py3_pptx.rb index c1a20b041..768a4dc87 100644 --- a/packages/py3_pptx.rb +++ b/packages/py3_pptx.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_pptx < Pip description 'Python PPTX generates and manipulates Open XML PowerPoint files.' homepage 'https://github.com/scanny/python-pptx/' - @_ver = '0.6.21' - version "#{@_ver}-py3.12" + version '0.6.21-py3.12' license 'MIT' compatibility 'x86_64 aarch64 armv7l' source_url 'SKIP' diff --git a/packages/py3_pre_commit.rb b/packages/py3_pre_commit.rb index 9cfe84e7d..afab5e540 100644 --- a/packages/py3_pre_commit.rb +++ b/packages/py3_pre_commit.rb @@ -3,20 +3,25 @@ require 'buildsystems/pip' class Py3_pre_commit < Pip description 'A framework for managing and maintaining multi-language pre-commit hooks.' homepage 'https://pre-commit.com/' - version '3.7.1-py3.12' + version '3.8.0-py3.12' license 'MIT' compatibility 'all' source_url 'SKIP' binary_compression 'tar.zst' binary_sha256({ - aarch64: '3651fd8a932fa8d2d587070a8a46f7a59a27b76dd08a3f180f976bcc7cfe8f53', - armv7l: '3651fd8a932fa8d2d587070a8a46f7a59a27b76dd08a3f180f976bcc7cfe8f53', - i686: 'cbd4fee4a8941cc221f0148eb87561b52c19da296ab02d970f1e1166730bbc10', - x86_64: '6b13ce2d264adcd5261c8a7f75ce84b7b9c24548379c42f3a18e9d0f7c10dfe2' + aarch64: '1986a539c536d47d42567f0fe8d9b6a5d6a12285c52ececc48a48c2920b46fc2', + armv7l: '1986a539c536d47d42567f0fe8d9b6a5d6a12285c52ececc48a48c2920b46fc2', + i686: '1549d7f0841219a06dcd5ae4c9d31424d5322e7bb79aef4ace3549dd325d9931', + x86_64: '7fff6ebab0ea6cbc588677ccfc5b27f6237722ab02c9ed8180aa01aecdc83706' }) - depends_on 'python3' + depends_on 'py3_cfgv' + depends_on 'py3_identify' # L + depends_on 'py3_nodeenv' # L + depends_on 'py3_pyyaml' # L + depends_on 'py3_virtualenv' # L + depends_on 'python3' # R no_source_build diff --git a/packages/py3_py.rb b/packages/py3_py.rb index cd2f972ce..ceb75cd96 100644 --- a/packages/py3_py.rb +++ b/packages/py3_py.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_py < Pip description 'Py is a library with cross-python path, ini-parsing, io, code, log facilities.' homepage 'https://py.readthedocs.io/' - @_ver = '1.11.0' - version "#{@_ver}-py3.12" + version '1.11.0-py3.12' license 'MIT' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_pyasn1.rb b/packages/py3_pyasn1.rb index 4d3e20bc6..8c9da4501 100644 --- a/packages/py3_pyasn1.rb +++ b/packages/py3_pyasn1.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_pyasn1 < Pip description 'PyASN.1 is a generic ASN.1 library for Python' homepage 'https://github.com/etingof/pyasn1/' - @_ver = '0.4.8' - version "#{@_ver}-py3.12" + version '0.4.8-py3.12' license 'BSD-2' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_pycairo.rb b/packages/py3_pycairo.rb index 14d4722e6..3685a3499 100644 --- a/packages/py3_pycairo.rb +++ b/packages/py3_pycairo.rb @@ -3,12 +3,11 @@ require 'buildsystems/python' class Py3_pycairo < Python description 'Pycairo is a provides bindings for the cairo graphics library.' homepage 'https://cairographics.org/pycairo/' - @_ver = '1.25.0' - version "#{@_ver}-py3.12" + version '1.25.0-py3.12' license 'LGPL-2.1 or MPL-1.1' compatibility 'x86_64 aarch64 armv7l' source_url 'https://github.com/pygobject/pycairo.git' - git_hashtag "v#{@_ver}" + git_hashtag "v#{version.split('-').first}" binary_compression 'tar.zst' binary_sha256({ diff --git a/packages/py3_pycparser.rb b/packages/py3_pycparser.rb index 21a532f82..7bd3902c1 100644 --- a/packages/py3_pycparser.rb +++ b/packages/py3_pycparser.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_pycparser < Pip description 'PyCParser is a complete C99 parser in pure Python.' homepage 'https://github.com/eliben/pycparser/' - @_ver = '2.22' - version "#{@_ver}-py3.12" + version '2.22-py3.12' license 'BSD-3' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_pycryptodomex.rb b/packages/py3_pycryptodomex.rb index fb31b501c..553373d28 100644 --- a/packages/py3_pycryptodomex.rb +++ b/packages/py3_pycryptodomex.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_pycryptodomex < Pip description 'Pycryptodomex is a cryptographic library for Python.' homepage 'https://www.pycryptodome.org/' - @_ver = '3.19.0' - version "#{@_ver}-py3.12" + version '3.19.0-py3.12' license 'BSD and public-domain' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_pyelftools.rb b/packages/py3_pyelftools.rb index b1c768c9a..2143561f9 100644 --- a/packages/py3_pyelftools.rb +++ b/packages/py3_pyelftools.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_pyelftools < Pip description 'Pure-Python library for parsing and analyzing ELF files and DWARF debugging information.' homepage 'https://github.com/eliben/pyelftools/' - @_ver = '0.29' - version "#{@_ver}-py3.12" + version '0.29-py3.12' license 'public-domain' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_pygments.rb b/packages/py3_pygments.rb index ea5ff50a0..180b35c99 100644 --- a/packages/py3_pygments.rb +++ b/packages/py3_pygments.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_pygments < Pip description 'Python Syntax Highlighter' homepage 'https://pygments.org/' - @_ver = '2.18.0' - version "#{@_ver}-py3.12" + version '2.18.0-py3.12' license 'BSD-2' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_pyicu.rb b/packages/py3_pyicu.rb index 92765e5c8..783ded22d 100644 --- a/packages/py3_pyicu.rb +++ b/packages/py3_pyicu.rb @@ -1,21 +1,20 @@ -require 'buildsystems/python' +require 'buildsystems/pip' -class Py3_pyicu < Python +class Py3_pyicu < Pip description 'PyICU is a Python extension wrapping the ICU C++ API.' homepage 'https://pyicu.org/' - @_ver = '2.11' - version "#{@_ver}-py3.12" + version '2.13.1-icu75.1-py3.12' license 'MIT' compatibility 'all' source_url 'https://gitlab.pyicu.org/main/pyicu.git' - git_hashtag "v#{@_ver}" + git_hashtag "v#{version.split('-').first}" binary_compression 'tar.zst' binary_sha256({ - aarch64: 'd243b8816553c5445c02292bc1f54f3cc4cea42c44d8718f6ec52f1ceeacd147', - armv7l: 'd243b8816553c5445c02292bc1f54f3cc4cea42c44d8718f6ec52f1ceeacd147', - i686: '7823270efeb41822ba1b393f2ff01c05fcd0c2347993125cfc5afb1e76f9b978', - x86_64: 'd9e0708f07bebe04073a36ac927243a79a9bdd2cd76aba58e5564302b34cc75e' + aarch64: '932a8593f6cbd175a7a022c3d8a4cece0e99a62ce0b58c1f0a400055e6b00420', + armv7l: '932a8593f6cbd175a7a022c3d8a4cece0e99a62ce0b58c1f0a400055e6b00420', + i686: 'ab655db1f070b700cd8d47363a186a87922dea1f6a77dda8602cf9b0d15ad30a', + x86_64: '79d0f9f55ed714d5082593ce58d502ca4ff876198e08f79c736fa2732e2ea948' }) depends_on 'python3' => :build diff --git a/packages/py3_pyopenssl.rb b/packages/py3_pyopenssl.rb index acd5f92ae..c1d6b3de3 100644 --- a/packages/py3_pyopenssl.rb +++ b/packages/py3_pyopenssl.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_pyopenssl < Pip description 'PyOpenSSL is a Python wrapper module around the OpenSSL library.' homepage 'https://www.pyopenssl.org/' - @_ver = '21.0.0' - version "#{@_ver}-py3.12" + version '21.0.0-py3.12' license 'Apache-2.0' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_pyparsing.rb b/packages/py3_pyparsing.rb index 2278f4044..ffc85469a 100644 --- a/packages/py3_pyparsing.rb +++ b/packages/py3_pyparsing.rb @@ -3,12 +3,11 @@ require 'buildsystems/python' class Py3_pyparsing < Python description 'The pyparsing module is an alternative approach to creating and executing simple grammars, vs. the traditional lex/yacc approach, or the use of regular expressions.' homepage 'https://github.com/pyparsing/pyparsing/' - @_ver = '3.1.1' - version "#{@_ver}-py3.12" + version '3.1.1-py3.12' license 'MIT' compatibility 'all' source_url 'https://github.com/pyparsing/pyparsing.git' - git_hashtag @_ver + git_hashtag version.split('-').first binary_compression 'tar.zst' binary_sha256({ diff --git a/packages/py3_pypdf.rb b/packages/py3_pypdf.rb index b552793f7..87d2327c6 100644 --- a/packages/py3_pypdf.rb +++ b/packages/py3_pypdf.rb @@ -3,12 +3,11 @@ require 'buildsystems/python' class Py3_pypdf < Python description 'A pure-python PDF library capable of splitting, merging, cropping, and transforming the pages of PDF files.' homepage 'https://github.com/py-pdf/pypdf' - @_ver = '4.2.0' - version "#{@_ver}-py3.12" + version '4.2.0-py3.12' license 'BSD-3-Clause' compatibility 'all' source_url 'https://github.com/py-pdf/pypdf.git' - git_hashtag @_ver + git_hashtag version.split('-').first binary_compression 'tar.zst' binary_sha256({ diff --git a/packages/py3_pyproject_hooks.rb b/packages/py3_pyproject_hooks.rb index 16912e525..49d5e728d 100644 --- a/packages/py3_pyproject_hooks.rb +++ b/packages/py3_pyproject_hooks.rb @@ -3,12 +3,11 @@ require 'buildsystems/python' class Py3_pyproject_hooks < Python description 'This package contains wrappers to call hooks on build backends for pyproject.toml -based projects' homepage 'https://pyproject-hooks.readthedocs.io/' - @_ver = '1.0.0' - version "#{@_ver}-py3.12" + version '1.0.0-py3.12' license 'MIT' compatibility 'all' source_url 'https://github.com/pypa/pyproject-hooks.git' - git_hashtag "v#{@_ver}" + git_hashtag "v#{version.split('-').first}" binary_compression 'tar.zst' binary_sha256({ diff --git a/packages/py3_pyright.rb b/packages/py3_pyright.rb index 96ec338c9..01c81c544 100644 --- a/packages/py3_pyright.rb +++ b/packages/py3_pyright.rb @@ -3,13 +3,12 @@ require 'buildsystems/python' class Py3_pyright < Python description 'Static Type Checker for Python' homepage 'https://github.com/microsoft/pyright' - @_ver = '1.1.341' - version "#{@_ver}-py3.12" + version '1.1.341-py3.12' license 'MIT' compatibility 'all' min_glibc '2.28' source_url 'https://github.com/RobertCraigie/pyright-python.git' - git_hashtag "v#{@_ver}" + git_hashtag "v#{version.split('-').first}" depends_on 'python3' depends_on 'py3_nodeenv' diff --git a/packages/py3_pystemmer.rb b/packages/py3_pystemmer.rb index 3f7d31811..b9bc5ed07 100644 --- a/packages/py3_pystemmer.rb +++ b/packages/py3_pystemmer.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_pystemmer < Pip description 'Snowball stemming algorithms, for information retrieval' homepage 'http://snowball.tartarus.org' - @_ver = '2.0.1' - version "#{@_ver}-py3.12" + version '2.0.1-py3.12' license 'BSD MIT' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_pyte.rb b/packages/py3_pyte.rb index 177095c8c..252532753 100644 --- a/packages/py3_pyte.rb +++ b/packages/py3_pyte.rb @@ -3,12 +3,11 @@ require 'buildsystems/python' class Py3_pyte < Python description 'PyTE is a Simple VTXXX-compatible terminal emulator.' homepage 'https://github.com/selectel/pyte/' - @_ver = '0.8.1' - version "#{@_ver}-py3.12" + version '0.8.1-py3.12' license 'LGPL-3' compatibility 'all' source_url 'https://github.com/selectel/pyte.git' - git_hashtag @_ver + git_hashtag version.split('-').first binary_compression 'tar.zst' binary_sha256({ diff --git a/packages/py3_pytest.rb b/packages/py3_pytest.rb index 5530c38d0..37d2e02fa 100644 --- a/packages/py3_pytest.rb +++ b/packages/py3_pytest.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_pytest < Pip description 'Pytest is simple powerful testing with Python.' homepage 'https://pytest.org/' - @_ver = '6.2.5' - version "#{@_ver}-py3.12" + version '6.2.5-py3.12' license 'MIT' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_pytimeparse.rb b/packages/py3_pytimeparse.rb index 3b4d9ea11..74ee1cb65 100644 --- a/packages/py3_pytimeparse.rb +++ b/packages/py3_pytimeparse.rb @@ -3,12 +3,11 @@ require 'buildsystems/python' class Py3_pytimeparse < Python description 'Pytimeparse is a small Python module to parse various kinds of time expressions. ' homepage 'https://github.com/wroberts/pytimeparse/' - @_ver = '1.1.8' - version "#{@_ver}-py3.12" + version '1.1.8-py3.12' license 'MIT' compatibility 'all' source_url 'https://github.com/wroberts/pytimeparse.git' - git_hashtag @_ver + git_hashtag version.split('-').first binary_compression 'tar.zst' binary_sha256({ diff --git a/packages/py3_pytz.rb b/packages/py3_pytz.rb index a0199e849..f3cdcd227 100644 --- a/packages/py3_pytz.rb +++ b/packages/py3_pytz.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_pytz < Pip description 'pytz brings the Olson tz database into Python.' homepage 'https://pythonhosted.org/pytz/' - @_ver = '2023.3.post1' - version "#{@_ver}-py3.12" + version '2023.3.post1-py3.12' license 'MIT' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_pyudev.rb b/packages/py3_pyudev.rb index 1dc9218cc..f45aa327f 100644 --- a/packages/py3_pyudev.rb +++ b/packages/py3_pyudev.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_pyudev < Pip description 'Pyudev provides Python bindings for udev.' homepage 'https://pyudev.readthedocs.io/' - @_ver = '0.22' - version "#{@_ver}-py3.12" + version '0.22-py3.12' license 'LGPL-2.1+' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_pyyaml.rb b/packages/py3_pyyaml.rb index a7fe045bf..1b5e4811d 100644 --- a/packages/py3_pyyaml.rb +++ b/packages/py3_pyyaml.rb @@ -1,22 +1,23 @@ -require 'buildsystems/python' +require 'buildsystems/pip' -class Py3_pyyaml < Python +class Py3_pyyaml < Pip description 'PyYAML is a YAML parser and emitter for Python.' homepage 'https://pyyaml.org/' - @_ver = '6.0.1' - version "#{@_ver}-py3.12" + version '6.0.2-py3.12' license 'MIT' compatibility 'all' source_url 'https://github.com/yaml/pyyaml.git' - git_hashtag @_ver + git_hashtag version.split('-').first binary_compression 'tar.zst' binary_sha256({ - aarch64: 'bbc7b4b957aeface6608ead58485471925135277349e95b199c86af4c0a4b8a6', - armv7l: 'bbc7b4b957aeface6608ead58485471925135277349e95b199c86af4c0a4b8a6', - i686: 'd3aea082e6209a30b56ae96634d92db119daf8536a5a3f050219b90c5426264c', - x86_64: '3bedebe429f6ec3710043f45798815264c31b46325a79c3e96cfeb225ed7d0f1' + aarch64: '2215ad3e68ae779056258955c89d1a466e88312460ef608ea406d13b3e61780a', + armv7l: '2215ad3e68ae779056258955c89d1a466e88312460ef608ea406d13b3e61780a', + i686: 'ad0733204a5bb9fb168eb2164a0576a56d97cf7d5027a5226af404f49481fbcd', + x86_64: '1565ef6f148ff8c7c5578dc81a76f551f12e4f3b8e53d1aec8d0e4eda4196ee7' }) + depends_on 'glibc' # R + depends_on 'libyaml' # R depends_on 'python3' => :build end diff --git a/packages/py3_requests.rb b/packages/py3_requests.rb index 6f3dd7859..0cb35f925 100644 --- a/packages/py3_requests.rb +++ b/packages/py3_requests.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_requests < Pip description 'Requests is a simple, yet elegant, HTTP library.' homepage 'https://docs.python-requests.org/' - @_ver = '2.32.3' - version "#{@_ver}-py3.12" + version '2.32.3-py3.12' license 'Apache-2.0' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_retrying.rb b/packages/py3_retrying.rb index ea136b5ca..3fc0526e8 100644 --- a/packages/py3_retrying.rb +++ b/packages/py3_retrying.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_retrying < Pip description 'Retrying simplifies the task of adding retry behavior to just about anything.' homepage 'https://github.com/rholder/retrying/' - @_ver = '1.3.3' - version "#{@_ver}-py3.12" + version '1.3.3-py3.12' license 'Apache-2.0' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_ruff.rb b/packages/py3_ruff.rb index 22a4b4131..4a4982930 100644 --- a/packages/py3_ruff.rb +++ b/packages/py3_ruff.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_ruff < Pip description 'An extremely fast Python linter, written in Rust.' homepage 'https://docs.astral.sh/ruff' - @_ver = '0.1.3' - version "#{@_ver}-py3.12" + version '0.1.3-py3.12' license 'GPL-2.0' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_secretstorage.rb b/packages/py3_secretstorage.rb index 342d7a65a..6fa63d1d7 100644 --- a/packages/py3_secretstorage.rb +++ b/packages/py3_secretstorage.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_secretstorage < Pip description 'Python bindings to Freedesktop.org Secret Service API' homepage 'https://secretstorage.readthedocs.io/' - @_ver = '3.3.1' - version "#{@_ver}-py3.12" + version '3.3.1-py3.12' license 'BSD-3' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_semantic_version.rb b/packages/py3_semantic_version.rb index 8f620dffe..4f9c491c1 100644 --- a/packages/py3_semantic_version.rb +++ b/packages/py3_semantic_version.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_semantic_version < Pip description 'Semantic version implements the SemVer scheme.' homepage 'https://github.com/rbarrois/python-semanticversion/' - @_ver = '2.10.0' - version "#{@_ver}-py3.12" + version '2.10.0-py3.12' license 'BSD-2' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_setuptools.rb b/packages/py3_setuptools.rb index 8077f8d20..f3cd0f7d6 100644 --- a/packages/py3_setuptools.rb +++ b/packages/py3_setuptools.rb @@ -3,19 +3,18 @@ require 'buildsystems/python' class Py3_setuptools < Python description 'Setuptools is the python build system from the Python Packaging Authority.' homepage 'https://setuptools.readthedocs.io/' - @_ver = '68.2.2' - version "#{@_ver}-py3.12" + version '72.1.0-py3.12' license 'MIT' compatibility 'all' source_url 'https://github.com/pypa/setuptools.git' - git_hashtag "v#{@_ver}" + git_hashtag "v#{version.split('-').first}" binary_compression 'tar.zst' binary_sha256({ - aarch64: '129be5a5aee22967b1dedefc5def6f8d55dad13c52298c19f1aa42915c152937', - armv7l: '129be5a5aee22967b1dedefc5def6f8d55dad13c52298c19f1aa42915c152937', - i686: '946c19613522184203f826635982a84bc0bffc2e5cabe8fc107ff3e6af9d4fd2', - x86_64: '570386fa604d41e530902c684e7b9950452fcea39d237cef6bccdbacea9f1c01' + aarch64: '5365ac36cf205911283005414f50d2d1d100a527678b3343058abda6675cfff9', + armv7l: '5365ac36cf205911283005414f50d2d1d100a527678b3343058abda6675cfff9', + i686: 'd24f343a04d8cefdcb132c38c1d5cbee3992f72416eff1a4a5f9b5eb2e482c34', + x86_64: '416b19dfef5ab021a7248fe33f27082275e228ce8a0321227bd80695302d4e1f' }) depends_on 'python3', '< 3.13.0' diff --git a/packages/py3_setuptools_rust.rb b/packages/py3_setuptools_rust.rb index ac59fed09..9ef3eb8d9 100644 --- a/packages/py3_setuptools_rust.rb +++ b/packages/py3_setuptools_rust.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_setuptools_rust < Pip description 'Setuptools-rust provides rust support for setuptools.' homepage 'https://github.com/PyO3/setuptools-rust' - @_ver = '1.7.0' - version "#{@_ver}-py3.12" + version '1.7.0-py3.12' license 'MIT' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_setuptools_scm.rb b/packages/py3_setuptools_scm.rb index fdd5ea197..5eb2ad9c5 100644 --- a/packages/py3_setuptools_scm.rb +++ b/packages/py3_setuptools_scm.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_setuptools_scm < Pip description 'Setuptools-scm is the blessed package to manage your versions by scm tags.' homepage 'https://github.com/pypa/setuptools_scm' - @_ver = '8.0.4' - version "#{@_ver}-py3.12" + version '8.0.4-py3.12' license 'MIT' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_six.rb b/packages/py3_six.rb index 50ed93995..27b7a004a 100644 --- a/packages/py3_six.rb +++ b/packages/py3_six.rb @@ -3,12 +3,11 @@ require 'buildsystems/python' class Py3_six < Python description 'Six is a Python 2 and 3 compatibility library.' homepage 'https://six.readthedocs.io/' - @_ver = '1.16.0' - version "#{@_ver}-py3.12" + version '1.16.0-py3.12' license 'MIT' compatibility 'all' source_url 'https://github.com/benjaminp/six.git' - git_hashtag @_ver + git_hashtag version.split('-').first binary_compression 'tar.zst' binary_sha256({ diff --git a/packages/py3_smartypants.rb b/packages/py3_smartypants.rb index 3ad3af9a5..53ac83720 100644 --- a/packages/py3_smartypants.rb +++ b/packages/py3_smartypants.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_smartypants < Pip description 'Smartypants translates plain ASCII punctuation characters into "smart" typographic punctuation HTML entities.' homepage 'https://github.com/leohemsted/smartypants.py/' - @_ver = '2.0.1' - version "#{@_ver}-py3.12" + version '2.0.1-py3.12' license 'BSD' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_snowballstemmer.rb b/packages/py3_snowballstemmer.rb index 3307b8a39..3bfc65f20 100644 --- a/packages/py3_snowballstemmer.rb +++ b/packages/py3_snowballstemmer.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_snowballstemmer < Pip description 'Snowball stemming library collection for Python' homepage 'https://snowballstem.org' - @_ver = '2.1.0' - version "#{@_ver}-py3.12" + version '2.1.0-py3.12' license 'BSD' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_sortedcontainers.rb b/packages/py3_sortedcontainers.rb index 703eeb465..7036855bb 100644 --- a/packages/py3_sortedcontainers.rb +++ b/packages/py3_sortedcontainers.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_sortedcontainers < Pip description 'Python Sorted Container Types: Sorted List, Sorted Dict, and Sorted Set' homepage 'http://www.grantjenks.com/docs/sortedcontainers/' - @_ver = '2.4.0' - version "#{@_ver}-py3.12" + version '2.4.0-py3.12' license 'Apache-2.0' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_soupsieve.rb b/packages/py3_soupsieve.rb index 95c5acc09..cb3f599ea 100644 --- a/packages/py3_soupsieve.rb +++ b/packages/py3_soupsieve.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_soupsieve < Pip description 'CSS selector library designed to be used with Beautiful Soup 4.' homepage 'https://github.com/facelessuser/soupsieve' - @_ver = '2.5' - version "#{@_ver}-py3.12" + version '2.5-py3.12' license 'MIT' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_speechrecognition.rb b/packages/py3_speechrecognition.rb index 1e5852af0..18a0ad48f 100644 --- a/packages/py3_speechrecognition.rb +++ b/packages/py3_speechrecognition.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_speechrecognition < Pip description 'SpeechRecognition is a library for performing speech recognition, with support for several engines and APIs, online and offline.' homepage 'https://github.com/Uberi/speech_recognition/' - @_ver = '3.8.1' - version "#{@_ver}-py3.12" + version '3.8.1-py3.12' license 'BSD' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_sphinxcontrib_applehelp.rb b/packages/py3_sphinxcontrib_applehelp.rb index 947e9bca6..e91668275 100644 --- a/packages/py3_sphinxcontrib_applehelp.rb +++ b/packages/py3_sphinxcontrib_applehelp.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_sphinxcontrib_applehelp < Pip description 'sphinxcontrib-applehelp is a sphinx extension which outputs Apple help books.' homepage 'https://www.sphinx-doc.org/' - @_ver = '1.0.2' - version "#{@_ver}-py3.12" + version '2.0.0-py3.12' license 'BSD' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_sphinxcontrib_devhelp.rb b/packages/py3_sphinxcontrib_devhelp.rb index 09592fddb..22044ebed 100644 --- a/packages/py3_sphinxcontrib_devhelp.rb +++ b/packages/py3_sphinxcontrib_devhelp.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_sphinxcontrib_devhelp < Pip description 'Sphinxcontrib-devhelp is a sphinx extension which outputs a Devhelp document.' homepage 'https://www.sphinx-doc.org/' - @_ver = '1.0.2-883c' - version "#{@_ver}-py3.12" + version '2.0.0-py3.12' license 'BSD' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_sphinxcontrib_htmlhelp.rb b/packages/py3_sphinxcontrib_htmlhelp.rb index fd90377fe..45157a068 100644 --- a/packages/py3_sphinxcontrib_htmlhelp.rb +++ b/packages/py3_sphinxcontrib_htmlhelp.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_sphinxcontrib_htmlhelp < Pip description 'sphinxcontrib-htmlhelp is a sphinx extension which renders HTML help files.' homepage 'https://www.sphinx-doc.org/' - @_ver = '2.0.0' - version "#{@_ver}-py3.12" + version '2.1.0-py3.12' license 'BSD' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_sphinxcontrib_jsmath.rb b/packages/py3_sphinxcontrib_jsmath.rb index c44fe1d15..7263df74c 100644 --- a/packages/py3_sphinxcontrib_jsmath.rb +++ b/packages/py3_sphinxcontrib_jsmath.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_sphinxcontrib_jsmath < Pip description 'sphinxcontrib-jsmath is a sphinx extension which renders display math in HTML via JavaScript.' homepage 'https://www.sphinx-doc.org/' - @_ver = '1.0.1' - version "#{@_ver}-py3.12" + version '1.0.1-py3.12' license 'BSD' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_sphinxcontrib_qthelp.rb b/packages/py3_sphinxcontrib_qthelp.rb index c577667cf..a69e7b653 100644 --- a/packages/py3_sphinxcontrib_qthelp.rb +++ b/packages/py3_sphinxcontrib_qthelp.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_sphinxcontrib_qthelp < Pip description 'sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp document.' homepage 'https://www.sphinx-doc.org/' - @_ver = '1.0.3' - version "#{@_ver}-py3.12" + version '2.0.0-py3.12' license 'BSD' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_sphinxcontrib_serializinghtml.rb b/packages/py3_sphinxcontrib_serializinghtml.rb index 541804140..fe8b26b52 100644 --- a/packages/py3_sphinxcontrib_serializinghtml.rb +++ b/packages/py3_sphinxcontrib_serializinghtml.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_sphinxcontrib_serializinghtml < Pip description 'sphinxcontrib-serializinghtml is a sphinx extension which outputs "serialized" HTML files (json and pickle).' homepage 'https://www.sphinx-doc.org/' - @_ver = '1.1.5' - version "#{@_ver}-py3.12" + version '2.0.0-py3.12' license 'BSD' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_sqlalchemy.rb b/packages/py3_sqlalchemy.rb index f7433d95f..52a966b5d 100644 --- a/packages/py3_sqlalchemy.rb +++ b/packages/py3_sqlalchemy.rb @@ -3,12 +3,11 @@ require 'buildsystems/python' class Py3_sqlalchemy < Python description 'SQLalchemy is a database toolkit for Python.' homepage 'https://sqlalchemy.org' - @_ver = '2.0.21' - version "#{@_ver}-py3.12" + version '2.0.21-py3.12' license 'MIT' compatibility 'all' source_url 'https://github.com/sqlalchemy/sqlalchemy.git' - git_hashtag "rel_#{@_ver.gsub('.', '_')}" + git_hashtag "rel_#{version.split('-').first.gsub('.', '_')}" binary_compression 'tar.zst' binary_sha256({ diff --git a/packages/py3_terminaltables.rb b/packages/py3_terminaltables.rb index e41b68ba5..d8d99111c 100644 --- a/packages/py3_terminaltables.rb +++ b/packages/py3_terminaltables.rb @@ -5,8 +5,7 @@ require 'buildsystems/pip' class Py3_terminaltables < Pip description 'Terminaltables generates simple tables in terminals from a nested list of strings.' homepage 'https://robpol86.github.io/terminaltables/' - @_ver = '3.1.0' - version "#{@_ver}-py3.12" + version '3.1.0-py3.12' license 'MIT' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_text_unidecode.rb b/packages/py3_text_unidecode.rb index 9b0aa84f5..0212c5023 100644 --- a/packages/py3_text_unidecode.rb +++ b/packages/py3_text_unidecode.rb @@ -3,12 +3,11 @@ require 'buildsystems/python' class Py3_text_unidecode < Python description 'Text-unicode is the most basic Text::Unidecode port.' homepage 'https://github.com/kmike/text-unidecode/' - @_ver = '1.3' - version "#{@_ver}-py3.12" + version '1.3-py3.12' license 'MIT' compatibility 'all' source_url 'https://github.com/kmike/text-unidecode.git' - git_hashtag @_ver + git_hashtag version.split('-').first binary_compression 'tar.zst' binary_sha256({ diff --git a/packages/py3_toml.rb b/packages/py3_toml.rb index 6b81f9a64..d34e6c774 100644 --- a/packages/py3_toml.rb +++ b/packages/py3_toml.rb @@ -4,7 +4,7 @@ class Py3_toml < Pip description 'Toml is a Python Library for Tom\'s Obvious, Minimal Language.' homepage 'https://github.com/uiri/toml/' @_ver = '0.10.2' - version "#{@_ver}-py3.12" + version '0.10.2-py3.12' license 'MIT' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_tomli.rb b/packages/py3_tomli.rb index 32548ccb2..5542366de 100644 --- a/packages/py3_tomli.rb +++ b/packages/py3_tomli.rb @@ -4,11 +4,11 @@ class Py3_tomli < Python description "Tomli is a lil' TOML parser." homepage 'https://github.com/hukkin/tomli/' @_ver = '2.0.1' - version "#{@_ver}-py3.12" + version '2.0.1-py3.12' license 'MIT' compatibility 'all' source_url 'https://github.com/hukkin/tomli.git' - git_hashtag @_ver + git_hashtag version.split('-').first binary_compression 'tar.zst' binary_sha256({ diff --git a/packages/py3_tomli_w.rb b/packages/py3_tomli_w.rb index 1a835f043..897852dba 100644 --- a/packages/py3_tomli_w.rb +++ b/packages/py3_tomli_w.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_tomli_w < Pip description "Tomli-w is a lil' TOML writer." homepage 'https://github.com/hukkin/tomli-w/' - @_ver = '1.0.0' - version "#{@_ver}-py3.12" + version '1.0.0-py3.12' license 'MIT' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_tox.rb b/packages/py3_tox.rb index 2d47dce0e..e60308fda 100644 --- a/packages/py3_tox.rb +++ b/packages/py3_tox.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_tox < Pip description 'Command line driven CI frontend and development task automation tool.' homepage 'https://tox.readthedocs.io/' - @_ver = '3.24.4' - version "#{@_ver}-py3.12" + version '3.24.4-py3.12' license 'MIT' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_trove_classifiers.rb b/packages/py3_trove_classifiers.rb index 98f29e424..7439c5a09 100644 --- a/packages/py3_trove_classifiers.rb +++ b/packages/py3_trove_classifiers.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_trove_classifiers < Pip description 'Canonical source for classifiers on PyPI.' homepage 'https://github.com/pypa/trove-classifiers' - @_ver = '2023.9.19' - version "#{@_ver}-py3.12" + version '2023.9.19-py3.12' license 'MIT' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_typing_extensions.rb b/packages/py3_typing_extensions.rb index 924880557..ac18392be 100644 --- a/packages/py3_typing_extensions.rb +++ b/packages/py3_typing_extensions.rb @@ -3,12 +3,11 @@ require 'package' class Py3_typing_extensions < Package description 'Backported and Experimental Type Hints for Python 3.5+' homepage 'https://github.com/python/typing/tree/master/typing_extensions' - @_ver = '4.2.0' - version "#{@_ver}-py3.12" + version '4.2.0-py3.12' license 'MIT' compatibility 'all' source_url 'https://github.com/python/typing.git' - git_hashtag @_ver + git_hashtag version.split('-').first binary_compression 'tar.zst' binary_sha256({ diff --git a/packages/py3_typogrify.rb b/packages/py3_typogrify.rb index 0edf91a8a..9716381fd 100644 --- a/packages/py3_typogrify.rb +++ b/packages/py3_typogrify.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_typogrify < Pip description 'Typogrify provides filters to enhance web typography.' homepage 'https://python-markdown.github.io/' - @_ver = '2.0.7' - version "#{@_ver}-py3.12" + version '2.0.7-py3.12' license 'BSD' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_tzlocal.rb b/packages/py3_tzlocal.rb index 298d8cc83..a42e24ae0 100644 --- a/packages/py3_tzlocal.rb +++ b/packages/py3_tzlocal.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_tzlocal < Pip description 'Tzlocal provides tzinfo object for the local timezone.' homepage 'https://github.com/regebro/tzlocal/' - @_ver = '4.1' - version "#{@_ver}-py3.12" + version '4.1-py3.12' license 'MIT' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_unsupported_python.rb b/packages/py3_unsupported_python.rb index 5b98e1b38..3a25754b8 100644 --- a/packages/py3_unsupported_python.rb +++ b/packages/py3_unsupported_python.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_unsupported_python < Pip description 'This package can be used as a conditional dependency to indicate lack of support for particular versions of Python.' homepage 'https://github.com/ntessore/unsupported-python' - @_ver = '1.0.0' - version "#{@_ver}-py3.12" + version '1.0.0-py3.12' license 'GPL-3+' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_urwid.rb b/packages/py3_urwid.rb index 585076ff2..8ff03d68e 100644 --- a/packages/py3_urwid.rb +++ b/packages/py3_urwid.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_urwid < Pip description 'Urwid is a full-featured console user interface library.' homepage 'http://urwid.org/' - @_ver = '2.1.2' - version "#{@_ver}-py3.12" + version '2.1.2-py3.12' license 'LGPL-2.1' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_wcwidth.rb b/packages/py3_wcwidth.rb index d2d2f5bb5..dab1c81c3 100644 --- a/packages/py3_wcwidth.rb +++ b/packages/py3_wcwidth.rb @@ -3,12 +3,11 @@ require 'buildsystems/python' class Py3_wcwidth < Python description 'WCWidth measures the displayed width of unicode strings in a terminal.' homepage 'https://github.com/jquast/wcwidth/' - @_ver = '0.2.8' - version "#{@_ver}-py3.12" + version '0.2.8-py3.12' license 'MIT' compatibility 'all' source_url 'https://github.com/jquast/wcwidth.git' - git_hashtag @_ver + git_hashtag version.split('-').first binary_compression 'tar.zst' binary_sha256({ diff --git a/packages/py3_websockets.rb b/packages/py3_websockets.rb index 2227a31be..0369306a9 100644 --- a/packages/py3_websockets.rb +++ b/packages/py3_websockets.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_websockets < Pip description ' Library for building WebSocket servers and clients in Python' homepage 'https://websockets.readthedocs.io/' - @_ver = '12.0' - version "#{@_ver}-py3.12" + version '12.0-py3.12' license 'BSD-3' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_werkzeug.rb b/packages/py3_werkzeug.rb index 4ef49f1ff..e215e06e6 100644 --- a/packages/py3_werkzeug.rb +++ b/packages/py3_werkzeug.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_werkzeug < Pip description 'Werkzeug is a comprehensive WSGI web application library.' homepage 'https://palletsprojects.com/p/werkzeug/' - @_ver = '2.0.2' - version "#{@_ver}-py3.12" + version '2.0.2-py3.12' license 'BSD-3' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_wheel.rb b/packages/py3_wheel.rb index a30744d9c..b73531c1b 100644 --- a/packages/py3_wheel.rb +++ b/packages/py3_wheel.rb @@ -3,12 +3,11 @@ require 'buildsystems/python' class Py3_wheel < Python description 'Wheel is the binary package format for python.' homepage 'https://wheel.readthedocs.io/' - @_ver = '0.41.2' - version "#{@_ver}-py3.12" + version '0.41.2-py3.12' license 'MIT' compatibility 'all' source_url 'https://github.com/pypa/wheel.git' - git_hashtag @_ver + git_hashtag version.split('-').first binary_compression 'tar.zst' binary_sha256({ diff --git a/packages/py3_xlrd.rb b/packages/py3_xlrd.rb index 15e70cf89..45b1f0d2f 100644 --- a/packages/py3_xlrd.rb +++ b/packages/py3_xlrd.rb @@ -3,12 +3,11 @@ require 'buildsystems/python' class Py3_xlrd < Python description 'XLRD is a library to extract data from Microsoft Excel (tm) spreadsheet files.' homepage 'https://xlrd.readthedocs.io/' - @_ver = '2.0.1' - version "#{@_ver}-py3.12" + version '2.0.1-py3.12' license 'BSD' compatibility 'all' source_url 'https://github.com/python-excel/xlrd.git' - git_hashtag @_ver + git_hashtag version.split('-').first binary_compression 'tar.zst' binary_sha256({ diff --git a/packages/py3_xlsxwriter.rb b/packages/py3_xlsxwriter.rb index 9cad6cc2c..fd0569b29 100644 --- a/packages/py3_xlsxwriter.rb +++ b/packages/py3_xlsxwriter.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_xlsxwriter < Pip description 'XlsxWriter is a Python module for creating Excel XLSX files.' homepage 'https://xlsxwriter.readthedocs.io/' - @_ver = '3.0.1' - version "#{@_ver}-py3.12" + version '3.0.1-py3.12' license 'BSD' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_xmltodict.rb b/packages/py3_xmltodict.rb index 33452528b..857ec097c 100644 --- a/packages/py3_xmltodict.rb +++ b/packages/py3_xmltodict.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_xmltodict < Pip description 'XMLtoDict makes working with XML feel like you are working with JSON.' homepage 'https://github.com/martinblech/xmltodict/' - @_ver = '0.12.0' - version "#{@_ver}-py3.12" + version '0.12.0-py3.12' license 'MIT' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_yamllint.rb b/packages/py3_yamllint.rb index f214f2943..e394f3ecb 100644 --- a/packages/py3_yamllint.rb +++ b/packages/py3_yamllint.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_yamllint < Pip description 'YAMLlint is a linter for YAML files.' homepage 'https://github.com/adrienverge/yamllint/' - @_ver = '1.26.3' - version "#{@_ver}-py3.12" + version '1.26.3-py3.12' license 'GPL-3' compatibility 'all' source_url 'SKIP' diff --git a/packages/py3_zcmds.rb b/packages/py3_zcmds.rb index 7e557b73d..e6e202479 100644 --- a/packages/py3_zcmds.rb +++ b/packages/py3_zcmds.rb @@ -3,8 +3,7 @@ require 'buildsystems/python' class Py3_zcmds < Python description 'Cross platform(ish) productivity commands written in python' homepage 'https://github.com/zackees/zcmds' - @_ver = '1.1.18-1c3965' - version "#{@_ver}-py3.12" + version '1.1.18-1c3965-py3.12' license 'MIT' compatibility 'all' source_url 'https://github.com/zackees/zcmds.git' diff --git a/packages/py3_zipp.rb b/packages/py3_zipp.rb index ed014e50d..08374990a 100644 --- a/packages/py3_zipp.rb +++ b/packages/py3_zipp.rb @@ -3,8 +3,7 @@ require 'buildsystems/pip' class Py3_zipp < Pip description 'Zipp is a backport of pathlib-compatible object wrapper for zip files.' homepage 'https://github.com/jaraco/zipp/' - @_ver = '3.6.0' - version "#{@_ver}-py3.12" + version '3.6.0-py3.12' license 'MIT' compatibility 'all' source_url 'SKIP' diff --git a/packages/python3.rb b/packages/python3.rb index 92c583d44..6a1bc9209 100644 --- a/packages/python3.rb +++ b/packages/python3.rb @@ -3,18 +3,18 @@ require 'package' class Python3 < Package description 'Python is a programming language that lets you work quickly and integrate systems more effectively.' homepage 'https://www.python.org/' - version '3.12.4' + version '3.12.5' license 'PSF-2.0' compatibility 'all' source_url "https://www.python.org/ftp/python/#{version}/Python-#{version}.tar.xz" - source_sha256 'f6d419a6d8743ab26700801b4908d26d97e8b986e14f95de31b32de2b0e79554' + source_sha256 'fa8a2e12c5e620b09f53e65bcd87550d2e5a1e2e04bf8ba991dcc55113876397' binary_compression 'tar.zst' binary_sha256({ - aarch64: 'f0bfcd80509e4033c28b3382f3a416b83dcde5efbdcbd7052ca49a7b8269bc7b', - armv7l: 'f0bfcd80509e4033c28b3382f3a416b83dcde5efbdcbd7052ca49a7b8269bc7b', - i686: '44905c28ef097fe5cbeb44410bd0d36694dbfb4f417c1ae4662d09e0f0a17bd6', - x86_64: 'c3c7fdb3017d800b45858863d19641e86ca608aedc3e60a45b6454b18d3f8951' + aarch64: 'cf157b5e1e437ede3c57b68ca6c24ddc684e6bbcfa8b8fe20439226487429893', + armv7l: 'cf157b5e1e437ede3c57b68ca6c24ddc684e6bbcfa8b8fe20439226487429893', + i686: 'e4496c85ceb4dda9621ed519921d11eee43bdb1e06cc872913a981ba7167a03f', + x86_64: 'b66100c8964759d31c6339de2bd5eac586a59c8caf51fbf326ddd8c077484366' }) depends_on 'autoconf_archive' => :build diff --git a/packages/r.rb b/packages/r.rb index 68fe7e08b..1f79107d3 100644 --- a/packages/r.rb +++ b/packages/r.rb @@ -3,17 +3,17 @@ require 'buildsystems/autotools' class R < Autotools description 'R is a free software environment for statistical computing and graphics.' homepage 'https://www.r-project.org/' - version '4.3.2' + version '4.4.1-icu75.1' license 'GPL-2 or GPL-3 and LGPL-2.1' compatibility 'x86_64 aarch64 armv7l' - source_url 'https://cran.r-project.org/src/base/R-4/R-4.3.2.tar.gz' - source_sha256 'b3f5760ac2eee8026a3f0eefcb25b47723d978038eee8e844762094c860c452a' + source_url 'https://cran.r-project.org/src/base/R-4/R-4.4.1.tar.gz' + source_sha256 'b4cb675deaaeb7299d3b265d218cde43f192951ce5b89b7bb1a5148a36b2d94d' binary_compression 'tar.zst' binary_sha256({ - aarch64: 'd6907d92580d0ca488c5dcfc7c274b09aed94d3fd1ff500442f7101616c1cf6d', - armv7l: 'd6907d92580d0ca488c5dcfc7c274b09aed94d3fd1ff500442f7101616c1cf6d', - x86_64: 'def76c5bcfd0f929fe5579e4de4850276c4c359fb1b4e6a1375de63717d5a9a2' + aarch64: '535ad3443e5f34b8a08359322672f3d7d09ba2582e381bda1606503c6a1cbcf7', + armv7l: '535ad3443e5f34b8a08359322672f3d7d09ba2582e381bda1606503c6a1cbcf7', + x86_64: '48a56c97776b110335d43319e429f75731ec6e200c26e2f87677cdf77e1026dd' }) depends_on 'bzip2' # R @@ -23,6 +23,7 @@ class R < Autotools depends_on 'glib' # R depends_on 'icu4c' # R depends_on 'lapack' # R + depends_on 'libdeflate' # R depends_on 'libice' # R depends_on 'libjpeg_turbo' # R depends_on 'libpng' # R diff --git a/packages/ruby_highline.rb b/packages/ruby_highline.rb new file mode 100644 index 000000000..561ca3979 --- /dev/null +++ b/packages/ruby_highline.rb @@ -0,0 +1,13 @@ +require 'buildsystems/ruby' + +class Ruby_highline < RUBY + description 'A higher level command-line oriented interface.' + homepage 'https://github.com/JEG2/highline' + version '3.1.0-ruby-3.3' + license 'GPL' + compatibility 'all' + source_url 'SKIP' + + conflicts_ok + no_compile_needed +end diff --git a/packages/ruby_pry_byebug.rb b/packages/ruby_pry_byebug.rb new file mode 100644 index 000000000..14a5540a7 --- /dev/null +++ b/packages/ruby_pry_byebug.rb @@ -0,0 +1,42 @@ +require 'buildsystems/ruby' + +class Ruby_pry_byebug < RUBY + description 'Adds step-by-step debugging and stack navigation capabilities to pry using byebug.' + homepage 'https://github.com/deivid-rodriguez/pry-byebug' + version '3.10.1-ruby-3.3' + license 'MIT' + compatibility 'all' + source_url 'SKIP' + + conflicts_ok + no_compile_needed + + def self.postinstall + File.write "#{HOME}/.pryrc", <<~PRY_DEBUG_EOF + if defined?(PryByebug) + Pry.commands.alias_command 'c', 'continue' + Pry.commands.alias_command 's', 'step' + Pry.commands.alias_command 'n', 'next' + Pry.commands.alias_command 'f', 'finish' + end + # Hit Enter to repeat last command + Pry::Commands.command /^$/, "repeat last command" do + pry_instance.run_command Pry.history.to_a.last + end + PRY_DEBUG_EOF + end + + def self.remove + config_file = "#{HOME}/.pryrc" + if File.file? config_file + print "Would you like to remove the #{name} config file: #{config_file}? [y/N] " + case $stdin.gets.chomp.downcase + when 'y', 'yes' + FileUtils.rm_rf config_file + puts "#{config_file} removed.".lightgreen + else + puts "#{config_file} saved.".lightgreen + end + end + end +end diff --git a/packages/sassc.rb b/packages/sassc.rb index 1bd7b4c41..967be27e7 100644 --- a/packages/sassc.rb +++ b/packages/sassc.rb @@ -17,9 +17,9 @@ class Sassc < Package x86_64: '1d2cc3adbb8fdab70a69cc32975f10ca8c382fe04402d9717889787bcc580ffb' }) - depends_on 'libsass' depends_on 'gcc_lib' # R depends_on 'glibc' # R + depends_on 'libsass' # R def self.build system 'autoreconf -i' diff --git a/packages/sdl2_ttf.rb b/packages/sdl2_ttf.rb new file mode 100644 index 000000000..f8253a581 --- /dev/null +++ b/packages/sdl2_ttf.rb @@ -0,0 +1,27 @@ +# Adapted from Arch Linux sdl_ttf PKGBUILD at: +# https://gitlab.archlinux.org/archlinux/packaging/packages/sdl_ttf/-/blob/main/PKGBUILD?ref_type=heads + +require 'buildsystems/cmake' + +class Sdl2_ttf < CMake + description 'A library that allows you to use TrueType fonts in your SDL applications' + homepage 'https://www.libsdl.org/projects/SDL_ttf/' + version '2.22.0' + license 'zlib' + compatibility 'x86_64 aarch64 armv7l' + source_url 'https://github.com/libsdl-org/SDL_ttf.git' + git_hashtag "release-#{version}" + binary_compression 'tar.zst' + + binary_sha256({ + aarch64: 'a0b3b7629948ab5af134c8f2e33340d0c95f46ebdd516193f44f66278433b7cf', + armv7l: 'a0b3b7629948ab5af134c8f2e33340d0c95f46ebdd516193f44f66278433b7cf', + i686: '6a1af809ce6d0fc507b1b857b8f0803c6aded4e816d3c454e4e59b0f5ed4acca', + x86_64: '96673f6e91c2dddb26bb511cbdafcb6a1e853557fb545504d5e33b9ca9d1a588' + }) + + depends_on 'freetype' # R + depends_on 'glibc' # R + depends_on 'libsdl2' # R + git_fetchtags +end diff --git a/packages/sdl3.rb b/packages/sdl3.rb new file mode 100644 index 000000000..9ad6dcb64 --- /dev/null +++ b/packages/sdl3.rb @@ -0,0 +1,41 @@ +# Adapted from Arch Linux sdl3 PKGBUILD at: +# https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=sdl3 + +require 'buildsystems/cmake' + +class Sdl3 < CMake + description 'A library for portable low-level access to a video framebuffer, audio output, mouse, and keyboard Version 3' + homepage 'https://www.libsdl.org' + @_ver = '4cc3410dce50cefce98d3cf3cf1bc8eca83b862a' + version "3.1.2-#{@_ver[0..6]}" + license 'zlib' + compatibility 'x86_64 aarch64 armv7l' + source_url 'https://github.com/libsdl-org/SDL.git' + git_hashtag @_ver + binary_compression 'tar.zst' + + binary_sha256({ + aarch64: 'e0195301acfa082d4c5f0e6a10a4d3a61fca0255309bdce5ae4490cbbf2a90fc', + armv7l: 'e0195301acfa082d4c5f0e6a10a4d3a61fca0255309bdce5ae4490cbbf2a90fc', + x86_64: 'e1ae3a011af30355113c47f0c5ab458f982aecad2ea6aac67b80fce76364873b' + }) + + depends_on 'libxext' => :build + depends_on 'libxrender' => :build + depends_on 'libx11' => :build + depends_on 'libxcursor' => :build + depends_on 'libusb' => :build + depends_on 'alsa_lib' => :build + depends_on 'mesa' => :build + depends_on 'pulseaudio' => :build + depends_on 'libxrandr' => :build + depends_on 'libxinerama' => :build + depends_on 'wayland' => :build + depends_on 'libxkbcommon' => :build + depends_on 'glibc' # R + + cmake_options '-DSDL_HIDAPI_LIBUSB=OFF \ + -DSDL_RPI=OFF \ + -DSDL_STATIC=OFF \ + -DSDL_RPATH=OFF' +end diff --git a/packages/sdl3_ttf.rb b/packages/sdl3_ttf.rb new file mode 100644 index 000000000..cc55c23d1 --- /dev/null +++ b/packages/sdl3_ttf.rb @@ -0,0 +1,29 @@ +# Adapted from Arch Linux sdl_ttf PKGBUILD at: +# https://gitlab.archlinux.org/archlinux/packaging/packages/sdl_ttf/-/blob/main/PKGBUILD?ref_type=heads + +require 'buildsystems/cmake' + +class Sdl3_ttf < CMake + description 'A library that allows you to use TrueType fonts in your SDL applications' + homepage 'https://www.libsdl.org/projects/SDL_ttf/' + @_ver = '22347419ee08e49d77411c680f15e314ef870ab7' + version "3.0.0-#{@_ver[0..6]}" + license 'Zlib' + compatibility 'x86_64 aarch64 armv7l' + source_url 'https://github.com/libsdl-org/SDL_ttf.git' + git_hashtag @_ver + binary_compression 'tar.zst' + + binary_sha256({ + aarch64: '2b881bf9b012d17ab4c363c427507ca2543b353e3b7c5ce307a233dc385f0cad', + armv7l: '2b881bf9b012d17ab4c363c427507ca2543b353e3b7c5ce307a233dc385f0cad', + i686: '6a1af809ce6d0fc507b1b857b8f0803c6aded4e816d3c454e4e59b0f5ed4acca', + x86_64: 'efa3cd27e024b92a0c197094fa0b580dff000af6122199900b9659e554f84656' + }) + + depends_on 'freetype' # R + depends_on 'glibc' # R + depends_on 'libsdl2' # R + depends_on 'sdl3' # R + git_fetchtags +end diff --git a/packages/shared_mime_info.rb b/packages/shared_mime_info.rb index 86f7af566..c83e701a1 100644 --- a/packages/shared_mime_info.rb +++ b/packages/shared_mime_info.rb @@ -1,32 +1,29 @@ -require 'package' +require 'buildsystems/meson' -class Shared_mime_info < Package +class Shared_mime_info < Meson description 'The shared-mime-info package contains the core database of common types and the update-mime-database command used to extend it.' homepage 'https://freedesktop.org/wiki/Software/shared-mime-info/' - version '1.10' + version '2.4-icu75.1' license 'GPL-2' compatibility 'all' - source_url 'http://freedesktop.org/~hadess/shared-mime-info-1.10.tar.xz' - source_sha256 'c625a83b4838befc8cafcd54e3619946515d9e44d63d61c4adf7f5513ddfbebf' - binary_compression 'tar.xz' + source_url 'https://gitlab.freedesktop.org/xdg/shared-mime-info.git' + git_hashtag version.split('-').first + binary_compression 'tar.zst' binary_sha256({ - aarch64: '29434bf4c31cf050dad19b3b31b5da17fe8e3321405e94f49769102721994f58', - armv7l: '29434bf4c31cf050dad19b3b31b5da17fe8e3321405e94f49769102721994f58', - i686: 'e5523070be234c8902f700b96f15ff71d825beb61c332941df44271ab876127a', - x86_64: 'c408efcebe364232ba42bde95f4a67d5398cb827003bd91081b14c8172709a69' + aarch64: 'bfe13f241a7ed68d6dc8121d92c8d639dd7257cc4bc5880d63fc81ab380c4241', + armv7l: 'bfe13f241a7ed68d6dc8121d92c8d639dd7257cc4bc5880d63fc81ab380c4241', + i686: '37ab32faf04eb17cdb9c1e2c1bdfa38017eaaa5a620331c7487db72f3683bec6', + x86_64: '670616572e7fb982ba18cbdab595638c359f978a03aaa560ae9b4118b818e9d3' }) - depends_on 'glib' - - def self.build - system "./configure --prefix=#{CREW_PREFIX}" - system 'make -j1' - end - - def self.install - system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install' - end + depends_on 'gcc_lib' # R + depends_on 'gettext' => :build + depends_on 'glibc' # R + depends_on 'glib' # R + depends_on 'icu4c' # R + depends_on 'libxml2' # R + depends_on 'xmlto' => :build def self.postinstall puts diff --git a/packages/smbclient.rb b/packages/smbclient.rb index d93aaf5f5..f5a6c266e 100644 --- a/packages/smbclient.rb +++ b/packages/smbclient.rb @@ -3,26 +3,27 @@ require 'package' class Smbclient < Package description 'Tools to access a servers filespace and printers via SMB' homepage 'https://www.samba.org' - version '4.20.0' + version '4.20.4-icu75.1' license 'GPLv3' compatibility 'all' - source_url 'https://download.samba.org/pub/samba/stable/samba-4.20.0.tar.gz' - source_sha256 '02672542510ac6e5d0c91c0c14d90ab4e6ec397c709e952c6da3a6e0b4d5a42f' + source_url "https://download.samba.org/pub/samba/stable/samba-#{version.split('-').first}.tar.gz" + source_sha256 '3a92e97eaeb345b6b32232f503e14d34f03a7aa64c451fe8c258a11bbda908e5' binary_compression 'tar.zst' binary_sha256({ - i686: '2c3eb6d6b7a08694f304d325e615a4f748118e31bb02a63bd4ec1461ac16b2e8', - aarch64: '22e79e32614baa61de25559a853fca2aa499dccb45f45d94fd6f07f9c4ffdee4', - armv7l: '22e79e32614baa61de25559a853fca2aa499dccb45f45d94fd6f07f9c4ffdee4', - x86_64: '6946b1b22ba515afb48846add8c8bdfb5b2adfc9aac69a6680adbf2868c3453d' + i686: 'e3cf441f53e3137b89bd92c3518d76c68ac1323636ee116613d2a00f7dcc0c60', + aarch64: 'f161a7f955ecca54425add1cfd6683eabb204c15c9fd77894abe33f5546ac30f', + armv7l: 'f161a7f955ecca54425add1cfd6683eabb204c15c9fd77894abe33f5546ac30f', + x86_64: '0d52fa1f276bd5ec3ac28b4b6e132a33c4401f247a65c81626c53cfffdc25db1' }) depends_on 'acl' # R depends_on 'avahi' # R depends_on 'cmocka' => :build depends_on 'cups' => :build - depends_on 'docbook_xsl' => :build + depends_on 'docbook' => :build depends_on 'gcc_lib' # R + depends_on 'gdb' => :build depends_on 'glibc' # R depends_on 'gnutls' # R depends_on 'gpgme' => :build @@ -38,6 +39,7 @@ class Smbclient < Package depends_on 'liburing' => :build depends_on 'linux_pam' # R depends_on 'lmdb' => :build + depends_on 'ncurses' # R depends_on 'openldap' # R depends_on 'perl_json' => :build depends_on 'perl_parse_yapp' => :build diff --git a/packages/sphinx.rb b/packages/sphinx.rb index 904b96116..d6261b30c 100644 --- a/packages/sphinx.rb +++ b/packages/sphinx.rb @@ -3,7 +3,7 @@ require 'buildsystems/pip' class Sphinx < Pip description 'Sphinx is a tool that makes it easy to create intelligent and beautiful documentation.' homepage 'https://www.sphinx-doc.org/' - version '7.4.5-py3.12' + version '8.0.2-py3.12' license 'BSD' compatibility 'all' source_url 'SKIP' diff --git a/packages/talloc.rb b/packages/talloc.rb index 68eda7d4f..626e82939 100644 --- a/packages/talloc.rb +++ b/packages/talloc.rb @@ -6,11 +6,10 @@ require 'package' class Talloc < Package description 'Hierarchical pool based memory allocator with destructors' homepage 'https://talloc.samba.org/' - @_ver = '2.4.2' - version "#{@_ver}-py3.12" + version '2.4.2-py3.12' license 'LGPL' compatibility 'all' - source_url "https://www.samba.org/ftp/talloc/talloc-#{@_ver}.tar.gz" + source_url "https://www.samba.org/ftp/talloc/talloc-#{version.split('-').first}.tar.gz" source_sha256 '85ecf9e465e20f98f9950a52e9a411e14320bc555fa257d87697b7e7a9b1d8a6' binary_compression 'tar.zst' diff --git a/packages/tdb.rb b/packages/tdb.rb index 964057930..2938202bc 100644 --- a/packages/tdb.rb +++ b/packages/tdb.rb @@ -3,23 +3,23 @@ require 'package' class Tdb < Package description 'tdb is a simple database API for sharing structures between parts of Samba' homepage 'https://tdb.samba.org/' - @_ver = '1.4.10' - version "#{@_ver}-py3.12" + version '1.4.12-py3.12' license 'GPL-3' compatibility 'all' - source_url "https://www.samba.org/ftp/tdb/tdb-#{@_ver}.tar.gz" - source_sha256 '02338e33c16c21c9e29571cef523e76b2b708636254f6f30c6cf195d48c62daf' + source_url "https://www.samba.org/ftp/tdb/tdb-#{version.split('-').first}.tar.gz" + source_sha256 '6ce4b27498812d09237ece65a0d6dfac0941610e709848ecb822aa241084cd7a' binary_compression 'tar.zst' binary_sha256({ - aarch64: 'cdbc6b59396b9e63c9613277aa69f2234ac2f33efc02e61676b557de276ca280', - armv7l: 'cdbc6b59396b9e63c9613277aa69f2234ac2f33efc02e61676b557de276ca280', - i686: 'c211290c6eaccca7c95f64eca16bb4992454ae2a069bcf67e4222dabaabc1131', - x86_64: 'd1e13d3f5c4201db4b748c567ae48a1e88e40a68983199fa07cbe968822d0d49' + aarch64: 'a05a203afe8fb38a7b37cdae1d2cc9efe8730ec5f609f815b65f748e4313d547', + armv7l: 'a05a203afe8fb38a7b37cdae1d2cc9efe8730ec5f609f815b65f748e4313d547', + i686: '81a0c31f9c45be79081f67f0b940049e63b4e17cf17da6c7645d2f9270063aeb', + x86_64: '75e46c83dab2b9b741b5cc59e5a5135ab49cee6664ba3dd6998024762aeaaa29' }) depends_on 'docbook_xsl' => :build depends_on 'gcc_lib' # R + depends_on 'gdb' => :build depends_on 'glibc' # R depends_on 'libbsd' # R depends_on 'libxslt' => :build diff --git a/packages/tepl.rb b/packages/tepl.rb index c99892a7d..953f386c3 100644 --- a/packages/tepl.rb +++ b/packages/tepl.rb @@ -1,16 +1,14 @@ require 'package' -Package.load_package("#{__dir__}/tepl_5.rb") Package.load_package("#{__dir__}/tepl_6.rb") class Tepl < Package - description Tepl_5.description - homepage Tepl_5.homepage - version "#{Tepl_5.version}+#{Tepl_6.version}" - license Tepl_5.license - compatibility Tepl_5.compatibility + description Tepl_6.description + homepage Tepl_6.homepage + version Tepl_6.version + license Tepl_6.license + compatibility Tepl_6.compatibility is_fake - depends_on 'tepl_5' depends_on 'tepl_6' end diff --git a/packages/tepl_6.rb b/packages/tepl_6.rb index a406198e2..9c2c20ecc 100644 --- a/packages/tepl_6.rb +++ b/packages/tepl_6.rb @@ -2,18 +2,18 @@ require 'buildsystems/meson' class Tepl_6 < Meson description 'Library that eases the development of GtkSourceView-based text editors and IDEs' - homepage 'https://github.com/gedit-technology/libgedit-tepl' - version '6.8.0' + homepage 'https://gitlab.gnome.org/World/gedit/libgedit-tepl' + version '6.10.0-icu75.1' license 'LGPL-2.1+' compatibility 'x86_64 aarch64 armv7l' - source_url 'https://github.com/gedit-technology/libgedit-tepl.git' - git_hashtag version + source_url 'https://gitlab.gnome.org/World/gedit/libgedit-tepl.git' + git_hashtag version.split('-').first binary_compression 'tar.zst' binary_sha256({ - aarch64: '80740c34d9709d82a5a77a9d2c55e99b38d4bab611d7ffb0fd6147cfcc1c5401', - armv7l: '80740c34d9709d82a5a77a9d2c55e99b38d4bab611d7ffb0fd6147cfcc1c5401', - x86_64: '3ae27a5c42cd3095d98ad84bbee34834fbe167335b7684d2120850c11b4a7844' + aarch64: '90aee89081b04bc5cd5acd569f08f8daa283dfeee45252ddb0d3cd66cb8ab7fb', + armv7l: '90aee89081b04bc5cd5acd569f08f8daa283dfeee45252ddb0d3cd66cb8ab7fb', + x86_64: '8bb15f270de6bc2ed4ad6177e97c11d8f9dc38dce9dbe154e17868ce57646ec5' }) depends_on 'cairo' # R @@ -21,13 +21,17 @@ class Tepl_6 < Meson depends_on 'glibc' # R depends_on 'glib' # R depends_on 'gobject_introspection' => :build + depends_on 'gsettings_desktop_schemas' => :build depends_on 'gtk3' # R depends_on 'harfbuzz' # R depends_on 'icu4c' # R depends_on 'libgedit_amtk' # R + depends_on 'libgedit_gfls' # R depends_on 'libgedit_gtksourceview' # R + depends_on 'libhandy' => :build depends_on 'pango' # R depends_on 'vala' => :build + depends_on 'libhandy' # R gnome diff --git a/packages/tesseract.rb b/packages/tesseract.rb index 4a5bf1ed1..345da131d 100644 --- a/packages/tesseract.rb +++ b/packages/tesseract.rb @@ -3,17 +3,17 @@ require 'buildsystems/cmake' class Tesseract < CMake description 'A neural net (LSTM) based OCR engine which is focused on line recognition & an older OCR engine which recognizes character patterns.' homepage 'https://github.com/tesseract-ocr/tesseract' - version '5.3.3' + version '5.4.1-icu75.1' license 'Apache-2.0' compatibility 'x86_64 aarch64 armv7l' source_url 'https://github.com/tesseract-ocr/tesseract.git' - git_hashtag version + git_hashtag version.split('-').first binary_compression 'tar.zst' binary_sha256({ - aarch64: 'd8c0cca3421fca5743be7ab327ee071397069669f1f18720cfdc23ee3aa19457', - armv7l: 'd8c0cca3421fca5743be7ab327ee071397069669f1f18720cfdc23ee3aa19457', - x86_64: '29ae9b0d29c8959b42e53d5676c5c29b815dc74eb92e7b814e7cf390265a5957' + aarch64: '8594813df34ba63b51026dd0b4c5b0322d03edbbbb23759164f093d44e7a0aca', + armv7l: '8594813df34ba63b51026dd0b4c5b0322d03edbbbb23759164f093d44e7a0aca', + x86_64: '0e11215ea37e12710713a2f1c6967485ebdb09ca771f84287cce7a4030cd7d9b' }) depends_on 'acl' => :build @@ -53,6 +53,7 @@ class Tesseract < CMake depends_on 'lz4' => :build depends_on 'openjpeg' # R depends_on 'openldap' => :build + depends_on 'openmp' => :build depends_on 'openssl' => :build depends_on 'pango' # R depends_on 'xzutils' => :build @@ -63,5 +64,8 @@ class Tesseract < CMake cmake_options "-DBUILD_SHARED_LIBS=ON \ -DCMAKE_INSTALL_LIBDIR=#{ARCH_LIB} \ - -DENABLE_LTO=ON" + -DENABLE_LTO=ON \ + -DENABLE_NATIVE=ON \ + -DOPENMP_BUILD=ON \ + -DUSE_SYSTEM_ICU=ON" end diff --git a/packages/tevent.rb b/packages/tevent.rb index af860ed60..a1cbd8be7 100644 --- a/packages/tevent.rb +++ b/packages/tevent.rb @@ -6,11 +6,10 @@ require 'package' class Tevent < Package description 'Event system based on the talloc memory management library' homepage 'https://tevent.samba.org/' - @_ver = '0.16.1' - version "#{@_ver}-py3.12" + version '0.16.1-py3.12' license 'LGPL' compatibility 'all' - source_url "https://samba.org/ftp/tevent/tevent-#{@_ver}.tar.gz" + source_url "https://samba.org/ftp/tevent/tevent-#{version.split('-').first}.tar.gz" source_sha256 '362971e0f32dc1905f6fe4736319c4b8348c22dc85aa6c3f690a28efe548029e' binary_compression 'tar.zst' diff --git a/packages/tracker3.rb b/packages/tinysparql.rb similarity index 57% rename from packages/tracker3.rb rename to packages/tinysparql.rb index dd35f5897..0d2921f77 100644 --- a/packages/tracker3.rb +++ b/packages/tinysparql.rb @@ -1,27 +1,26 @@ -# Adapted from Arch Linux tracker3 PKGBUILD at: -# https://github.com/archlinux/svntogit-packages/raw/packages/tracker3/trunk/PKGBUILD - require 'buildsystems/meson' -class Tracker3 < Meson - description 'Desktop-neutral user information store, search tool and indexer' - homepage 'https://wiki.gnome.org/Projects/Tracker' - version '3.6.0' +class Tinysparql < Meson + description 'Low-footprint RDF triple store library with SPARQL 1.1 interface' + homepage 'https://gitlab.gnome.org/GNOME/tinysparql' + version '3.7.3-icu75.1' license 'GPLv2+' compatibility 'x86_64 aarch64 armv7l' - min_glibc '2.35' - source_url 'https://gitlab.gnome.org/GNOME/tracker.git' - git_hashtag version + min_glibc '2.37' + source_url 'https://gitlab.gnome.org/GNOME/tinysparql.git' + git_hashtag version.split('-').first binary_compression 'tar.zst' binary_sha256({ - aarch64: '7c61e7b8d0fb1be446a2c2db2060ff1b9a4349531d7df6cde4e91a1ec69ea4ec', - armv7l: '7c61e7b8d0fb1be446a2c2db2060ff1b9a4349531d7df6cde4e91a1ec69ea4ec', - x86_64: '26e3149df2d260e96f70c11e5f0e2b7aaed38fbc6545df7cd9a8262b161dfac1' + aarch64: '42c62d693cc7d5b435d05a5d61b39339d5a1dfec645e031dac8b0d0358b73a4c', + armv7l: '42c62d693cc7d5b435d05a5d61b39339d5a1dfec645e031dac8b0d0358b73a4c', + x86_64: '8ca12cb7bd12ce282e2cf036b7cd15011663886a47d0b24b4d1af5209cea3926' }) depends_on 'asciidoc' => :build + depends_on 'avahi' # R depends_on 'docbook_xml' => :build + depends_on 'dbus' => :build depends_on 'gcc_lib' # R depends_on 'glibc_lib' # R depends_on 'glibc' # R diff --git a/packages/ttf_hanazono.rb b/packages/ttf_hanazono.rb index 99bae5d79..652b263ad 100644 --- a/packages/ttf_hanazono.rb +++ b/packages/ttf_hanazono.rb @@ -17,7 +17,7 @@ class Ttf_hanazono < Package @_ttf_fonts_dir = "#{CREW_DEST_PREFIX}/share/fonts/TTF" FileUtils.mkdir_p @_ttf_fonts_dir %w[HanaMinA HanaMinB].each fontfile do - FileUtils.install 'HanaMinA.ttf' "#{@_ttf_fonts_dir}/#{fontfile}.ttf" + FileUtils.install "HanaMinA.ttf#{@_ttf_fonts_dir}/#{fontfile}.ttf" end end end diff --git a/packages/uriparser.rb b/packages/uriparser.rb new file mode 100644 index 000000000..4c4bd619b --- /dev/null +++ b/packages/uriparser.rb @@ -0,0 +1,27 @@ +# Adapted from Arch Linux uriparser PKGBUILD at: +# https://gitlab.archlinux.org/archlinux/packaging/packages/uriparser/-/blob/main/PKGBUILD?ref_type=heads + +require 'buildsystems/cmake' + +class Uriparser < CMake + description 'uriparser is a strictly RFC 3986 compliant URI parsing library. uriparser is cross-platform, fast, supports Unicode' + homepage 'https://github.com/uriparser/uriparser' + version '0.9.8' + license 'BSD-3' + compatibility 'all' + source_url 'https://github.com/uriparser/uriparser.git' + git_hashtag "uriparser-#{version}" + binary_compression 'tar.zst' + + binary_sha256({ + aarch64: '77d22fae268c12a31a2eba2c037cb3718f1dfb004e9531a8c9ad879b68490080', + armv7l: '77d22fae268c12a31a2eba2c037cb3718f1dfb004e9531a8c9ad879b68490080', + i686: 'ee7edb28aad6c6e8882cf4c1a06de299e339daca3c55ebab879103a1ace6204d', + x86_64: 'e2771905c7ee1a98801a6b0c970800a86c04cc1a931643b861cf267c06a62a1c' + }) + + depends_on 'glibc' # R + + cmake_options '-DURIPARSER_BUILD_DOCS=OFF \ + -DURIPARSER_BUILD_TESTS=OFF' +end diff --git a/packages/vte.rb b/packages/vte.rb index 6ec995f4b..c7f94a32c 100644 --- a/packages/vte.rb +++ b/packages/vte.rb @@ -3,11 +3,11 @@ require 'buildsystems/meson' class Vte < Meson description 'Virtual Terminal Emulator widget for use with GTK' homepage 'https://wiki.gnome.org/Apps/Terminal/VTE' - version '0.75.92' + version '0.77.91-icu75.1' license 'LGPL-2+ and GPL-3+' compatibility 'x86_64 aarch64 armv7l' source_url 'https://gitlab.gnome.org/GNOME/vte.git' - git_hashtag version + git_hashtag version.split('-').first binary_compression 'tar.zst' binary_sha256({ @@ -25,7 +25,7 @@ class Vte < Meson depends_on 'glib' # R depends_on 'gnutls' # R depends_on 'gobject_introspection' => :build - depends_on 'graphene' => :build + depends_on 'graphene' # R depends_on 'gtk3' # R depends_on 'gtk4' # R depends_on 'harfbuzz' # R @@ -46,4 +46,8 @@ class Vte < Meson -Dgtk4=true \ -Dgir=false \ -Dvapi=false' + + def self.patch + system "sed -i 's,/usr/bin/python3,#{CREW_PREFIX}/bin/python3,' src/minifont-coverage.py" + end end diff --git a/packages/wayland.rb b/packages/wayland.rb index 9d2d46482..004bc5ef9 100644 --- a/packages/wayland.rb +++ b/packages/wayland.rb @@ -3,18 +3,18 @@ require 'buildsystems/meson' class Wayland < Meson description 'Wayland is intended as a simpler replacement for X, easier to develop and maintain.' homepage 'https://wayland.freedesktop.org' - version '1.23.0' + version '1.23.0-icu75.1' license 'MIT' compatibility 'all' source_url 'https://gitlab.freedesktop.org/wayland/wayland.git' - git_hashtag version + git_hashtag version.split('-').first binary_compression 'tar.zst' binary_sha256({ - aarch64: '6a38b96e747ebfd1cb9c753a87cbbc567009632297dbec4229873d028601088e', - armv7l: '6a38b96e747ebfd1cb9c753a87cbbc567009632297dbec4229873d028601088e', - i686: '21f052811fb6e2452166068fdd7d67230ecc18251e2997be1c37f940d1638dae', - x86_64: 'ffc57b3964206380f16b74b5a562458e035c5c60ab3a64db29c6951653c4f4fe' + aarch64: '00866e69c544d72ba85c3345ff2c1704f7764da2fecb740a5cca93d8f7b6b886', + armv7l: '00866e69c544d72ba85c3345ff2c1704f7764da2fecb740a5cca93d8f7b6b886', + i686: '19a50a7d696f6ef4bac35ce845b6ec5b15ce31bcd593bfd5a192509871cd8f92', + x86_64: 'b55d4d2c9dfcf2fafac5bf7c5cbc395de8fa057bb7bc748c906116cb4a4e5a81' }) depends_on 'expat' # R diff --git a/packages/webkitgtk_6.rb b/packages/webkitgtk_6.rb index c04f8cdca..5fa0843ce 100644 --- a/packages/webkitgtk_6.rb +++ b/packages/webkitgtk_6.rb @@ -3,11 +3,12 @@ require 'package' class Webkitgtk_6 < Package description 'Web content engine for GTK' homepage 'https://webkitgtk.org' - version '2.42.1' + version '2.44.2-icu75.1' license 'LGPL-2+ and BSD-2' compatibility 'x86_64 aarch64 armv7l' - source_url 'https://webkitgtk.org/releases/webkitgtk-2.42.1.tar.xz' - source_sha256 '6f41fac9989d3ee51c08c48de1d439cdeddecbc757e34b6180987d99b16d2499' + min_glibc '2.37' + source_url "https://webkitgtk.org/releases/webkitgtk-#{version.split('-').first}.tar.xz" + source_sha256 '523f42c8ff24832add17631f6eaafe8f9303afe316ef1a7e1844b952a7f7521b' binary_compression 'tar.zst' binary_sha256({ @@ -39,6 +40,7 @@ class Webkitgtk_6 < Package depends_on 'icu4c' # R depends_on 'lcms' # R depends_on 'libavif' # R + depends_on 'libbacktrace' => :build depends_on 'libdrm' # R depends_on 'libepoxy' # R depends_on 'libgcrypt' # R @@ -146,11 +148,10 @@ class Webkitgtk_6 < Package @arch_linker_flags = ARCH == 'x86_64' ? '' : '-Wl,--no-keep-memory' system "CREW_LINKER_FLAGS='#{@arch_linker_flags}' CC='#{@workdir}/bin/gcc' CXX='#{@workdir}/bin/g++' \ cmake -B builddir -G Ninja \ - #{CREW_CMAKE_FNO_LTO_OPTIONS.gsub('mold', 'gold').sub('-pipe', '-pipe -Wno-error').gsub('-fno-lto', '')} \ + #{CREW_CMAKE_FNO_LTO_OPTIONS.gsub('-DCMAKE_LINKER_TYPE=MOLD', '').sub('-pipe', '-pipe -Wno-error').gsub('-fno-lto', '')} \ -DCMAKE_BUILD_WITH_INSTALL_RPATH=ON \ -DENABLE_BUBBLEWRAP_SANDBOX=OFF \ -DENABLE_DOCUMENTATION=OFF \ - -DENABLE_GLES2=OFF \ -DENABLE_JOURNALD_LOG=OFF \ -DENABLE_GAMEPAD=OFF \ -DENABLE_MINIBROWSER=ON \ diff --git a/packages/xfsprogs.rb b/packages/xfsprogs.rb index 965a7b0ad..b594824df 100644 --- a/packages/xfsprogs.rb +++ b/packages/xfsprogs.rb @@ -3,17 +3,17 @@ require 'package' class Xfsprogs < Package description 'XFS filesystem utilities' homepage 'https://git.kernel.org/pub/scm/fs/xfs/xfsprogs-dev.git/' - version '6.9.0' + version '6.9.0-icu75.1' license 'LGPL-2.1' compatibility 'x86_64 aarch64 armv7l' source_url 'https://git.kernel.org/pub/scm/fs/xfs/xfsprogs-dev.git' - git_hashtag "v#{version}" + git_hashtag "v#{version.split('-').first}" binary_compression 'tar.zst' binary_sha256({ - aarch64: 'de01befdf6802bf679cec210aeb79a3f2b3996570ee000482deef5ece4a6bc1a', - armv7l: 'de01befdf6802bf679cec210aeb79a3f2b3996570ee000482deef5ece4a6bc1a', - x86_64: 'ecf25239f220b2507926d43db68cbcf5a280106d40a0f72ecabe9272dec5c2a8' + aarch64: 'e5a3e3de99d56f030e90787948ac068288526ea51497cff7aba219fa6bfa0a26', + armv7l: 'e5a3e3de99d56f030e90787948ac068288526ea51497cff7aba219fa6bfa0a26', + x86_64: 'e2e2c14581d1f0133124bc569958d84b6da6531af130d2e86341adbe549d8d1e' }) depends_on 'gcc_lib' # R diff --git a/packages/xmlto.rb b/packages/xmlto.rb index a06d12e28..9a7f6d9c8 100644 --- a/packages/xmlto.rb +++ b/packages/xmlto.rb @@ -1,28 +1,23 @@ -require 'package' +require 'buildsystems/autotools' -class Xmlto < Package +class Xmlto < Autotools description 'A tool for converting XML files to various formats.' homepage 'https://pagure.io/xmlto' - version '0.0.28' + version '0.0.29' license 'GPL-2' compatibility 'all' - source_url 'https://releases.pagure.org/xmlto/xmlto-0.0.28.tar.bz2' - source_sha256 '1130df3a7957eb9f6f0d29e4aa1c75732a7dfb6d639be013859b5c7ec5421276' - binary_compression 'tar.xz' + source_url 'https://pagure.io/xmlto.git' + git_hashtag version + binary_compression 'tar.zst' + + depends_on 'docbook_xml' # L + depends_on 'glibc' # R + depends_on 'libxslt' # L binary_sha256({ - aarch64: '8f03c0544caa110a2af91afdf9b5a0b88b5e6ee2799cf4710cbe200b8bcf58a3', - armv7l: '8f03c0544caa110a2af91afdf9b5a0b88b5e6ee2799cf4710cbe200b8bcf58a3', - i686: 'd5f57827acde8c9977786a26790af5e517d95acd543ddb26efda8c7877d36bcf', - x86_64: 'f4ce1d91e46a06d54877ff22ec0b0bb1da69c3e8ee5962536c722a0abe018fd9' + aarch64: '84648d642bf518c5255965623656899ae24fdf07dc78f57f4b69e8f594a30ada', + armv7l: '84648d642bf518c5255965623656899ae24fdf07dc78f57f4b69e8f594a30ada', + i686: 'be441b9ee3112a00f969592fddfe7b1ad03da1518eb651b8ed4a17102a04beb3', + x86_64: '22abd629186ff27fd93f7fad53ea09270d4fab7881aee1aec0681eec1d7e2211' }) - - def self.build - system './configure' - system 'make' - end - - def self.install - system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install' - end end diff --git a/packages/xwayland.rb b/packages/xwayland.rb index 49c35b3f8..4cd7b0ed7 100644 --- a/packages/xwayland.rb +++ b/packages/xwayland.rb @@ -3,7 +3,7 @@ require 'buildsystems/meson' class Xwayland < Meson description 'X server configured to work with weston or sommelier' homepage 'https://x.org/wiki/' - version '24.1.1' + version '24.1.2' license 'MIT-with-advertising, ISC, BSD-3, BSD and custom' compatibility 'x86_64 aarch64 armv7l' source_url 'https://gitlab.freedesktop.org/xorg/xserver.git' @@ -11,9 +11,9 @@ class Xwayland < Meson binary_compression 'tar.zst' binary_sha256({ - aarch64: 'a4519bdccf53e54ce5deb8f4ef305215b1a4a4f616c0010e63735d09a9c7b58c', - armv7l: 'a4519bdccf53e54ce5deb8f4ef305215b1a4a4f616c0010e63735d09a9c7b58c', - x86_64: '75294270a6cc629d3cefa2faf9231ce8b5adb89ce7dd3ce7dbea1f1fc843b22e' + aarch64: 'b7c7fd3f56141ee3dfc28e7e767e7b6b1ea83bd1189003a79a1fabfc58f8242f', + armv7l: 'b7c7fd3f56141ee3dfc28e7e767e7b6b1ea83bd1189003a79a1fabfc58f8242f', + x86_64: 'c5b8917bee9944a3db2687c3a10cdf9311d8f97e8182dedceb86181686b4fba0' }) no_env_options @@ -27,6 +27,7 @@ class Xwayland < Meson # depends_on 'glproto' => :build Conflict with xorg_proto depends_on 'graphite' => :build depends_on 'libbsd' # R + depends_on 'libdecor' # R depends_on 'libdrm' # R depends_on 'libepoxy' # R depends_on 'libglvnd' # R @@ -47,6 +48,7 @@ class Xwayland < Meson depends_on 'rendercheck' # R depends_on 'wayland' # R depends_on 'xkbcomp' => :build + depends_on 'xmlto' => :build depends_on 'xorg_proto' => :build meson_options '-Db_asneeded=false \ diff --git a/packages/yelp.rb b/packages/yelp.rb index 4ec4e1e2c..714017f34 100644 --- a/packages/yelp.rb +++ b/packages/yelp.rb @@ -3,17 +3,17 @@ require 'buildsystems/autotools' class Yelp < Autotools description 'Get help with GNOME' homepage 'https://wiki.gnome.org/Apps/Yelp' - version '42.2' + version '42.2-icu75.1' license 'GPL-2+' compatibility 'x86_64 aarch64 armv7l' source_url 'https://gitlab.gnome.org/GNOME/yelp.git' - git_hashtag version + git_hashtag version.split('-').first binary_compression 'tar.zst' binary_sha256({ - aarch64: 'c8da5f26d6abe29c64093dc18a9a218e1e8b7a3b3b9ea31a4195d7493f1d1508', - armv7l: 'c8da5f26d6abe29c64093dc18a9a218e1e8b7a3b3b9ea31a4195d7493f1d1508', - x86_64: 'bdbd52b3ca8c5e795fdc0943c002beab2032bde20e9a4ebf1372dbb5fbf88481' + aarch64: '9e83dbae9ce30e16e0edd3fb170ab73d9e864561016356563bc5cfd8f56986ad', + armv7l: '9e83dbae9ce30e16e0edd3fb170ab73d9e864561016356563bc5cfd8f56986ad', + x86_64: '2f75e70e9bd8805acfe88a79e186ccc942e8910e75040f21d7aa92928a50fe18' }) depends_on 'appstream_glib' => :build diff --git a/tools/packages.yaml b/tools/packages.yaml index 15e2b1dac..91f06d15b 100644 --- a/tools/packages.yaml +++ b/tools/packages.yaml @@ -3765,6 +3765,11 @@ url: https://get.videolan.org/libaacs/ activity: low --- kind: url +name: libabigail +url: https://sourceware.org/git/?p=libabigail.git;a=tags +activity: medium +--- +kind: url name: libadwaita url: https://gitlab.gnome.org/exalm/libadwaita/ activity: high @@ -4217,12 +4222,17 @@ activity: low --- kind: url name: libgedit_amtk -url: https://github.com/gedit-technology/libgedit-amtk/releases +url: https://gitlab.gnome.org/World/gedit/libgedit-amtk/-/tags +activity: medium +--- +kind: url +name: libgedit_gfls +url: https://gitlab.gnome.org/World/gedit/libgedit-gfls/-/tags activity: medium --- kind: url name: libgedit_gtksourceview -url: https://github.com/gedit-technology/libgedit-gtksourceview/releases +url: https://gitlab.gnome.org/World/gedit/libgedit-gtksourceview/-/tags activity: medium --- kind: url @@ -5456,6 +5466,11 @@ url: https://github.com/tstack/lnav/releases activity: high --- kind: url +name: localsearch +url: https://gitlab.gnome.org/GNOME/localsearch/-/tags +activity: high +--- +kind: url name: log4c url: https://sourceforge.net/projects/log4c/files/log4c/ activity: none @@ -7296,6 +7311,11 @@ url: https://github.com/python-hyper/brotlicffi/tags activity: low --- kind: url +name: py3_cfgv +url: https://github.com/asottile/cfgv/tags +activity: low +--- +kind: url name: py3_devedeng url: https://gitlab.com/rastersoft/devedeng/-/tags activity: low @@ -7331,6 +7351,11 @@ url: https://github.com/pypa/hatch/releases activity: medium --- kind: url +name: py3_identify +url: https://github.com/pre-commit/identify/tags +activity: medium +--- +kind: url name: py3_lxml url: https://github.com/lxml/lxml/releases activity: high @@ -7836,11 +7861,21 @@ url: https://rubygems.org/gems/glib2 activity: medium --- kind: url +name: ruby_highline +url: https://github.com/JEG2/highline/tags +activity: medium +--- +kind: url name: ruby_mdl url: https://github.com/markdownlint/markdownlint/tags activity: low --- kind: url +name: ruby_pry_byebug +url: https://github.com/deivid-rodriguez/pry-byebug/releases +activity: low +--- +kind: url name: ruby_rubocop url: https://github.com/rubocop/rubocop/releases activity: medium @@ -7986,6 +8021,21 @@ url: https://www.libsdl.org/projects/SDL_image/release/ activity: medium --- kind: url +name: sdl2_ttf +url: https://www.libsdl.org/projects/SDL_ttf/release/ +activity: medium +--- +kind: url +name: sdl3 +url: https://www.libsdl.org/release +activity: medium +--- +kind: url +name: sdl3_ttf +url: https://www.libsdl.org/projects/SDL_ttf/release/ +activity: medium +--- +kind: url name: seatd url: hhttps://git.sr.ht/~kennylevinsen/seatd/refs activity: medium @@ -8676,6 +8726,11 @@ url: https://distro.ibiblio.org/tinycorelinux/downloads.html activity: medium --- kind: url +name: tinysparql +url: https://gitlab.gnome.org/GNOME/tinysparql/-/tags +activity: high +--- +kind: url name: tk url: https://sourceforge.net/projects/tcl/files/Tcl/ activity: low @@ -8731,16 +8786,6 @@ url: https://sourceforge.net/projects/traceroute/files/traceroute/ activity: none --- kind: url -name: tracker3 -url: https://gitlab.gnome.org/GNOME/tracker/-/tags -activity: high ---- -kind: url -name: tracker3_miners -url: https://gitlab.gnome.org/GNOME/tracker-miners/-/tags -activity: high ---- -kind: url name: translate_shell url: https://github.com/soimort/translate-shell/releases activity: low @@ -8906,6 +8951,11 @@ url: https://github.com/upx/upx/releases/ activity: low --- kind: url +name: uriparser +url: https://github.com/uriparser/uriparser/releases/ +activity: low +--- +kind: url name: urlwatch url: https://github.com/thp/urlwatch/releases activity: high