mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -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
835 B
Ruby
24 lines
835 B
Ruby
require 'buildsystems/python'
|
|
|
|
class Py3_babel < Python
|
|
description 'Babel is an integrated collection of utilities that assist in internationalizing and localizing Python applications.'
|
|
homepage 'https://babel.pocoo.org/'
|
|
@_ver = '2.13.0'
|
|
version "#{@_ver}-py3.12"
|
|
license 'BSD'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/python-babel/babel.git'
|
|
git_hashtag "v#{@_ver}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '104eec74ce764321b0c1473feacfa7a50450030d0d02e58ca8e276ab6c4e7e9d',
|
|
armv7l: '104eec74ce764321b0c1473feacfa7a50450030d0d02e58ca8e276ab6c4e7e9d',
|
|
i686: '361db2fdc8629ce1021aa173fbc77e0365b064bef530ef732fd45770ad34ce6f',
|
|
x86_64: '3446c44e604c229916c2118e47a7054ec93868f411e15f7cd83eb5cbcf4c575f'
|
|
})
|
|
|
|
depends_on 'py3_pytz'
|
|
depends_on 'python3' => :build
|
|
end
|