mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
* Add binary_compression value to each package * Remove binary_url values and arrays * Handle packages with empty binary_sha256 arrays (either missing binaries or not compiled by us)
23 lines
761 B
Ruby
23 lines
761 B
Ruby
require 'buildsystems/python'
|
|
|
|
class Py3_abimap < Python
|
|
description 'A helper for library maintainers to use symbol versioning'
|
|
homepage 'https://github.com/ansasaki/abimap'
|
|
@_ver = '0.3.2'
|
|
version "#{@_ver}-py3.12"
|
|
license 'BSD-2'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/ansasaki/abimap.git'
|
|
git_hashtag "v#{@_ver}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '2dfeb9e6b7ccb33314b37fa635b6abf3aa59f039005c90f1dcdaac1e811a92a6',
|
|
armv7l: '2dfeb9e6b7ccb33314b37fa635b6abf3aa59f039005c90f1dcdaac1e811a92a6',
|
|
i686: 'e04efd696ee2917057dc6dfdfd61c024f57cd53ead8957d3013f571bc9ef682a',
|
|
x86_64: 'e8b783f82dc557620223d76c32ed1bd40950352da810664a99f312cddee683c9'
|
|
})
|
|
|
|
depends_on 'python3' => :build
|
|
end
|