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-02-14-00-18 * Add unbuilt updated ruby gem packages to updates-2025-02-14-00-18 * Add built packages for linux/386 to updates-2025-02-14-00-18 * Add built packages for linux/amd64 to updates-2025-02-14-00-18 * Add built packages for linux/arm/v7 to updates-2025-02-14-00-18 * Regenerate x86 binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Regenerate x86 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: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Satadru Pramanik, DO, MPH, MEng <satadru@gmail.com>
32 lines
965 B
Ruby
32 lines
965 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_numpy < Pip
|
|
description 'NumPy is the fundamental package for array computing with Python.'
|
|
homepage 'https://numpy.org/'
|
|
version "2.2.3-#{CREW_PY_VER}"
|
|
license 'BSD'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'af019bf867e414ee9cd495aff0cf03534e9c00392580eee9de0a3273f2751678',
|
|
armv7l: 'af019bf867e414ee9cd495aff0cf03534e9c00392580eee9de0a3273f2751678',
|
|
i686: '6c68f4c2d57db9b7dc2085551920d247e5632b7318d492038c9b06a9557717d4',
|
|
x86_64: 'ab97240687c62b7f6ce96f64cc06c1b460d7fd143a65bb3cb181bec0619d21a1'
|
|
})
|
|
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'lapack' => :build
|
|
depends_on 'openblas' # R
|
|
depends_on 'py3_cython' => :build
|
|
depends_on 'py3_setuptools' => :build
|
|
depends_on 'python3' => :build
|
|
depends_on 'zlib' # R
|
|
|
|
pre_configure_options CREW_ENV_OPTIONS.gsub('mold', 'gold')
|
|
|
|
no_source_build
|
|
end
|