mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -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>
33 lines
902 B
Ruby
33 lines
902 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_pillow < Pip
|
|
description 'Pillow is a Python Imaging Library (PIL).'
|
|
homepage 'https://python-pillow.org/'
|
|
version "11.2.1-#{CREW_PY_VER}"
|
|
license 'HPND'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '1efe7e4b3574594ccafb735edc9d7c1d383de6c28181daf19465dd8eae689ec5',
|
|
armv7l: '1efe7e4b3574594ccafb735edc9d7c1d383de6c28181daf19465dd8eae689ec5',
|
|
x86_64: '77b59a24b813af54435297a9e57d706031c046781bae496dfa3c830f2b8e8694'
|
|
})
|
|
|
|
depends_on 'freetype' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'lcms' # R
|
|
depends_on 'libjpeg_turbo'
|
|
depends_on 'libtiff' # R
|
|
depends_on 'libwebp' # R
|
|
depends_on 'libxcb'
|
|
depends_on 'openjpeg' # R
|
|
depends_on 'py3_lxml'
|
|
depends_on 'py3_xlsxwriter'
|
|
depends_on 'python3' => :build
|
|
depends_on 'zlib' # R
|
|
|
|
no_source_build
|
|
end
|