mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* Add unbuilt py3_bcrypt to updater-py3_bcrypt-5.0.0 * updater-py3_bcrypt-5.0.0: Build Run on linux/amd64. * updater-py3_bcrypt-5.0.0: Build Run on linux/386. * updater-py3_bcrypt-5.0.0: Build Run on linux/arm/v7. * updater-py3_bcrypt-5.0.0: Package File Update Run on linux/386 container. --------- Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
26 lines
777 B
Ruby
26 lines
777 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_bcrypt < Pip
|
|
description 'Modern password hashing for your software and your servers.'
|
|
homepage 'https://github.com/pyca/bcrypt/'
|
|
version "5.0.0-#{CREW_PY_VER}"
|
|
license 'Apache-2.0'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '3e1f97e5a0fc81015b03e5545fb4a8c57113f135ab8f3253648b3c00cee11674',
|
|
armv7l: '3e1f97e5a0fc81015b03e5545fb4a8c57113f135ab8f3253648b3c00cee11674',
|
|
i686: 'e1dfd90d99b120e64f0473b8b0c06b555e02ffc3ad91018d4b4c751ad4114a36',
|
|
x86_64: 'c94b08e1b5fe28e75f97bee4e9c4c8e76f5a1420b2b1a3c5771a72dada09fa06'
|
|
})
|
|
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'python3'
|
|
depends_on 'rust' => :build
|
|
|
|
no_source_build
|
|
end
|