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)
23 lines
772 B
Ruby
23 lines
772 B
Ruby
require 'buildsystems/python'
|
|
|
|
class Py3_argcomplete < Python
|
|
description 'Argcomplete provides bash completion for argparse.'
|
|
homepage 'https://kislyuk.github.io/argcomplete/'
|
|
@_ver = '3.1.2'
|
|
version "#{@_ver}-py3.12"
|
|
license 'Apache-2.0'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/kislyuk/argcomplete.git'
|
|
git_hashtag "v#{@_ver}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '20cc478c4305dfca682c2e49228b11965d5423b323d88c17b72c32fd97486ac7',
|
|
armv7l: '20cc478c4305dfca682c2e49228b11965d5423b323d88c17b72c32fd97486ac7',
|
|
i686: 'e9207b11af7766fbb6eb529a47d24c3a0f9bad100c6ac2f30a3e9976ada0aee8',
|
|
x86_64: '101776a62bed162e0f67db5e36aebff9cef52c9369c07bd069425fe9c942a925'
|
|
})
|
|
|
|
depends_on 'python3' => :build
|
|
end
|