Update buildsystems to use buildsystem name variables, and report contents of those variables/methods during use. (#11936)

* Update buildsystems, update jq, add jq to core for arm.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Only report build options if they exist.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Fix overeager sed replacement.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* workflow debugging

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Add logging for build errors.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Revert to function in each package file.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Update jq since it needs gcc14 to build.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Add built packages for linux/386 to buildsystems

* remove deprecated gfbgraph

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* fix git tag for gnome_maps

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Update llvm20 package file.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Update gnome_maps deps.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Abstract out buildsystems_methods reporting.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Keep LIBC_VERSION const from being empty.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Update crew_profile_base and libxml2

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* clarify

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* lint

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Update libarchive

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* update libavif

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* more updates

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Add libxml2 build comment.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Add build comment to libarchive.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Don't warn for missing directory during package removal.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

---------

Signed-off-by: Satadru Pramanik <satadru@gmail.com>
Co-authored-by: Satadru Pramanik <satadru@gmail.com>
Co-authored-by: satmandu <satmandu@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2025-05-23 14:50:48 -05:00
committed by GitHub
parent da5a1c30c0
commit 626a53a7a7
206 changed files with 528 additions and 567 deletions

View File

@@ -337,8 +337,8 @@ jobs:
rm -rf /tmp/pr.txt
echo -e "## Description" >> /tmp/pr.txt
echo -e "- This PR has built package updates using the Build Allowing Failures.yml workflow, which was pointed to the ${{ env.BRANCH }} branch.\n" >> /tmp/pr.txt
echo -e "Please double check to see if any failures were expected.\n" >> /tmp/pr.txt
echo -e "Updated packages:" >> /tmp/pr.txt
echo -e "#### _Please double check to see if any failures were expected._\n" >> /tmp/pr.txt
echo -e "### Packages with Updated versions or Changed package files:" >> /tmp/pr.txt
for file in ${CHANGED_PACKAGES}
do
echo "- ${file}" >> /tmp/pr.txt

View File

@@ -337,7 +337,7 @@ jobs:
rm -rf /tmp/pr.txt
echo -e "## Description" >> /tmp/pr.txt
echo -e "- This PR has built package updates using the Build.yml workflow, which was pointed to the ${{ env.BRANCH }} branch.\n" >> /tmp/pr.txt
echo -e "Updated packages:" >> /tmp/pr.txt
echo -e "### Packages with Updated versions or Changed package files:" >> /tmp/pr.txt
for file in ${CHANGED_PACKAGES}
do
echo "- ${file}" >> /tmp/pr.txt

View File

@@ -712,12 +712,12 @@ def build_and_preconfigure(target_dir)
begin
@pkg.build
rescue StandardError
rescue StandardError => e
if CREW_CACHE_FAILED_BUILD
cache_build
abort 'There was a build error, caching build directory.'.lightred
abort "There was a build error, caching build directory.\n#{e}".lightred
end
abort 'There was a build error.'.lightred
abort "There was a build error.\n#{e}".lightred
end
@pkg.in_build = false
# wipe crew destdir

View File

@@ -1,29 +1,16 @@
require 'fileutils'
require 'package'
require 'require_gem'
require_relative '../package'
require_relative '../require_gem'
require_relative '../report_buildsystem_methods'
class Autotools < Package
property :configure_options, :pre_configure_options, :configure_build_extras, :configure_install_extras
property :autotools_configure_options, :autotools_pre_configure_options, :autotools_build_extras, :autotools_install_extras
def self.build
puts "Additional #{superclass.to_s.capitalize} options being used:".orange
method_list = methods.grep(/configure_/).delete_if { |i| send(i).blank? }
require_gem 'method_source'
method_blocks = []
method_strings = []
method_list.sort.each do |method|
@method_info = send method
if @method_info.is_a? String
method_strings << "#{method}: #{@method_info}".orange
else
method_blocks << @method_info.source.to_s.orange
end
end
puts method_strings
puts method_blocks
extend ReportBuildsystemMethods
print_buildsystem_methods
unless File.file?('Makefile') && CREW_CACHE_BUILD
puts "Additional configure_options being used: #{@pre_configure_options.nil? ? '<no pre_configure_options>' : @pre_configure_options} #{@configure_options.nil? ? '<no configure_options>' : @configure_options}".orange
# Run autoreconf if necessary
unless File.executable? './configure'
if File.executable? './autogen.sh'
@@ -37,15 +24,15 @@ class Autotools < Package
abort 'configure script not found!'.lightred unless File.file?('configure')
FileUtils.chmod('+x', 'configure')
system 'filefix', exception: false
system "#{@pre_configure_options} ./configure #{CREW_CONFIGURE_OPTIONS} #{@configure_options}"
system "#{@autotools_pre_configure_options} ./configure #{CREW_CONFIGURE_OPTIONS} #{@autotools_configure_options}"
end
system 'make'
@configure_build_extras&.call
@autotools_build_extras&.call
end
def self.install
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
@configure_install_extras&.call
@autotools_install_extras&.call
end
def self.check

View File

@@ -1,5 +1,6 @@
require 'package'
require 'require_gem'
require_relative '../package'
require_relative '../require_gem'
require_relative '../report_buildsystem_methods'
class CMake < Package
property :cmake_build_extras, :cmake_build_relative_dir, :cmake_install_extras, :cmake_options, :pre_cmake_options
@@ -7,21 +8,9 @@ class CMake < Package
def self.build
@cmake_build_relative_dir ||= '.'
@crew_cmake_options = @no_lto ? CREW_CMAKE_OPTIONS.gsub('-flto=auto', '-fno-lto').sub('-DCMAKE_INTERPROCEDURAL_OPTIMIZATION=TRUE', '') : CREW_CMAKE_OPTIONS
puts "Additional #{superclass.to_s.capitalize} options being used:".orange
method_list = methods.grep(/cmake_/).delete_if { |i| send(i).blank? }
require_gem 'method_source'
method_blocks = []
method_strings = []
method_list.sort.each do |method|
@method_info = send method
if @method_info.is_a? String
method_strings << "#{method}: #{@method_info}".orange
else
method_blocks << @method_info.source.to_s.orange
end
end
puts method_strings
puts method_blocks
extend ReportBuildsystemMethods
print_buildsystem_methods
system "#{@pre_cmake_options} cmake -S #{@cmake_build_relative_dir} -B #{@cmake_build_relative_dir}/builddir -G Ninja #{@crew_cmake_options} #{@cmake_options}"
system "#{CREW_NINJA} -C #{@cmake_build_relative_dir}/builddir"

View File

@@ -1,26 +1,15 @@
require 'package'
require 'require_gem'
require_relative '../package'
require_relative '../require_gem'
require_relative '../report_buildsystem_methods'
class Meson < Package
property :meson_options, :pre_meson_options, :meson_build_extras, :meson_install_extras
def self.build
@crew_meson_options = @no_lto ? CREW_MESON_OPTIONS.sub('-Db_lto=true', '-Db_lto=false') : CREW_MESON_OPTIONS
puts "Additional #{superclass.to_s.capitalize} options being used:".orange
method_list = methods.grep(/meson_/).delete_if { |i| send(i).blank? }
require_gem 'method_source'
method_blocks = []
method_strings = []
method_list.sort.each do |method|
@method_info = send method
if @method_info.is_a? String
method_strings << "#{method}: #{@method_info}".orange
else
method_blocks << @method_info.source.to_s.orange
end
end
puts method_strings
puts method_blocks
extend ReportBuildsystemMethods
print_buildsystem_methods
system "#{@pre_meson_options} meson setup #{@crew_meson_options} #{@meson_options} builddir"
system 'meson configure --no-pager builddir'

View File

@@ -1,25 +1,13 @@
require 'package'
require 'require_gem'
require_relative '../package'
require_relative '../require_gem'
require_relative '../report_buildsystem_methods'
class PERL < Package
property :pre_perl_options, :perl_build_extras, :perl_install_extras
def self.prebuild
puts "Additional #{superclass.to_s.capitalize} options being used:".orange
method_list = methods.grep(/perl_/).delete_if { |i| send(i).blank? }
require_gem 'method_source'
method_blocks = []
method_strings = []
method_list.sort.each do |method|
@method_info = send method
if @method_info.is_a? String
method_strings << "#{method}: #{@method_info}".orange
else
method_blocks << @method_info.source.to_s.orange
end
end
puts method_strings
puts method_blocks
extend ReportBuildsystemMethods
print_buildsystem_methods
system "#{@pre_perl_options} perl Makefile.PL"
system "sed -i 's,/usr/local,#{CREW_PREFIX},g' Makefile"

View File

@@ -1,8 +1,9 @@
Encoding.default_external = Encoding::UTF_8
Encoding.default_internal = Encoding::UTF_8
require 'json'
require 'package'
require 'require_gem'
require_relative '../package'
require_relative '../require_gem'
require_relative '../report_buildsystem_methods'
def get_pip_info(pip_pkg_name = nil)
@pip_show = nil
@@ -37,21 +38,8 @@ class Pip < Package
property :pip_install_extras, :pip_pre_configure_options
def self.install
puts "Additional #{superclass.to_s.capitalize} options being used:".orange
method_list = methods.grep(/pip_/).delete_if { |i| send(i).blank? }
require_gem 'method_source'
method_blocks = []
method_strings = []
method_list.sort.each do |method|
@method_info = send method
if @method_info.is_a? String
method_strings << "#{method}: #{@method_info}".orange
else
method_blocks << @method_info.source.to_s.orange
end
end
puts method_strings
puts method_blocks
extend ReportBuildsystemMethods
print_buildsystem_methods
@pip_cache_dir = `pip cache dir`.chomp
@pip_cache_dest_dir = File.join(CREW_DEST_DIR, @pip_cache_dir)

View File

@@ -1,25 +1,13 @@
require 'package'
require 'require_gem'
require_relative '../package'
require_relative '../require_gem'
require_relative '../report_buildsystem_methods'
class Python < Package
property :python_build_extras, :python_build_options, :python_build_relative_dir, :python_install_extras, :python_install_options, :python_no_svem
def self.build
puts "Additional #{superclass.to_s.capitalize} options being used:".orange
method_list = methods.grep(/python_/).delete_if { |i| send(i).blank? }
require_gem 'method_source'
method_blocks = []
method_strings = []
method_list.sort.each do |method|
@method_info = send method
if @method_info.is_a? String
method_strings << "#{method}: #{@method_info}".orange
else
method_blocks << @method_info.source.to_s.orange
end
end
puts method_strings
puts method_blocks
extend ReportBuildsystemMethods
print_buildsystem_methods
@python_build_relative_dir ||= '.'
Dir.chdir(@python_build_relative_dir) do

View File

@@ -1,25 +1,13 @@
require 'package'
require 'require_gem'
require_relative '../package'
require_relative '../require_gem'
require_relative '../report_buildsystem_methods'
class Qmake < Package
property :qmake_build_extras, :qmake_install_extras
def self.build
puts "Additional #{superclass.to_s.capitalize} options being used:".orange
method_list = methods.grep(/qmake_/).delete_if { |i| send(i).blank? }
require_gem 'method_source'
method_blocks = []
method_strings = []
method_list.sort.each do |method|
@method_info = send method
if @method_info.is_a? String
method_strings << "#{method}: #{@method_info}".orange
else
method_blocks << @method_info.source.to_s.orange
end
end
puts method_strings
puts method_blocks
extend ReportBuildsystemMethods
print_buildsystem_methods
system "QMAKE_CXX='g++ #{ARCH == 'x86_64' && Gem::Version.new(LIBC_VERSION.to_s) >= Gem::Version.new('2.35') ? File.join(CREW_LIB_PREFIX, 'libC.so.6').to_s : ''}' qmake"
system 'make'

View File

@@ -1,8 +1,9 @@
require 'color'
require 'gem_compact_index_client'
require 'package'
require 'package_utils'
require 'require_gem'
require_relative '../color'
require_relative '../gem_compact_index_client'
require_relative '../package'
require_relative '../package_utils'
require_relative '../report_buildsystem_methods'
require_relative '../require_gem'
require_gem('activesupport', 'active_support/core_ext/object/blank')
@@ -110,21 +111,8 @@ class RUBY < Package
def self.build
return unless !no_compile_needed? || @gem_binary_build_needed
puts "Additional #{superclass.to_s.capitalize} options being used:".orange
method_list = methods.grep(/ruby_/).delete_if { |i| send(i).blank? }
require_gem 'method_source'
method_blocks = []
method_strings = []
method_list.sort.each do |method|
@method_info = send method
if @method_info.is_a? String
method_strings << "#{method}: #{@method_info}".orange
else
method_blocks << @method_info.source.to_s.orange
end
end
puts method_strings
puts method_blocks
extend ReportBuildsystemMethods
print_buildsystem_methods
Kernel.system "gem fetch #{@ruby_gem_name} --platform=ruby --version=#{@ruby_gem_version}"
Kernel.system "gem unpack #{@ruby_gem_name}-#{@ruby_gem_version}.gem"

View File

@@ -1,5 +1,6 @@
require 'package'
require 'require_gem'
require_relative '../package'
require_relative '../require_gem'
require_relative '../report_buildsystem_methods'
class RUST < Package
property :rust_features, :rust_options, :rust_release_profile, :rust_targets, :pre_rust_options, :rust_build_extras, :rust_install_extras
@@ -12,21 +13,8 @@ class RUST < Package
PATH: "#{CREW_PREFIX}/share/cargo/bin:" + ENV.fetch('PATH', nil)
}.transform_keys(&:to_s)
puts "Additional #{superclass.to_s.capitalize} options being used:".orange
method_list = methods.grep(/rust_/).delete_if { |i| send(i).blank? }
require_gem 'method_source'
method_blocks = []
method_strings = []
method_list.sort.each do |method|
@method_info = send method
if @method_info.is_a? String
method_strings << "#{method}: #{@method_info}".orange
else
method_blocks << @method_info.source.to_s.orange
end
end
puts method_strings
puts method_blocks
extend ReportBuildsystemMethods
print_buildsystem_methods
system rust_env, "rustup target add #{@rust_targets}" unless @rust_targets.to_s.empty?
system rust_env, "#{@pre_rust_options} cargo fetch"

