mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Add unbuilt updated pip packages to updates-2024-12-02-00-20 * Add unbuilt updated ruby gem packages to updates-2024-12-02-00-20 * Add updated packages for linux/amd64 to updates-2024-12-02-00-20 * Add updated packages for linux/arm/v7 to updates-2024-12-02-00-20 * Add updated packages for linux/386 to updates-2024-12-02-00-20 * Adjust ruby gem version checker to skip versions containing 'java'. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add container cleanup steps to workflows Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust workflows. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Rebuild ruby_json Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com>
22 lines
696 B
Ruby
22 lines
696 B
Ruby
require 'buildsystems/ruby'
|
|
|
|
class Ruby_pathname < RUBY
|
|
description 'Representation of the name of a file or directory on the filesystem.'
|
|
homepage 'https://github.com/ruby/pathname'
|
|
version "0.4.0-#{CREW_RUBY_VER}"
|
|
license 'Ruby'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'gem'
|
|
|
|
binary_sha256({
|
|
aarch64: 'be0b6a326ee13db3a877dd9ebd230ba55a6bd6a5b13d2905435ec25494bea643',
|
|
armv7l: 'be0b6a326ee13db3a877dd9ebd230ba55a6bd6a5b13d2905435ec25494bea643',
|
|
i686: '914c1d0cca87b8d87d8cd1e50a43eff9ee63a4b71277db918aac3320fd0dac18',
|
|
x86_64: 'a16e9673646b917273395c96ca05238a2a44f448d497d8a1033c742415dc19aa'
|
|
})
|
|
|
|
conflicts_ok
|
|
gem_compile_needed
|
|
end
|