mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* libmbedtls => 4.0 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add librhash compatibility symlink to keep cmake from breaking. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add py3_jsonschema and add as dep to libmbedtls. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add py3_attrs build dep to libmbedtls. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add -Wno-dev to CMAKE_OPTIONS. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Do not cache git repos when in GitHub Actions. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add more python packages Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add py3_jsonschema_specifications. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add builds for py3_pygments Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust deps. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add py3_jinja2 dep to mbedtls build Signed-off-by: Satadru Pramanik <satadru@gmail.com> * lint Signed-off-by: Satadru Pramanik <satadru@gmail.com> * lint Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Disable tests. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust rubocop reinstalls during builds. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update i686 manifest Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add armv7l manifest Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add x86_64 filelists. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Use array in superclass check. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com>
30 lines
997 B
Ruby
30 lines
997 B
Ruby
# Adapted from Arch Linux python-jsonschema PKGBUILD at:
|
|
# https://github.com/archlinux/svntogit-community/raw/packages/python-jsonschema/trunk/PKGBUILD
|
|
|
|
require 'buildsystems/pip'
|
|
|
|
class Py3_jsonschema < Pip
|
|
description 'An implementation of JSON Schema validation for Python'
|
|
homepage 'https://github.com/python-jsonschema/jsonschema'
|
|
version '4.25.1'
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '6ee5977604589f45c959aac2c59f43a62861ebf7b87a2666b08736ae723f1946',
|
|
armv7l: '6ee5977604589f45c959aac2c59f43a62861ebf7b87a2666b08736ae723f1946',
|
|
i686: '9ab6489a3b437d090a4ef738fe85e49e9134b18c65c6751cb77952044dd8807b',
|
|
x86_64: '0745d632978887b2b825df535e4b1f25cd2a11433171bbf4456128d5fb0a7249'
|
|
})
|
|
|
|
depends_on 'py3_attrs' # R
|
|
depends_on 'py3_jsonschema_specifications' # R
|
|
depends_on 'py3_referencing' # R
|
|
depends_on 'py3_rpds_py' # R
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|