Files
chromebrew/packages/py3_argcomplete.rb
Maximilian Downey Twiss f6dc1d8d4e Derive binary_url in package.rb (#7082)
* 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)
2024-01-25 11:03:31 -05:00

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