View File

@@ -3,7 +3,7 @@
require 'etc'
OLD_CREW_VERSION ||= defined?(CREW_VERSION) ? CREW_VERSION : '1.0'
CREW_VERSION ||= '1.61.3' unless defined?(CREW_VERSION) && CREW_VERSION == OLD_CREW_VERSION
CREW_VERSION ||= '1.61.4' unless defined?(CREW_VERSION) && CREW_VERSION == OLD_CREW_VERSION
# Kernel architecture.
KERN_ARCH ||= Etc.uname[:machine]

View File

@@ -162,6 +162,7 @@ renamed_packages = Set[
deprecated_packages = Set[
{ pkg_name: 'epydoc', comments: 'Abandoned upstream, only supports Python 2.' },
{ pkg_name: 'gfbgraph', commwnts: 'Deprecated upstteam.' },
{ pkg_name: 'git_prompt', comments: 'Integrated into git package.' },
{ pkg_name: 'glibc_build223', comments: 'We are moving away from system glibc.' },
{ pkg_name: 'glibc_build227', comments: 'We are moving away from system glibc.' },

View File

@@ -74,7 +74,7 @@ class Package
elsif File.directory? config_object
identifier = 'directory'
else
puts "Cannot identify #{config_object}.".lightred
crewlog "Cannot remove #{config_object}."
return
end
if agree_default_no("Would you like to remove the config #{identifier}: #{config_object} ")

View File

@@ -0,0 +1,21 @@
module ReportBuildsystemMethods
def print_buildsystem_methods
method_list = methods.grep(/#{superclass.to_s.downcase}_/).delete_if { |i| send(i).blank? }
unless method_list.empty?
require_gem 'method_source'
method_blocks = []
method_strings = []
method_list.sort.each do |method|
@method_info = send method
if @method_info.is_a? String
method_strings << "#{method}: #{@method_info}".orange
else
method_blocks << @method_info.source.to_s.orange
end
end
puts "Additional #{superclass.to_s.capitalize} options being used:".orange
puts method_strings
puts method_blocks
end
end
end

View File

@@ -5,6 +5,7 @@
/usr/local/share/glib-2.0/schemas/org.gnome.Weather.gschema.xml
/usr/local/share/gnome-shell/search-providers/org.gnome.Weather.search-provider.ini
/usr/local/share/icons/hicolor/scalable/apps/org.gnome.Weather.svg
/usr/local/share/icons/hicolor/scalable/status/checkmark-symbolic.svg
/usr/local/share/icons/hicolor/scalable/status/temperature-symbolic.svg
/usr/local/share/icons/hicolor/scalable/status/weather-clear-large.svg
/usr/local/share/icons/hicolor/scalable/status/weather-clear-night-large.svg
@@ -40,7 +41,9 @@
/usr/local/share/locale/ar/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/as/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/be/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/be@latin/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/bg/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/bn/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/bn_IN/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/bs/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/ca/LC_MESSAGES/org.gnome.Weather.mo
@@ -57,6 +60,7 @@
/usr/local/share/locale/eu/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/fa/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/fi/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/fil/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/fr/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/fur/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/fy/LC_MESSAGES/org.gnome.Weather.mo
@@ -72,6 +76,7 @@
/usr/local/share/locale/it/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/ja/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/ka/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/kab/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/kk/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/kn/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/ko/LC_MESSAGES/org.gnome.Weather.mo
@@ -90,6 +95,7 @@
/usr/local/share/locale/pt_BR/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/ro/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/ru/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/rw/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/sk/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/sl/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/sr/LC_MESSAGES/org.gnome.Weather.mo

View File

@@ -32,6 +32,7 @@
/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-inline-view-switcher.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
@@ -68,6 +69,7 @@
/usr/local/include/libadwaita-1/adw-timed-animation.h
/usr/local/include/libadwaita-1/adw-toast-overlay.h
/usr/local/include/libadwaita-1/adw-toast.h
/usr/local/include/libadwaita-1/adw-toggle-group.h
/usr/local/include/libadwaita-1/adw-toolbar-view.h
/usr/local/include/libadwaita-1/adw-version.h
/usr/local/include/libadwaita-1/adw-view-stack.h
@@ -76,6 +78,8 @@
/usr/local/include/libadwaita-1/adw-view-switcher.h
/usr/local/include/libadwaita-1/adw-window-title.h
/usr/local/include/libadwaita-1/adw-window.h
/usr/local/include/libadwaita-1/adw-wrap-box.h
/usr/local/include/libadwaita-1/adw-wrap-layout.h
/usr/local/include/libadwaita-1/adwaita.h
/usr/local/lib/girepository-1.0/Adw-1.typelib
/usr/local/lib/libadwaita-1.so
@@ -96,6 +100,7 @@
/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/libadwaita.mo
/usr/local/share/locale/fil/LC_MESSAGES/libadwaita.mo
/usr/local/share/locale/fr/LC_MESSAGES/libadwaita.mo
/usr/local/share/locale/fur/LC_MESSAGES/libadwaita.mo
/usr/local/share/locale/gl/LC_MESSAGES/libadwaita.mo

View File

@@ -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.4
/usr/local/lib/libarchive.so.13.8.0
/usr/local/lib/pkgconfig/libarchive.pc
/usr/local/share/man/man1/bsdcat.1.zst
/usr/local/share/man/man1/bsdcpio.1.zst

View File

@@ -1,5 +1,6 @@
/usr/local/bin/avifdec
/usr/local/bin/avifenc
/usr/local/bin/avifgainmaputil
/usr/local/include/avif/avif.h
/usr/local/include/avif/avif_cxx.h
/usr/local/lib/cmake/libavif/libavif-config-release.cmake
@@ -8,8 +9,6 @@
/usr/local/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-avif.so
/usr/local/lib/libavif.so
/usr/local/lib/libavif.so.16
/usr/local/lib/libavif.so.16.1.0
/usr/local/lib/libavif.so.16.3.0
/usr/local/lib/pkgconfig/libavif.pc
/usr/local/share/man/man1/avifdec.1.zst
/usr/local/share/man/man1/avifenc.1.zst
/usr/local/share/thumbnailers/avif.thumbnailer

View File

@@ -19,7 +19,7 @@
/usr/local/lib/libjpeg.so.62.4.0
/usr/local/lib/libturbojpeg.so
/usr/local/lib/libturbojpeg.so.0
/usr/local/lib/libturbojpeg.so.0.3.0
/usr/local/lib/libturbojpeg.so.0.4.0
/usr/local/lib/pkgconfig/libjpeg.pc
/usr/local/lib/pkgconfig/libturbojpeg.pc
/usr/local/share/doc/libjpeg-turbo/LICENSE.md
@@ -28,7 +28,9 @@
/usr/local/share/doc/libjpeg-turbo/example.c
/usr/local/share/doc/libjpeg-turbo/libjpeg.txt
/usr/local/share/doc/libjpeg-turbo/structure.txt
/usr/local/share/doc/libjpeg-turbo/tjexample.c
/usr/local/share/doc/libjpeg-turbo/tjcomp.c
/usr/local/share/doc/libjpeg-turbo/tjdecomp.c
/usr/local/share/doc/libjpeg-turbo/tjtran.c
/usr/local/share/doc/libjpeg-turbo/usage.txt
/usr/local/share/doc/libjpeg-turbo/wizard.txt
/usr/local/share/man/man1/cjpeg.1.zst

View File

@@ -63,10 +63,12 @@
/usr/local/share/locale/is/LC_MESSAGES/shumate1.mo
/usr/local/share/locale/it/LC_MESSAGES/shumate1.mo
/usr/local/share/locale/ka/LC_MESSAGES/shumate1.mo
/usr/local/share/locale/kab/LC_MESSAGES/shumate1.mo
/usr/local/share/locale/kk/LC_MESSAGES/shumate1.mo
/usr/local/share/locale/ko/LC_MESSAGES/shumate1.mo
/usr/local/share/locale/lt/LC_MESSAGES/shumate1.mo
/usr/local/share/locale/lv/LC_MESSAGES/shumate1.mo
/usr/local/share/locale/ml/LC_MESSAGES/shumate1.mo
/usr/local/share/locale/ne/LC_MESSAGES/shumate1.mo
/usr/local/share/locale/nl/LC_MESSAGES/shumate1.mo
/usr/local/share/locale/oc/LC_MESSAGES/shumate1.mo

View File

@@ -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.4/libxml2-config-version.cmake
/usr/local/lib/cmake/libxml2-2.13.4/libxml2-config.cmake
/usr/local/lib/cmake/libxml2-2.13.4/libxml2-export-release.cmake
/usr/local/lib/cmake/libxml2-2.13.4/libxml2-export.cmake
/usr/local/lib/cmake/libxml2-2.13.7/libxml2-config-version.cmake
/usr/local/lib/cmake/libxml2-2.13.7/libxml2-config.cmake
/usr/local/lib/cmake/libxml2-2.13.7/libxml2-export-release.cmake
/usr/local/lib/cmake/libxml2-2.13.7/libxml2-export.cmake
/usr/local/lib/libxml2.so
/usr/local/lib/libxml2.so.2
/usr/local/lib/libxml2.so.2.13.4
/usr/local/lib/libxml2.so.2.13.7
/usr/local/lib/pkgconfig/libxml-2.0.pc
/usr/local/share/aclocal/libxml.m4
/usr/local/share/doc/libxml2/devhelp/general.html

View File

@@ -51,7 +51,7 @@
/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/libxml2.so.2.13.7
/usr/local/lib/pkgconfig/libxml-2.0.pc
/usr/local/share/aclocal/libxml.m4
/usr/local/share/doc/libxml2/xmlcatalog.html

View File

@@ -8,6 +8,7 @@
/usr/local/include/libyuv/convert_from.h
/usr/local/include/libyuv/convert_from_argb.h
/usr/local/include/libyuv/cpu_id.h
/usr/local/include/libyuv/cpu_support.h
/usr/local/include/libyuv/loongson_intrinsics.h
/usr/local/include/libyuv/macros_msa.h
/usr/local/include/libyuv/mjpeg_decoder.h
@@ -16,6 +17,7 @@
/usr/local/include/libyuv/rotate_argb.h
/usr/local/include/libyuv/rotate_row.h
/usr/local/include/libyuv/row.h
/usr/local/include/libyuv/row_sve.h
/usr/local/include/libyuv/scale.h
/usr/local/include/libyuv/scale_argb.h
/usr/local/include/libyuv/scale_rgb.h

View File

@@ -1,13 +1,12 @@
/usr/local/.cache/pip/libxml2_python-2.13.4-cp313-cp313-linux_armv8l.whl
/usr/local/lib/python3.13/site-packages/__pycache__/drv_libxml2.cpython-313.pyc
/usr/local/lib/python3.13/site-packages/__pycache__/libxml2.cpython-313.pyc
/usr/local/lib/python3.13/site-packages/drv_libxml2.py
/usr/local/lib/python3.13/site-packages/libxml2.py
/usr/local/lib/python3.13/site-packages/libxml2_python-2.13.4.dist-info/INSTALLER
/usr/local/lib/python3.13/site-packages/libxml2_python-2.13.4.dist-info/METADATA
/usr/local/lib/python3.13/site-packages/libxml2_python-2.13.4.dist-info/RECORD
/usr/local/lib/python3.13/site-packages/libxml2_python-2.13.4.dist-info/REQUESTED
/usr/local/lib/python3.13/site-packages/libxml2_python-2.13.4.dist-info/WHEEL
/usr/local/lib/python3.13/site-packages/libxml2_python-2.13.4.dist-info/direct_url.json
/usr/local/lib/python3.13/site-packages/libxml2_python-2.13.4.dist-info/top_level.txt
/usr/local/lib/python3.13/site-packages/libxml2_python-2.13.7.dist-info/INSTALLER
/usr/local/lib/python3.13/site-packages/libxml2_python-2.13.7.dist-info/METADATA
/usr/local/lib/python3.13/site-packages/libxml2_python-2.13.7.dist-info/RECORD
/usr/local/lib/python3.13/site-packages/libxml2_python-2.13.7.dist-info/REQUESTED
/usr/local/lib/python3.13/site-packages/libxml2_python-2.13.7.dist-info/WHEEL
/usr/local/lib/python3.13/site-packages/libxml2_python-2.13.7.dist-info/direct_url.json
/usr/local/lib/python3.13/site-packages/libxml2_python-2.13.7.dist-info/top_level.txt
/usr/local/lib/python3.13/site-packages/libxml2mod.cpython-313-arm-linux-gnueabihf.so

View File

@@ -4,8 +4,8 @@
/usr/local/lib/python3.13/site-packages/cairo/_cairo.cpython-313-arm-linux-gnueabihf.so
/usr/local/lib/python3.13/site-packages/cairo/include/py3cairo.h
/usr/local/lib/python3.13/site-packages/cairo/py.typed
/usr/local/lib/python3.13/site-packages/pycairo-1.27.0.dist-info/INSTALLER
/usr/local/lib/python3.13/site-packages/pycairo-1.27.0.dist-info/METADATA
/usr/local/lib/python3.13/site-packages/pycairo-1.27.0.dist-info/RECORD
/usr/local/lib/python3.13/site-packages/pycairo-1.27.0.dist-info/REQUESTED
/usr/local/lib/python3.13/site-packages/pycairo-1.27.0.dist-info/WHEEL
/usr/local/lib/python3.13/site-packages/pycairo-1.28.0.dist-info/INSTALLER
/usr/local/lib/python3.13/site-packages/pycairo-1.28.0.dist-info/METADATA
/usr/local/lib/python3.13/site-packages/pycairo-1.28.0.dist-info/RECORD
/usr/local/lib/python3.13/site-packages/pycairo-1.28.0.dist-info/REQUESTED
/usr/local/lib/python3.13/site-packages/pycairo-1.28.0.dist-info/WHEEL

View File

@@ -6,8 +6,14 @@
/usr/local/include/oniguruma.h
/usr/local/lib/libjq.a
/usr/local/lib/libjq.la
/usr/local/lib/libjq.so
/usr/local/lib/libjq.so.1
/usr/local/lib/libjq.so.1.0.4
/usr/local/lib/libonig.a
/usr/local/lib/libonig.la
/usr/local/lib/libonig.so
/usr/local/lib/libonig.so.5
/usr/local/lib/libonig.so.5.3.0
/usr/local/lib/pkgconfig/libjq.pc
/usr/local/lib/pkgconfig/oniguruma.pc
/usr/local/share/doc/jq/AUTHORS

View File

@@ -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.4
/usr/local/lib/libarchive.so.13.8.0
/usr/local/lib/pkgconfig/libarchive.pc
/usr/local/share/man/man1/bsdcat.1.zst
/usr/local/share/man/man1/bsdcpio.1.zst

View File

@@ -19,7 +19,7 @@
/usr/local/lib/libjpeg.so.62.4.0
/usr/local/lib/libturbojpeg.so
/usr/local/lib/libturbojpeg.so.0
/usr/local/lib/libturbojpeg.so.0.3.0
/usr/local/lib/libturbojpeg.so.0.4.0
/usr/local/lib/pkgconfig/libjpeg.pc
/usr/local/lib/pkgconfig/libturbojpeg.pc
/usr/local/share/doc/libjpeg-turbo/LICENSE.md
@@ -28,7 +28,9 @@
/usr/local/share/doc/libjpeg-turbo/example.c
/usr/local/share/doc/libjpeg-turbo/libjpeg.txt
/usr/local/share/doc/libjpeg-turbo/structure.txt
/usr/local/share/doc/libjpeg-turbo/tjexample.c
/usr/local/share/doc/libjpeg-turbo/tjcomp.c
/usr/local/share/doc/libjpeg-turbo/tjdecomp.c
/usr/local/share/doc/libjpeg-turbo/tjtran.c
/usr/local/share/doc/libjpeg-turbo/usage.txt
/usr/local/share/doc/libjpeg-turbo/wizard.txt
/usr/local/share/man/man1/cjpeg.1.zst

View File

@@ -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.4/libxml2-config-version.cmake
/usr/local/lib/cmake/libxml2-2.13.4/libxml2-config.cmake
/usr/local/lib/cmake/libxml2-2.13.4/libxml2-export-release.cmake
/usr/local/lib/cmake/libxml2-2.13.4/libxml2-export.cmake
/usr/local/lib/cmake/libxml2-2.13.7/libxml2-config-version.cmake
/usr/local/lib/cmake/libxml2-2.13.7/libxml2-config.cmake
/usr/local/lib/cmake/libxml2-2.13.7/libxml2-export-release.cmake
/usr/local/lib/cmake/libxml2-2.13.7/libxml2-export.cmake
/usr/local/lib/libxml2.so
/usr/local/lib/libxml2.so.2
/usr/local/lib/libxml2.so.2.13.4
/usr/local/lib/libxml2.so.2.13.7
/usr/local/lib/pkgconfig/libxml-2.0.pc
/usr/local/share/aclocal/libxml.m4
/usr/local/share/doc/libxml2/devhelp/general.html

View File

@@ -51,7 +51,7 @@
/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/libxml2.so.2.13.7
/usr/local/lib/pkgconfig/libxml-2.0.pc
/usr/local/share/aclocal/libxml.m4
/usr/local/share/doc/libxml2/xmlcatalog.html

View File

@@ -1,13 +1,12 @@
/usr/local/.cache/pip/libxml2_python-2.13.4-cp313-cp313-linux_i686.whl
/usr/local/lib/python3.13/site-packages/__pycache__/drv_libxml2.cpython-313.pyc
/usr/local/lib/python3.13/site-packages/__pycache__/libxml2.cpython-313.pyc
/usr/local/lib/python3.13/site-packages/drv_libxml2.py
/usr/local/lib/python3.13/site-packages/libxml2.py
/usr/local/lib/python3.13/site-packages/libxml2_python-2.13.4.dist-info/INSTALLER
/usr/local/lib/python3.13/site-packages/libxml2_python-2.13.4.dist-info/METADATA
/usr/local/lib/python3.13/site-packages/libxml2_python-2.13.4.dist-info/RECORD
/usr/local/lib/python3.13/site-packages/libxml2_python-2.13.4.dist-info/REQUESTED
/usr/local/lib/python3.13/site-packages/libxml2_python-2.13.4.dist-info/WHEEL
/usr/local/lib/python3.13/site-packages/libxml2_python-2.13.4.dist-info/direct_url.json
/usr/local/lib/python3.13/site-packages/libxml2_python-2.13.4.dist-info/top_level.txt
/usr/local/lib/python3.13/site-packages/libxml2_python-2.13.7.dist-info/INSTALLER
/usr/local/lib/python3.13/site-packages/libxml2_python-2.13.7.dist-info/METADATA
/usr/local/lib/python3.13/site-packages/libxml2_python-2.13.7.dist-info/RECORD
/usr/local/lib/python3.13/site-packages/libxml2_python-2.13.7.dist-info/REQUESTED
/usr/local/lib/python3.13/site-packages/libxml2_python-2.13.7.dist-info/WHEEL
/usr/local/lib/python3.13/site-packages/libxml2_python-2.13.7.dist-info/direct_url.json
/usr/local/lib/python3.13/site-packages/libxml2_python-2.13.7.dist-info/top_level.txt
/usr/local/lib/python3.13/site-packages/libxml2mod.cpython-313-i386-linux-gnu.so

View File

@@ -5,6 +5,7 @@
/usr/local/share/glib-2.0/schemas/org.gnome.Weather.gschema.xml
/usr/local/share/gnome-shell/search-providers/org.gnome.Weather.search-provider.ini
/usr/local/share/icons/hicolor/scalable/apps/org.gnome.Weather.svg
/usr/local/share/icons/hicolor/scalable/status/checkmark-symbolic.svg
/usr/local/share/icons/hicolor/scalable/status/temperature-symbolic.svg
/usr/local/share/icons/hicolor/scalable/status/weather-clear-large.svg
/usr/local/share/icons/hicolor/scalable/status/weather-clear-night-large.svg
@@ -40,7 +41,9 @@
/usr/local/share/locale/ar/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/as/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/be/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/be@latin/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/bg/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/bn/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/bn_IN/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/bs/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/ca/LC_MESSAGES/org.gnome.Weather.mo
@@ -57,6 +60,7 @@
/usr/local/share/locale/eu/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/fa/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/fi/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/fil/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/fr/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/fur/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/fy/LC_MESSAGES/org.gnome.Weather.mo
@@ -72,6 +76,7 @@
/usr/local/share/locale/it/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/ja/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/ka/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/kab/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/kk/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/kn/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/ko/LC_MESSAGES/org.gnome.Weather.mo
@@ -90,6 +95,7 @@
/usr/local/share/locale/pt_BR/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/ro/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/ru/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/rw/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/sk/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/sl/LC_MESSAGES/org.gnome.Weather.mo
/usr/local/share/locale/sr/LC_MESSAGES/org.gnome.Weather.mo

View File

@@ -32,6 +32,7 @@
/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-inline-view-switcher.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
@@ -68,6 +69,7 @@
/usr/local/include/libadwaita-1/adw-timed-animation.h
/usr/local/include/libadwaita-1/adw-toast-overlay.h
/usr/local/include/libadwaita-1/adw-toast.h
/usr/local/include/libadwaita-1/adw-toggle-group.h
/usr/local/include/libadwaita-1/adw-toolbar-view.h
/usr/local/include/libadwaita-1/adw-version.h
/usr/local/include/libadwaita-1/adw-view-stack.h
@@ -76,6 +78,8 @@
/usr/local/include/libadwaita-1/adw-view-switcher.h
/usr/local/include/libadwaita-1/adw-window-title.h
/usr/local/include/libadwaita-1/adw-window.h
/usr/local/include/libadwaita-1/adw-wrap-box.h
/usr/local/include/libadwaita-1/adw-wrap-layout.h
/usr/local/include/libadwaita-1/adwaita.h
/usr/local/lib64/girepository-1.0/Adw-1.typelib
/usr/local/lib64/libadwaita-1.so
@@ -96,6 +100,7 @@
/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/libadwaita.mo
/usr/local/share/locale/fil/LC_MESSAGES/libadwaita.mo
/usr/local/share/locale/fr/LC_MESSAGES/libadwaita.mo
/usr/local/share/locale/fur/LC_MESSAGES/libadwaita.mo
/usr/local/share/locale/gl/LC_MESSAGES/libadwaita.mo

View File

@@ -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.4
/usr/local/lib64/libarchive.so.13.8.0
/usr/local/lib64/pkgconfig/libarchive.pc
/usr/local/share/man/man1/bsdcat.1.zst
/usr/local/share/man/man1/bsdcpio.1.zst

View File

@@ -1,5 +1,6 @@
/usr/local/bin/avifdec
/usr/local/bin/avifenc
/usr/local/bin/avifgainmaputil
/usr/local/include/avif/avif.h
/usr/local/include/avif/avif_cxx.h
/usr/local/lib64/cmake/libavif/libavif-config-release.cmake
@@ -8,8 +9,6 @@
/usr/local/lib64/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-avif.so
/usr/local/lib64/libavif.so
/usr/local/lib64/libavif.so.16
/usr/local/lib64/libavif.so.16.1.0
/usr/local/lib64/libavif.so.16.3.0
/usr/local/lib64/pkgconfig/libavif.pc
/usr/local/share/man/man1/avifdec.1.zst
/usr/local/share/man/man1/avifenc.1.zst
/usr/local/share/thumbnailers/avif.thumbnailer

View File

@@ -19,7 +19,7 @@
/usr/local/lib64/libjpeg.so.62.4.0
/usr/local/lib64/libturbojpeg.so
/usr/local/lib64/libturbojpeg.so.0
/usr/local/lib64/libturbojpeg.so.0.3.0
/usr/local/lib64/libturbojpeg.so.0.4.0
/usr/local/lib64/pkgconfig/libjpeg.pc
/usr/local/lib64/pkgconfig/libturbojpeg.pc
/usr/local/share/doc/libjpeg-turbo/LICENSE.md
@@ -28,7 +28,9 @@
/usr/local/share/doc/libjpeg-turbo/example.c
/usr/local/share/doc/libjpeg-turbo/libjpeg.txt
/usr/local/share/doc/libjpeg-turbo/structure.txt
/usr/local/share/doc/libjpeg-turbo/tjexample.c
/usr/local/share/doc/libjpeg-turbo/tjcomp.c
/usr/local/share/doc/libjpeg-turbo/tjdecomp.c
/usr/local/share/doc/libjpeg-turbo/tjtran.c
/usr/local/share/doc/libjpeg-turbo/usage.txt
/usr/local/share/doc/libjpeg-turbo/wizard.txt
/usr/local/share/man/man1/cjpeg.1.zst

View File

@@ -63,10 +63,12 @@
/usr/local/share/locale/is/LC_MESSAGES/shumate1.mo
/usr/local/share/locale/it/LC_MESSAGES/shumate1.mo
/usr/local/share/locale/ka/LC_MESSAGES/shumate1.mo
/usr/local/share/locale/kab/LC_MESSAGES/shumate1.mo
/usr/local/share/locale/kk/LC_MESSAGES/shumate1.mo
/usr/local/share/locale/ko/LC_MESSAGES/shumate1.mo
/usr/local/share/locale/lt/LC_MESSAGES/shumate1.mo
/usr/local/share/locale/lv/LC_MESSAGES/shumate1.mo
/usr/local/share/locale/ml/LC_MESSAGES/shumate1.mo
/usr/local/share/locale/ne/LC_MESSAGES/shumate1.mo
/usr/local/share/locale/nl/LC_MESSAGES/shumate1.mo
/usr/local/share/locale/oc/LC_MESSAGES/shumate1.mo

View File

@@ -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/lib64/cmake/libxml2-2.13.4/libxml2-config-version.cmake
/usr/local/lib64/cmake/libxml2-2.13.4/libxml2-config.cmake
/usr/local/lib64/cmake/libxml2-2.13.4/libxml2-export-release.cmake
/usr/local/lib64/cmake/libxml2-2.13.4/libxml2-export.cmake
/usr/local/lib64/cmake/libxml2-2.13.7/libxml2-config-version.cmake
/usr/local/lib64/cmake/libxml2-2.13.7/libxml2-config.cmake
/usr/local/lib64/cmake/libxml2-2.13.7/libxml2-export-release.cmake
/usr/local/lib64/cmake/libxml2-2.13.7/libxml2-export.cmake
/usr/local/lib64/libxml2.so
/usr/local/lib64/libxml2.so.2
/usr/local/lib64/libxml2.so.2.13.4
/usr/local/lib64/libxml2.so.2.13.7
/usr/local/lib64/pkgconfig/libxml-2.0.pc
/usr/local/share/aclocal/libxml.m4
/usr/local/share/doc/libxml2/devhelp/general.html

View File

@@ -51,7 +51,7 @@
/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/libxml2.so.2.13.7
/usr/local/lib64/pkgconfig/libxml-2.0.pc
/usr/local/share/aclocal/libxml.m4
/usr/local/share/doc/libxml2/xmlcatalog.html

View File

@@ -8,6 +8,7 @@
/usr/local/include/libyuv/convert_from.h
/usr/local/include/libyuv/convert_from_argb.h
/usr/local/include/libyuv/cpu_id.h
/usr/local/include/libyuv/cpu_support.h
/usr/local/include/libyuv/loongson_intrinsics.h
/usr/local/include/libyuv/macros_msa.h
/usr/local/include/libyuv/mjpeg_decoder.h
@@ -16,6 +17,7 @@
/usr/local/include/libyuv/rotate_argb.h
/usr/local/include/libyuv/rotate_row.h
/usr/local/include/libyuv/row.h
/usr/local/include/libyuv/row_sve.h
/usr/local/include/libyuv/scale.h
/usr/local/include/libyuv/scale_argb.h
/usr/local/include/libyuv/scale_rgb.h

View File

@@ -1,13 +1,12 @@
/usr/local/.cache/pip/libxml2_python-2.13.4-cp313-cp313-linux_x86_64.whl
/usr/local/lib64/python3.13/site-packages/__pycache__/drv_libxml2.cpython-313.pyc
/usr/local/lib64/python3.13/site-packages/__pycache__/libxml2.cpython-313.pyc
/usr/local/lib64/python3.13/site-packages/drv_libxml2.py
/usr/local/lib64/python3.13/site-packages/libxml2.py
/usr/local/lib64/python3.13/site-packages/libxml2_python-2.13.4.dist-info/INSTALLER
/usr/local/lib64/python3.13/site-packages/libxml2_python-2.13.4.dist-info/METADATA
/usr/local/lib64/python3.13/site-packages/libxml2_python-2.13.4.dist-info/RECORD
/usr/local/lib64/python3.13/site-packages/libxml2_python-2.13.4.dist-info/REQUESTED
/usr/local/lib64/python3.13/site-packages/libxml2_python-2.13.4.dist-info/WHEEL
/usr/local/lib64/python3.13/site-packages/libxml2_python-2.13.4.dist-info/direct_url.json
/usr/local/lib64/python3.13/site-packages/libxml2_python-2.13.4.dist-info/top_level.txt
/usr/local/lib64/python3.13/site-packages/libxml2_python-2.13.7.dist-info/INSTALLER
/usr/local/lib64/python3.13/site-packages/libxml2_python-2.13.7.dist-info/METADATA
/usr/local/lib64/python3.13/site-packages/libxml2_python-2.13.7.dist-info/RECORD
/usr/local/lib64/python3.13/site-packages/libxml2_python-2.13.7.dist-info/REQUESTED
/usr/local/lib64/python3.13/site-packages/libxml2_python-2.13.7.dist-info/WHEEL
/usr/local/lib64/python3.13/site-packages/libxml2_python-2.13.7.dist-info/direct_url.json
/usr/local/lib64/python3.13/site-packages/libxml2_python-2.13.7.dist-info/top_level.txt
/usr/local/lib64/python3.13/site-packages/libxml2mod.cpython-313-x86_64-linux-gnu.so

View File

@@ -4,8 +4,8 @@
/usr/local/lib64/python3.13/site-packages/cairo/_cairo.cpython-313-x86_64-linux-gnu.so
/usr/local/lib64/python3.13/site-packages/cairo/include/py3cairo.h
/usr/local/lib64/python3.13/site-packages/cairo/py.typed
/usr/local/lib64/python3.13/site-packages/pycairo-1.27.0.dist-info/INSTALLER
/usr/local/lib64/python3.13/site-packages/pycairo-1.27.0.dist-info/METADATA
/usr/local/lib64/python3.13/site-packages/pycairo-1.27.0.dist-info/RECORD
/usr/local/lib64/python3.13/site-packages/pycairo-1.27.0.dist-info/REQUESTED
/usr/local/lib64/python3.13/site-packages/pycairo-1.27.0.dist-info/WHEEL
/usr/local/lib64/python3.13/site-packages/pycairo-1.28.0.dist-info/INSTALLER
/usr/local/lib64/python3.13/site-packages/pycairo-1.28.0.dist-info/METADATA
/usr/local/lib64/python3.13/site-packages/pycairo-1.28.0.dist-info/RECORD
/usr/local/lib64/python3.13/site-packages/pycairo-1.28.0.dist-info/REQUESTED
/usr/local/lib64/python3.13/site-packages/pycairo-1.28.0.dist-info/WHEEL

View File

@@ -48,7 +48,7 @@ class A2png < Autotools
# Autotools: https://www.gnu.org/software/automake/manual/1.16.5/html_node/Standard-Directory-Variables.html
# a2png expects cairo to be in $prefix/lib and $prefix/include/cairo, but we sometimes have it in $prefix/lib64.
# As a result, we have to pass both directories rather than just --with-cairo-prefix=#{CREW_PREFIX}.
configure_options "--with-cairo-lib=#{CREW_LIB_PREFIX} --with-cairo-include=#{CREW_PREFIX}/include/cairo"
autotools_configure_options "--with-cairo-lib=#{CREW_LIB_PREFIX} --with-cairo-include=#{CREW_PREFIX}/include/cairo"
run_tests
end

View File

@@ -31,6 +31,6 @@ class Aircrack_ng < Autotools
end
# https://github.com/aircrack-ng/aircrack-ng/issues/2623
pre_configure_options 'CFLAGS=-Wno-error=implicit-function-declaration'
autotools_pre_configure_options 'CFLAGS=-Wno-error=implicit-function-declaration'
run_tests
end

View File

@@ -20,5 +20,5 @@ class Apr < Autotools
depends_on 'util_linux' # R
# https://bz.apache.org/bugzilla/show_bug.cgi?id=63439
configure_options '--with-devrandom --without-sendfile --enable-layout=GNU'
autotools_configure_options '--with-devrandom --without-sendfile --enable-layout=GNU'
end

View File

@@ -20,5 +20,5 @@ class Apr_util < Autotools
depends_on 'apr'
depends_on 'expat'
configure_options "--with-apr=#{CREW_PREFIX}"
autotools_configure_options "--with-apr=#{CREW_PREFIX}"
end

View File

@@ -38,7 +38,7 @@ class Aria2 < Autotools
depends_on 'zlib' # R
depends_on 'zstd' # R
configure_options "--with-libnettle --with-libgcrypt --with-libssh2 \
autotools_configure_options "--with-libnettle --with-libgcrypt --with-libssh2 \
--with-ca-bundle=#{CREW_PREFIX}/etc/ssl/certs/ca-certificates.crt"
# run_tests

View File

@@ -29,7 +29,7 @@ class Avahi < Autotools
depends_on 'libssp' # R
depends_on 'xmltoman' => :build
configure_options "--enable-compat-libdns_sd \
autotools_configure_options "--enable-compat-libdns_sd \
--disable-gtk \
--disable-gtk3 \
--disable-libsystemd \

View File

@@ -21,5 +21,5 @@ class Bacon < Autotools
system 'sed -i "s,/usr/share,\$\(DATADIR\)," Makefile.in'
end
configure_options '--disable-gui'
autotools_configure_options '--disable-gui'
end

View File

@@ -24,7 +24,7 @@ class Bacula < Autotools
depends_on 'zlib' # R
depends_on 'zstd' # R
configure_options "--sbindir=#{CREW_PREFIX}/bin \
autotools_configure_options "--sbindir=#{CREW_PREFIX}/bin \
--enable-smartalloc \
--with-mysql \
--with-tcp-wrappers \

View File

@@ -23,13 +23,13 @@ class Bash < Autotools
depends_on 'ncurses' # R
depends_on 'readline' # R
configure_options '--with-curses \
autotools_configure_options '--with-curses \
--enable-extended-glob-default \
--enable-readline \
--without-bash-malloc \
--with-installed-readline'
configure_install_extras do
autotools_install_extras do
FileUtils.ln_s "#{CREW_PREFIX}/bin/bash", "#{CREW_DEST_PREFIX}/bin/sh"
end
end

View File

@@ -43,6 +43,6 @@ class Bashdb < Autotools
# Setting --with-dbg-main works, but looking at configure.ac reveals that collaboration with upstream is probably required
# i.e. why does setting a variable described as "location of dbg-main.sh" to the location of bashdb-main.inc fix things?
# It seems like DBGR_MAIN is confused with BASHDB_MAIN, among other things.
configure_options "--with-dbg-main=#{CREW_PREFIX}/share/bashdb-main.inc --with-bash=#{CREW_PREFIX}/bin/bash"
autotools_configure_options "--with-dbg-main=#{CREW_PREFIX}/share/bashdb-main.inc --with-bash=#{CREW_PREFIX}/bin/bash"
run_tests
end

View File

@@ -23,7 +23,7 @@ class Bc < Autotools
depends_on 'texinfo' => :build
depends_on 'ncurses' # R
configure_options '--with-readline'
autotools_configure_options '--with-readline'
run_tests
end

View File

@@ -36,5 +36,5 @@ class Bind < Autotools
depends_on 'sphinx' => :build
depends_on 'zlib' # R
configure_options '--enable-fixed-rrset --enable-full-report --with-libidn2'
autotools_configure_options '--enable-fixed-rrset --enable-full-report --with-libidn2'
end

View File

@@ -22,5 +22,5 @@ class Bmon < Autotools
depends_on 'ncurses'
depends_on 'glibc' # R
configure_options '--without-ncurses --with-ncursesw'
autotools_configure_options '--without-ncurses --with-ncursesw'
end

View File

@@ -27,7 +27,7 @@ class Btrfs_progs < Autotools
depends_on 'zlib' # R
depends_on 'zstd' # R
configure_options '--disable-documentation \
autotools_configure_options '--disable-documentation \
--disable-convert \
--with-crypto=libgcrypt \
--with-convert=ext2'

View File

@@ -55,5 +55,5 @@ class Caja < Autotools
gnome
configure_options '--enable-wayland'
autotools_configure_options '--enable-wayland'
end

View File

@@ -21,5 +21,5 @@ class Chafa < Autotools
depends_on 'libxslt'
# The tools depends on freetype, which drops i686 compatibility.
configure_options '--without-tools'
autotools_configure_options '--without-tools'
end

View File

@@ -22,6 +22,6 @@ class Cloog < Autotools
depends_on 'isl'
depends_on 'osl'
configure_options '--with-isl=system --with-osl=system'
autotools_configure_options '--with-isl=system --with-osl=system'
run_tests
end

View File

@@ -36,7 +36,7 @@ class Clutter < Autotools
system 'patch -Np1 -i clutter-x11-startup-error.patch'
end
configure_options '--enable-evdev \
autotools_configure_options '--enable-evdev \
--enable-evdev-input \
--enable-wayland-backend \
--enable-egl-backend \

View File

@@ -34,7 +34,7 @@ class Codeblocks < Autotools
depends_on 'wxwidgets' # R
depends_on 'zlib' # R
configure_options '--with-contrib-plugins=all'
autotools_configure_options '--with-contrib-plugins=all'
run_tests

View File

@@ -28,7 +28,7 @@ class Cogl < Autotools
gnome
configure_options '--enable-cairo=yes \
autotools_configure_options '--enable-cairo=yes \
--enable-cogl-pango=yes \
--enable-gdk-pixbuf=yes \
--enable-cogl-gst=yes \

View File

@@ -3,7 +3,7 @@ require 'package'
class Core < Package
description 'Core Chromebrew Packages.'
homepage 'https://github.com/chromebrew/chromebrew'
version '3.10'
version '3.11'
license 'GPL-3+'
compatibility 'all'
@@ -36,6 +36,7 @@ class Core < Package
depends_on 'gnutls'
depends_on 'groff'
depends_on 'icu4c'
depends_on 'jq' if ARCH == 'armv7l'
depends_on 'krb5'
depends_on 'less'
depends_on 'libarchive'

View File

@@ -41,9 +41,9 @@ class Coreutils < Autotools
EOF
end
configure_options '--disable-year2038' unless ARCH.include?('x86_64')
autotools_configure_options '--disable-year2038' unless ARCH.include?('x86_64')
configure_install_extras do
autotools_install_extras do
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/bin"
FileUtils.install 'arch', "#{CREW_DEST_PREFIX}/bin/arch", mode: 0o755
# Remove conflicts with psmisc package.

View File

@@ -19,5 +19,5 @@ class Cpio < Autotools
depends_on 'glibc' # R
configure_options '--enable-mt' # magnetic tape, not manifest tool
autotools_configure_options '--enable-mt' # magnetic tape, not manifest tool
end

View File

@@ -22,5 +22,5 @@ class Cryptsetup < Autotools
depends_on 'libgcrypt'
depends_on 'popt'
configure_options '--disable-asciidoc'
autotools_configure_options '--disable-asciidoc'
end

View File

@@ -34,7 +34,7 @@ class Curl < Autotools
depends_on 'zlib' # R
depends_on 'zstd' # R
configure_options "--disable-maintainer-mode \
autotools_configure_options "--disable-maintainer-mode \
--enable-ares \
--enable-ipv6 \
--enable-ldap \

View File

@@ -21,12 +21,12 @@ class Dejagnu < Autotools
depends_on 'texinfo'
run_tests
configure_build_extras do
autotools_build_extras do
system 'makeinfo --html --no-split -o doc/dejagnu.html doc/dejagnu.texi'
system 'makeinfo --plaintext -o doc/dejagnu.txt doc/dejagnu.texi'
end
configure_install_extras do
autotools_install_extras do
system "install -v -dm755 #{CREW_DEST_PREFIX}/share/doc/dejagnu-1.6.1"
system "install -v -m644 doc/dejagnu.html #{CREW_DEST_PREFIX}/share/doc/dejagnu-1.6.1"
system "install -v -m644 doc/dejagnu.txt #{CREW_DEST_PREFIX}/share/doc/dejagnu-1.6.1"

View File

@@ -20,5 +20,5 @@ class Diffutils < Autotools
depends_on 'glibc' # R
depends_on 'libsigsegv' # R
configure_options '--disable-year2038' unless ARCH == 'x86_64'
autotools_configure_options '--disable-year2038' unless ARCH == 'x86_64'
end

View File

@@ -34,8 +34,8 @@ class Distcc < Autotools
system "sed -i 's/ install-gnome-data//g' Makefile.in"
end
pre_configure_options "CFLAGS+=' -DPY_SSIZE_T_CLEAN -fcommon' NATIVE_COMPILER_TRIPLE='#{CREW_TARGET}' INCLUDESERVER_PYTHON='#{CREW_PREFIX}/bin/python3'"
configure_options '--enable-rfc2553 --disable-Werror --with-python-sys-prefix'
autotools_pre_configure_options "CFLAGS+=' -DPY_SSIZE_T_CLEAN -fcommon' NATIVE_COMPILER_TRIPLE='#{CREW_TARGET}' INCLUDESERVER_PYTHON='#{CREW_PREFIX}/bin/python3'"
autotools_configure_options '--enable-rfc2553 --disable-Werror --with-python-sys-prefix'
def self.install
system "make DESTDIR=#{CREW_DEST_DIR} INCLUDESERVER_PYTHON=#{CREW_PREFIX}/bin/python3 install"

View File

@@ -37,6 +37,6 @@ class Ecasound < Autotools
depends_on 'readline'
depends_on 'ruby'
configure_options '--disable-pyecasound'
autotools_configure_options '--disable-pyecasound'
run_tests
end

View File

@@ -29,8 +29,8 @@ class Elfutils < Autotools
depends_on 'zstd' # R
# -D_FORTIFY_SOURCE=0 needed due to -O3 optimization.
pre_configure_options "CFLAGS+=' -Wno-error -D_FORTIFY_SOURCE=0' CXXFLAGS+=' -Wno-error -D_FORTIFY_SOURCE=0'"
configure_options "#{ARCH == 'i686' ? '--disable-libdebuginfod --disable-debuginfod' : ''} --enable-maintainer-mode --program-prefix='eu-'"
autotools_pre_configure_options "CFLAGS+=' -Wno-error -D_FORTIFY_SOURCE=0' CXXFLAGS+=' -Wno-error -D_FORTIFY_SOURCE=0'"
autotools_configure_options "#{ARCH == 'i686' ? '--disable-libdebuginfod --disable-debuginfod' : ''} --enable-maintainer-mode --program-prefix='eu-'"
def self.patch
downloader 'https://raw.githubusercontent.com/openwrt/openwrt/refs/heads/main/package/libs/elfutils/patches/009-fix-null-dereference-with-lto.patch', 'bd81d483ed5474fd7e87a27e4c961bf8670f76c45f5fe9a273cb2f11d8f44ffc'

View File

@@ -28,5 +28,5 @@ class Erlang < Autotools
depends_on 'wxwidgets' # R
depends_on 'zlib' # R
configure_options "ERL_OTP=#{Dir.pwd} #{'--disable-year2038' unless ARCH.eql?('x86_64')}"
autotools_configure_options "ERL_OTP=#{Dir.pwd} #{'--disable-year2038' unless ARCH.eql?('x86_64')}"
end

View File

@@ -25,5 +25,5 @@ class Ethtool < Autotools
run_tests
configure_options "--sbindir=#{CREW_PREFIX}/bin"
autotools_configure_options "--sbindir=#{CREW_PREFIX}/bin"
end

View File

@@ -28,6 +28,6 @@ class Eudev < Autotools
system 'sed -i s,/usr/bin/xsltproc,xsltproc,g man/make.sh'
end
configure_options '--enable-hwdb \
autotools_configure_options '--enable-hwdb \
--enable-rule-generator'
end

View File

@@ -21,5 +21,5 @@ class F2fs_tools < Autotools
depends_on 'lzo'
depends_on 'util_linux'
configure_options '--without-selinux'
autotools_configure_options '--without-selinux'
end

View File

@@ -13,12 +13,12 @@ class Fakeroot < Autotools
binary_sha256({
aarch64: '64542b42054b52f1ca987a1c2974da60d6080d03a762d4e6527f0921c18031f8',
armv7l: '64542b42054b52f1ca987a1c2974da60d6080d03a762d4e6527f0921c18031f8',
i686: 'iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii',
x86_64: 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
i686: '7d9ae9d6d05fe9fcccbaa6c95ed9f1c9c7fd24bc900789964e6adb65d8cd499b',
x86_64: '0eb4fef1f84924b98381bf118d586d7d3fc9dbdde46ed994d778ab6e6f791ccf'
})
depends_on 'libcap'
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1074945
pre_configure_options 'CFLAGS=-Wno-incompatible-pointer-types'
autotools_pre_configure_options 'CFLAGS=-Wno-incompatible-pointer-types'
end

View File

@@ -7,22 +7,22 @@ class Fceux < Package
compatibility 'x86_64'
license 'GPLv2'
source_url "https://github.com/FinnBaltazar1111/fceux/releases/download/v#{version}/fceux-#{version}-amd64.deb"
source_sha256 "7a740608aad4157aec6010cea29aecc30f5e7341667375b49bc38df770c5ca49"
source_sha256 '7a740608aad4157aec6010cea29aecc30f5e7341667375b49bc38df770c5ca49'
depends_on 'ffmpeg'
depends_on 'libarchive'
depends_on 'libsdl2'
depends_on 'mesa_utils'
depends_on 'minizip'
depends_on 'numactl'
depends_on 'qt5_base'
depends_on 'qt5_base'
depends_on 'zlib'
no_compile_needed
def self.install
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/"
FileUtils.cp_r ".", "#{CREW_DEST_PREFIX}"
FileUtils.cp_r '.', CREW_DEST_PREFIX.to_s
end
def self.postinstall

View File

@@ -20,6 +20,6 @@ class Fftw < Autotools
# We'd need to build fftw three times with each precision option in order to support things properly.
# https://www.linuxfromscratch.org/blfs/view/cvs/general/fftw.html
# https://github.com/FFTW/fftw3/pull/276
configure_options '--enable-shared'
autotools_configure_options '--enable-shared'
run_tests
end

View File

@@ -25,7 +25,7 @@ class Fig2dev < Autotools
depends_on 'netpbm' => :build
depends_on 'ghostscript' => :build
configure_options '--enable-transfig'
pre_configure_options "FIG2DEV_LIBDIR=#{CREW_PREFIX}/share/fig2dev \
autotools_configure_options '--enable-transfig'
autotools_pre_configure_options "FIG2DEV_LIBDIR=#{CREW_PREFIX}/share/fig2dev \
XFIGLIBDIR=#{CREW_PREFIX}/share/xfig"
end

View File

@@ -45,15 +45,15 @@ class Filezilla < Autotools
print_source_bashrc
configure_options '--disable-maintainer-mode --with-pugixml=builtin'
autotools_configure_options '--disable-maintainer-mode --with-pugixml=builtin'
configure_build_extras do
autotools_build_extras do
File.write '10-filezilla', <<~FILEZILLA_EOF
alias filezilla="WAYLAND_DISPLAY=wayland-0 DISPLAY='' GDK_BACKEND=wayland filezilla"
FILEZILLA_EOF
end
configure_install_extras do
autotools_install_extras do
FileUtils.install '10-filezilla', "#{CREW_DEST_PREFIX}/etc/env.d/10-filezilla", mode: 0o644
end
end

View File

@@ -29,7 +29,7 @@ class Finch < Autotools
depends_on 'perl'
depends_on 'tcl'
configure_options "--disable-avahi \
autotools_configure_options "--disable-avahi \
--disable-dbus \
--disable-gstreamer \
--disable-gtkui \

View File

@@ -20,6 +20,6 @@ class Findutils < Autotools
depends_on 'glibc' # R
depends_on 'python3' => :build
configure_options "--without-selinux #{'--disable-year2038' unless ARCH.eql?('x86_64')}"
autotools_configure_options "--without-selinux #{'--disable-year2038' unless ARCH.eql?('x86_64')}"
run_tests
end

View File

@@ -21,7 +21,7 @@ class Flex < Autotools
depends_on 'glibc' # R
depends_on 'm4' => :build
configure_options '--with-pic --disable-static --enable-shared'
autotools_configure_options '--with-pic --disable-static --enable-shared'
def self.patch
downloader 'https://gitlab.archlinux.org/archlinux/packaging/packages/flex/-/raw/main/flex-pie.patch?ref_type=heads&inline=false',

View File

@@ -19,5 +19,5 @@ class Font_util < Autotools
depends_on 'xorg_macros' => :build
configure_options "--with-fontrootdir=#{CREW_PREFIX}/share/fonts"
autotools_configure_options "--with-fontrootdir=#{CREW_PREFIX}/share/fonts"
end

View File

@@ -29,7 +29,7 @@ class Fossil < Autotools
system "./configure --prefix=#{CREW_PREFIX}"
end
configure_install_extras do
autotools_install_extras do
FileUtils.install 'fossil.1', "#{CREW_DEST_MAN_PREFIX}/man1/fossil.1", mode: 0o644
end
end

View File

@@ -48,9 +48,9 @@ class Gawk < Autotools
# Tests appear to have container issues...
run_tests if ARCH == 'i686'
configure_options '--without-libsigsegv-prefix'
autotools_configure_options '--without-libsigsegv-prefix'
configure_install_extras do
autotools_install_extras do
# Remove conflict with #{CREW_PREFIX}/bin/awk from mawk package
FileUtils.rm "#{CREW_DEST_PREFIX}/bin/awk"
end

View File

@@ -40,7 +40,7 @@ class Gdb < Autotools
conflicts_ok # binutils conflicts
configure_options "--disable-binutils \
autotools_configure_options "--disable-binutils \
--disable-ld \
--disable-nls \
--enable-64-bit-bfd \

View File

@@ -39,5 +39,5 @@ class Geany_plugins < Autotools
depends_on 'zlib' # R
# try to avoid gcc14 issues.
configure_options '--disable-projectorganizer'
autotools_configure_options '--disable-projectorganizer'
end

View File

@@ -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.25-#{CREW_ICU_VER}"
version "0.25-#{CREW_ICU_VER}-1"
license 'GPL-3+ and LGPL-2.1+'
compatibility 'all'
source_url "https://ftp.gnu.org/pub/gnu/gettext/gettext-#{version.split('-')[0]}.tar.lz"
@@ -11,10 +11,10 @@ class Gettext < Autotools
binary_compression 'tar.zst'
binary_sha256({
aarch64: 'b5b8c0210160ad6b777abcf1266dfe7a593eee77f94b1df5169d3d51757f42ca',
armv7l: 'b5b8c0210160ad6b777abcf1266dfe7a593eee77f94b1df5169d3d51757f42ca',
i686: '10c940604c08829ce57ccb559e0dfb38137c244e9e0a01037c64ce145bb19ea2',
x86_64: 'c9bab6466cd7393a2601fb03369fb808397fe7749b3a43a63afdf4eb2d3f8896'
aarch64: '76e4ea0e82bc7465e1d822e76ca46844b1d43d867b4803b7113d38b1a6d8de18',
armv7l: '76e4ea0e82bc7465e1d822e76ca46844b1d43d867b4803b7113d38b1a6d8de18',
i686: 'c1d0965ea6c5e78f0a314a44def43351e5c94279d25cfd46733617185bb79aa2',
x86_64: 'c016e20248d296f40fa6a6eee0986e760be047bd71fa89f80167ace2b13f4aff'
})
depends_on 'acl' # R
@@ -28,7 +28,7 @@ class Gettext < Autotools
depends_on 'openjdk8' => :build
depends_on 'zlib' # R
configure_options '--disable-static \
autotools_configure_options '--disable-static \
--enable-shared \
--with-pic \
--without-included-gettext'

View File

@@ -1,34 +0,0 @@
require 'buildsystems/autotools'
class Gfbgraph < Autotools
description 'GLib/GObject wrapper for the Facebook Graph API'
homepage 'https://wiki.gnome.org/Projects/GFBGraph'
version '0.2.5'
license 'LGPL-2.1+'
compatibility 'aarch64 armv7l x86_64'
source_url 'https://gitlab.gnome.org/GNOME/libgfbgraph.git'
git_hashtag "v_#{version.gsub('.', '_')}"
binary_compression 'tar.zst'
binary_sha256({
aarch64: '883a3eb50bf0fd391333759913e20c4211f5f31a1a3002b7b900019b234b211d',
armv7l: '883a3eb50bf0fd391333759913e20c4211f5f31a1a3002b7b900019b234b211d',
x86_64: '560bd5f25612d861a0daea31a7547a0d8d18e42a9d21bcd7960dceef1b3ca7b5'
})
depends_on 'gnome_online_accounts' => :build
depends_on 'rest' => :build
depends_on 'json_glib' => :build
depends_on 'gobject_introspection' => :build
depends_on 'gtk_doc' => :build
gnome
configure_options '--enable-gtk-doc \
--enable-introspection'
def self.install
system "make DESTDIR=#{CREW_DEST_DIR} install \
libgfbgraphdocdir=#{CREW_PREFIX}/share/doc/gfbgraph"
end
end

View File

@@ -17,7 +17,7 @@ class Gifsicle < Autotools
x86_64: '6fc9976eb9f4680a3a3b57adefc027f0b53b27e5186aea1d3e824509e4244c92'
})
configure_options '--without-x --disable-gifview'
autotools_configure_options '--without-x --disable-gifview'
def self.patch
system "sed -i 's,/usr/bin/perl,#{CREW_PREFIX}/bin/perl,' test/testie"

View File

@@ -20,6 +20,6 @@ class Gmp < Autotools
depends_on 'gcc_lib' # R
depends_on 'glibc' # R
configure_options '--disable-maintainer-mode \
autotools_configure_options '--disable-maintainer-mode \
--enable-cxx'
end

View File

@@ -39,5 +39,5 @@ class Gnome_docking_library < Autotools
system 'patch -Np1 -i 4.patch'
end
configure_options '--disable-gtk-doc'
autotools_configure_options '--disable-gtk-doc'
end

View File

@@ -22,5 +22,5 @@ class Gnome_icon_theme < Autotools
gnome
configure_options '--enable-icon-mapping'
autotools_configure_options '--enable-icon-mapping'
end

View File

@@ -40,7 +40,7 @@ class Gnome_keyring < Autotools
gnome
configure_options "--with-pam-dir=#{CREW_PREFIX}/lib/security \
autotools_configure_options "--with-pam-dir=#{CREW_PREFIX}/lib/security \
--disable-selinux \
--disable-schemas-compile \
--disable-doc" # Docs cannot be used due to #4275

View File

@@ -3,11 +3,11 @@ require 'buildsystems/meson'
class Gnome_maps < Meson
description 'A simple GNOME maps application'
homepage 'https://wiki.gnome.org/Apps/Maps'
version '46.rc'
version '48.2'
license 'GPL-2+, LGPL-2+, MIT, CC-BY-3.0 and CC-BY-SA-3.0'
compatibility 'aarch64 armv7l x86_64'
source_url 'https://gitlab.gnome.org/GNOME/gnome-maps.git'
git_hashtag "v#{version}"
git_hashtag version
binary_compression 'tar.zst'
binary_sha256({
@@ -21,10 +21,10 @@ class Gnome_maps < Meson
depends_on 'geoclue' => :build
depends_on 'geocode_glib2' => :build
depends_on 'geocode_glib' => :build
depends_on 'gfbgraph' => :build
depends_on 'gjs' => :build
depends_on 'glibc' # R
depends_on 'glib' # R
depends_on 'gnome_weather' => :build
depends_on 'gobject_introspection' => :build
depends_on 'gtk4' # R
depends_on 'harfbuzz' # R
@@ -32,6 +32,7 @@ class Gnome_maps < Meson
depends_on 'libchamplain' => :build
depends_on 'libgee' => :build
depends_on 'libhandy' => :build
depends_on 'libportal' => :build
depends_on 'librsvg' # R
depends_on 'libshumate' # R
depends_on 'libxml2' # R
@@ -42,8 +43,4 @@ class Gnome_maps < Meson
depends_on 'yelp_tools' => :build
gnome
def self.patch
system "sed -i 's/geocode-glib-2.0/geocode-glib-1.0/g' meson.build"
end
end

View File

@@ -3,7 +3,7 @@ require 'buildsystems/meson'
class Gnome_weather < Meson
description 'Access current weather conditions and forecasts'
homepage 'https://wiki.gnome.org/Apps/Weather'
version '45.0'
version '48.0'
license 'GPL-2+, LGPL-2+, MIT, CC-BY-3.0 and CC-BY-SA-3.0'
compatibility 'aarch64 armv7l x86_64'
source_url 'https://gitlab.gnome.org/GNOME/gnome-weather.git'
@@ -11,11 +11,12 @@ class Gnome_weather < Meson
binary_compression 'tar.zst'
binary_sha256({
aarch64: '666624e236a5bdeb5cf5babd00e521a8e647158bf97d3d83e5ccae37e40bf23c',
armv7l: '666624e236a5bdeb5cf5babd00e521a8e647158bf97d3d83e5ccae37e40bf23c',
x86_64: '5a4811dfc9fcdfc77908302ddab627d153873780296f3d51e534f739198c74c0'
aarch64: '77e7e9f7ec1d0d065f84b1376dcd722d7e7913c3be8feff4da1dc90d41652182',
armv7l: '77e7e9f7ec1d0d065f84b1376dcd722d7e7913c3be8feff4da1dc90d41652182',
x86_64: 'e89af9c9a5522b3515cc9c06d41d90b010dc7629e416bb07b8823b44a97a05a7'
})
depends_on 'desktop_file_utilities' => :build
depends_on 'gtk3' => :build
depends_on 'gjs' => :build
depends_on 'libgweather' => :build

Some files were not shown because too many files have changed in this diff Show More