mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -05:00
* Add unbuilt updated pip packages to updates-2025-04-21-00-21 * Add unbuilt updated ruby gem packages to updates-2025-04-21-00-21 * Revert py3_ldapdomaindump Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to updates-2025-04-21-00-21 * add arm builds for py3_pillow Signed-off-by: Satadru Pramanik <satadru@gmail.com> * add builds and rust rebuild Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> * add more binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com>
24 lines
708 B
Ruby
24 lines
708 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_mako < Pip
|
|
description 'Mako is a super fast templating language.'
|
|
homepage 'https://www.makotemplates.org/'
|
|
version "1.3.10-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '818c50197745453cd624af44c0741e0d142059cbd9aff452722498915aee7908',
|
|
armv7l: '818c50197745453cd624af44c0741e0d142059cbd9aff452722498915aee7908',
|
|
i686: '0c276a772390e5cc6f8e30ab2c7075959cdeadcfa8a98225d67ac7523646cb47',
|
|
x86_64: 'e5b2c149f2b3ba4557069f1edacab88b9379cd6cf49ad7b0994a2f7dc17cb1e0'
|
|
})
|
|
|
|
depends_on 'py3_markupsafe'
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|