mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* libmbedtls => 4.0 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add librhash compatibility symlink to keep cmake from breaking. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add py3_jsonschema and add as dep to libmbedtls. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add py3_attrs build dep to libmbedtls. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add -Wno-dev to CMAKE_OPTIONS. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Do not cache git repos when in GitHub Actions. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add more python packages Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add py3_jsonschema_specifications. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add builds for py3_pygments Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust deps. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add py3_jinja2 dep to mbedtls build Signed-off-by: Satadru Pramanik <satadru@gmail.com> * lint Signed-off-by: Satadru Pramanik <satadru@gmail.com> * lint Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Disable tests. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust rubocop reinstalls during builds. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update i686 manifest Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add armv7l manifest Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add x86_64 filelists. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Use array in superclass check. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com>
26 lines
777 B
Ruby
26 lines
777 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_requests < Pip
|
|
description 'Requests is a simple, yet elegant, HTTP library.'
|
|
homepage 'https://docs.python-requests.org/'
|
|
version "2.32.5-#{CREW_PY_VER}"
|
|
license 'Apache-2.0'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '47c21757f2acf9b67ddbec11d99e69f5ca6045c00e674f48d7500143958ef849',
|
|
armv7l: '47c21757f2acf9b67ddbec11d99e69f5ca6045c00e674f48d7500143958ef849',
|
|
i686: '06230e6e7d261bd448a61426c27facc8187344fa4970a00a12fd44fff284e83b',
|
|
x86_64: '393b178ab3afb95acc914fb1ffcaba60db65086ae8561c0e448acb761d8d689e'
|
|
})
|
|
|
|
depends_on 'py3_chardet'
|
|
depends_on 'py3_idna'
|
|
depends_on 'py3_urllib3'
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|