mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -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
724 B
Ruby
24 lines
724 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_packaging < Pip
|
|
description 'Packaging provides core utilities for Python packages'
|
|
homepage 'https://packaging.pypa.io/'
|
|
version "25.0-#{CREW_PY_VER}"
|
|
license 'BSD-2 or Apache-2.0'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'c4011545df1fbced834abcc058c8c5ca5ee50f4fa6f5c5afd3188bda5bf88914',
|
|
armv7l: 'c4011545df1fbced834abcc058c8c5ca5ee50f4fa6f5c5afd3188bda5bf88914',
|
|
i686: 'ed2a4ecd927e923ea8ac8751398ba48524687bb0b57ec10097e17e8d08d0348e',
|
|
x86_64: 'af622c1f2ea85ff29b9e4a9de217f778135d62d71de8e8c64473572b21e2acd1'
|
|
})
|
|
|
|
depends_on 'py3_pyparsing'
|
|
depends_on 'python3'
|
|
|
|
no_source_build
|
|
end
|