mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Add unbuilt updated pip packages to updates-2025-05-24-15-08 * Add unbuilt updated ruby gem packages to updates-2025-05-24-15-08 * Modify pip buildsystem & add more debugging. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to updates-2025-05-24-15-08 * Add built packages for linux/amd64 to updates-2025-05-24-15-08 * Add built packages for linux/arm/v7 to updates-2025-05-24-15-08 --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com>
23 lines
720 B
Ruby
23 lines
720 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_click < Pip
|
|
description 'Click is a simple wrapper around optparse for powerful command line utilities.'
|
|
homepage 'https://click.palletsprojects.com'
|
|
version "8.2.1-#{CREW_PY_VER}"
|
|
license 'BSD-3'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '62a3166e0192c0055ea995301385f3a2d1ce2cd12befaf8a257226c02ec1e3a0',
|
|
armv7l: '62a3166e0192c0055ea995301385f3a2d1ce2cd12befaf8a257226c02ec1e3a0',
|
|
i686: 'df3c72ee468f03a6876efc0aeb613e5b49bef9661c11f8ac673f74dc04b1ef6f',
|
|
x86_64: '3960f30e0e9d498706a0836b8c5e40bae69c6d10003488b0bcd4b110da099758'
|
|
})
|
|
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|