mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 15:13:56 -05:00
* Python => 3.14.1 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add some binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add more binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update util_linux with manual build using CREW_KERNEL_VERSION=5.10 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Modify tools/build_updated_packages.rb to allow ignoring packages git marks as having changed. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add some package updates Signed-off-by: Satadru Pramanik <satadru@gmail.com> * More binaries. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add more binaries and update versions. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add gdb binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> * rebuild lilv Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update libcacaca Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add more binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add more builds. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add more binaries. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add more binaries. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add more binaries & fix py3_twine. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add requests_toolbelt binaries. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Rebuild twine Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust twine erroring in crew. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * More Updates... Signed-off-by: Satadru Pramanik <satadru@gmail.com> * lint Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add meld builds Signed-off-by: Satadru Pramanik <satadru@gmail.com> * More updates Signed-off-by: Satadru Pramanik <satadru@gmail.com> * More updates. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add sphinx binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add more builds and sync with master. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add more builds. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add another twine check. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add more builds Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add more builds Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update python packages, add builds. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add more builds Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add builds. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add py3_ruff builds. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add more builds and filelists. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add more filelists. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * lint Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Bump version. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust Generate PR workflow. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add libnghttp2 to CREW_ESSENTIAL_PACKAGES to keep curl from breaking. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: chromebrew-actions[bot] <220035932+chromebrew-actions[bot]@users.noreply.github.com>
51 lines
1.8 KiB
Ruby
51 lines
1.8 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.41.2-9179172-#{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'
|
|
# Build from stable/v2.4.1 branch.
|
|
git_hashtag '917917253e60b0ba485cf6a27a2f993aa43e1eea'
|
|
# git_hashtag "v#{version.split('-').first}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '91decac55f4df9b732374862399db44b9104b60dfc0a538f5686886d1d83ac30',
|
|
armv7l: '91decac55f4df9b732374862399db44b9104b60dfc0a538f5686886d1d83ac30',
|
|
i686: '0b5c219fa26fe65437b9261bef0f178763595cbf5d1346d65e3d15d7fff2a089',
|
|
x86_64: '3e109b0a94fe9369382ac1cda73225f842ec06d00086a0a1019f6f4738f184fc'
|
|
})
|
|
|
|
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 'libxcrypt' # R
|
|
depends_on 'linux_pam' # R
|
|
depends_on 'ncurses' # R
|
|
depends_on 'pcre2' => :build
|
|
depends_on 'python3' # R
|
|
depends_on 'readline' # R
|
|
depends_on 'ruby_asciidoctor' => :build
|
|
depends_on 'sqlite' # R
|
|
depends_on 'zlib' # R
|
|
|
|
conflicts_ok
|
|
|
|
# Needs to be built with CREW_KERNEL_VERSION=5.10 for the build to
|
|
# succeed on x86_64 and armv7l.
|
|
year2038 = '-Dallow-32bit-time=true'
|
|
i686_disabled_builds = '-Dbuild-blkzone=disabled -Dbuild-lsfd=disabled'
|
|
meson_options "-Dbuild-kill=disabled \
|
|
-Dbuild-uuidd=disabled \
|
|
-Dprogram-tests=false \
|
|
-Dsystemd=disabled \
|
|
#{i686_disabled_builds if ARCH == 'i686'} \
|
|
#{year2038 unless ARCH == 'x86_64'}"
|
|
end
|