mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -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>
27 lines
801 B
Ruby
27 lines
801 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_pyicu < Pip
|
|
description 'PyICU is a Python extension wrapping the ICU C++ API.'
|
|
homepage 'https://pyicu.org/'
|
|
version "2.15.1-#{CREW_ICU_VER}-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '2eb2134af08bafa8304601a00a5867db500b60aaca01954f6260bac2ad3bf557',
|
|
armv7l: '2eb2134af08bafa8304601a00a5867db500b60aaca01954f6260bac2ad3bf557',
|
|
i686: '9cc8942ed63328635876106dbb78bd829c0bfeca57f819af8cf82486e9a0fc03',
|
|
x86_64: '3fc6859213e55b8c03f241b26fb692c7fb12fad25ea22a06cc7c35e7962c4dec'
|
|
})
|
|
|
|
depends_on 'python3' => :build
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'glibc_lib' # R
|
|
depends_on 'icu4c' # R
|
|
|
|
no_source_build
|
|
end
|