mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 23:48:01 -05:00
* Add unbuilt py3_certifi to updater-py3_certifi-2026.1.4-py3.14 * updater-py3_certifi-2026.1.4-py3.14: Package File Update Run on linux/386 container. * updater-py3_certifi-2026.1.4-py3.14: Package File Update Run on linux/amd64 container. * updater-py3_certifi-2026.1.4-py3.14: Package File Update Run on linux/arm/v7 container. --------- Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
23 lines
667 B
Ruby
23 lines
667 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_certifi < Pip
|
|
description 'Certifi provides Mozilla\'s CA Bundle.'
|
|
homepage 'https://certifi.io/'
|
|
version "2026.1.4-#{CREW_PY_VER}"
|
|
license 'MPL-2.0'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'ab2ea29023ad2e00ab07225fd1ee69d28f59b4dfdb02702c31049a753ea261d5',
|
|
armv7l: 'ab2ea29023ad2e00ab07225fd1ee69d28f59b4dfdb02702c31049a753ea261d5',
|
|
i686: '5e3c5eb91ce2e243bfbd4aced6abf754d5428bebd81250e50a637919826c30d3',
|
|
x86_64: '2410a97f84af74edb1d97624104e6890ae0ab72d8de8b88183d17882189eeb2d'
|
|
})
|
|
|
|
depends_on 'python3' # L
|
|
|
|
no_source_build
|
|
end
|