Files
chromebrew/packages/util_linux.rb
Satadru Pramanik, DO, MPH, MEng 8473668c0d Store perl/python/icu/ruby versions for packages as constants in const.rb (#10528)
* Adjust const.rb and packages to use generated version constants.

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

* Update gem binaries

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

* Update update scripts.

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

* Libxml2 => 2.13.4

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

* Adjust install.sh to handle new gem package versioning suffix.

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

* update openimageio

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

* update py3_ruff

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

* add pip binaries

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

* Move activesupport gem behind requre_gem function.

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

* Adjust file path in ruby_pry.

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

* lint

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

---------

Signed-off-by: Satadru Pramanik <satadru@gmail.com>
2024-09-26 15:27:10 -05:00

116 lines
3.9 KiB
Ruby

require 'buildsystems/meson'
class Util_linux < Meson
description 'essential linux tools'
homepage 'https://www.kernel.org/pub/linux/utils/util-linux/'
version "2.40.2-#{CREW_PY_VER}"
license 'GPL-2, LGPL-2.1, BSD-4, MIT and public-domain'
compatibility 'all'
source_url 'https://github.com/util-linux/util-linux.git'
git_hashtag "v#{version.split('-').first}"
binary_compression 'tar.zst'
binary_sha256({
aarch64: 'da9dd1f772299760caa21e3e9242492d8d80867f32c1ad29bede0e0190b6886c',
armv7l: 'da9dd1f772299760caa21e3e9242492d8d80867f32c1ad29bede0e0190b6886c',
i686: '5cff0546890cbe871f825bffbf3eea280182ed58665b9661e0f0213a63a95420',
x86_64: '8a83684c5bdb2803974fd165a12f60da5e821cbf7106120ea0f0bd3dfbcd715f'
})
depends_on 'bash_completion' # R
depends_on 'bzip2' # R
depends_on 'eudev' if ARCH == 'x86_64' # (for libudev.h)
depends_on 'filecmd' # R
depends_on 'gcc_lib' # R
depends_on 'glibc' # R
depends_on 'libcap_ng' # R
depends_on 'libeconf' # R
depends_on 'linux_pam' # R
depends_on 'lzlib' # R
depends_on 'ncurses' # R
depends_on 'pcre2' => :build
depends_on 'readline' # R
depends_on 'ruby_asciidoctor' => :build
depends_on 'sqlite' # R
depends_on 'xzutils' # R
depends_on 'zlib' # R
depends_on 'zstd' # R
conflicts_ok
year2038 = ARCH == 'x86_64' ? '' : '-Dallow-32bit-time=true'
# Avoid incompatibilities and conflicts with coreutils.
disabled_builds = ARCH == 'i686' ? '-Dbuild-kill=disabled -Dbuild-blkzone=disabled -Dbuild-lsfd=disabled -Dprogram-tests=false' : '-Dbuild-kill=disabled'
meson_options "#{year2038} #{disabled_builds}"
def self.patch
# Fix undefined reference to `pthread_atfork' build error
# introduced by https://github.com/util-linux/util-linux/pull/3017
# and mentioned in https://github.com/util-linux/util-linux/issues/3131 .
system "sed -i \"1i thread_dep = dependency('threads')\" libuuid/meson.build"
system "sed -i \"s/dependencies : \\\[socket_libs,/dependencies : \\\[socket_libs, thread_dep,/\" libuuid/meson.build"
end
def self.install
system "DESTDIR=#{CREW_DEST_DIR} #{CREW_NINJA} -C builddir install"
return if ARCH == 'i686'
# Imagemagick wants a libuuid libtool file.
@libname = 'libuuid'
@libnames = Dir["#{CREW_DEST_LIB_PREFIX}/#{@libname}.so*"]
@libnames = Dir["#{CREW_DEST_LIB_PREFIX}/#{@libname}-*.so*"] if @libnames.empty?
@libnames.each do |s|
s.gsub!("#{CREW_DEST_LIB_PREFIX}/", '')
end
@dlname = @libnames.grep(/.so./).first
@dlname = @libnames.grep(/.so/).first if @dlname.nil?
@libname = @dlname.gsub(/.so.\d+/, '')
@longest_libname = @libnames.max_by(&:length)
@libvars = @longest_libname.rpartition('.so.')[2].split('.')
@libtool_file = <<~LIBTOOLEOF
# #{@libname}.la - a libtool library file
# Generated by libtool (GNU libtool) (Created by Chromebrew)
#
# Please DO NOT delete this file!
# It is necessary for linking the library.
# The name that we can dlopen(3).
dlname='#{@dlname}'
# Names of this library.
library_names='#{@libnames.reverse.join(' ')}'
# The name of the static archive.
old_library='#{@libname}.a'
# Linker flags that cannot go in dependency_libs.
inherited_linker_flags=''
# Libraries that this one depends upon.
dependency_libs=''
# Names of additional weak libraries provided by this library
weak_library_names=''
# Version information for #{name}.
current=#{@libvars[1]}
age=#{@libvars[1]}
revision=#{@libvars[2]}
# Is this an already installed library?
installed=yes
# Should we warn about portability when linking against -modules?
shouldnotlink=no
# Files to dlopen/dlpreopen
dlopen=''
dlpreopen=''
# Directory that this library needs to be installed in:
libdir='#{CREW_LIB_PREFIX}'
LIBTOOLEOF
File.write("#{CREW_DEST_LIB_PREFIX}/#{@libname}.la", @libtool_file)
end
end