mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 16:08:08 -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>
15 lines
295 B
Ruby
15 lines
295 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_pygments < Pip
|
|
description 'Python Syntax Highlighter'
|
|
homepage 'https://pygments.org/'
|
|
@_ver = '2.17.2'
|
|
version "#{@_ver}-py3.12"
|
|
license 'BSD-2'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
|
|
depends_on 'python3' => :build
|
|
no_compile_needed
|
|
end
|