mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -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>
27 lines
836 B
Ruby
27 lines
836 B
Ruby
# Adapted from Arch Linux python-mdurl PKGBUILD at:
|
|
# https://github.com/archlinux/svntogit-community/raw/packages/python-mdurl/trunk/PKGBUILD
|
|
|
|
require 'buildsystems/pip'
|
|
|
|
class Py3_mdurl < Pip
|
|
description 'URL utilities for markdown-it'
|
|
homepage 'https://github.com/executablebooks/mdurl'
|
|
version '0.1.2'
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '02aa3ecbd424f2e35bfdb65ff1e858168f6cc8c29b7875ee71566b2991bcf5cc',
|
|
armv7l: '02aa3ecbd424f2e35bfdb65ff1e858168f6cc8c29b7875ee71566b2991bcf5cc',
|
|
i686: '0f2a77969cee945ebc1b0ba552bbb9b9307f3c63b05937fedbff629cf9a21bca',
|
|
x86_64: '0c9f732ba4a5d965e103a27edeeb118d5c5eea5ea1c74958ee16cffa59fbc1b3'
|
|
})
|
|
|
|
depends_on 'py3_uc_micro_py'
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|