mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 16:08:08 -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)
24 lines
737 B
Ruby
24 lines
737 B
Ruby
require 'buildsystems/python'
|
|
|
|
class Py3_tomli < Python
|
|
description "Tomli is a lil' TOML parser."
|
|
homepage 'https://github.com/hukkin/tomli/'
|
|
@_ver = '2.0.1'
|
|
version "#{@_ver}-py3.12"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/hukkin/tomli.git'
|
|
git_hashtag @_ver
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '35692904b29b433587a5e52cb4f128624d9df8ede7020777860b9296917d62ff',
|
|
armv7l: '35692904b29b433587a5e52cb4f128624d9df8ede7020777860b9296917d62ff',
|
|
i686: 'c8e83f1e16cd0e1c2b0e322361963b40e6ba32bfaf59aa342557768bee5fe4a1',
|
|
x86_64: '09bcd13b118d79e12eb097525d90555fb7180883db0c6cb91bf0264f8bc0b09b'
|
|
})
|
|
|
|
depends_on 'python3'
|
|
depends_on 'py3_flit_core'
|
|
end
|