mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* update of py3_pygments, glib, add libslirp Signed-off-by: Satadru Pramanik <satadru@gmail.com> * update packages and filelists Signed-off-by: Satadru Pramanik <satadru@gmail.com> * add binaries for glib, libslirp Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add py3_sphinx_rtd_theme Signed-off-by: Satadru Pramanik <satadru@gmail.com> * add more filelists Signed-off-by: Satadru Pramanik <satadru@gmail.com> * add qemu binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> * adjust py3_urllib3 version Signed-off-by: Satadru Pramanik <satadru@gmail.com> * adjust libslirp dep ordering Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com>
16 lines
361 B
Ruby
16 lines
361 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_urllib3 < Pip
|
|
description 'URLlib3 is an HTTP library with thread-safe connection pooling, file post, and more.'
|
|
homepage 'https://urllib3.readthedocs.io/'
|
|
@_ver = '2.2.1'
|
|
version "#{@_ver}-py3.12"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
|
|
depends_on 'python3' => :build
|
|
|
|
no_compile_needed
|
|
end
|