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>
30 lines
865 B
Ruby
30 lines
865 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Sphinx < Pip
|
|
description 'Sphinx is a tool that makes it easy to create intelligent and beautiful documentation.'
|
|
homepage 'https://www.sphinx-doc.org/'
|
|
@_ver = '7.2.6'
|
|
version "#{@_ver}-py3.12"
|
|
license 'BSD'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
|
|
depends_on 'py3_jinja2'
|
|
depends_on 'py3_sphinxcontrib_devhelp'
|
|
depends_on 'py3_sphinxcontrib_applehelp'
|
|
depends_on 'py3_sphinxcontrib_jsmath'
|
|
depends_on 'py3_sphinxcontrib_serializinghtml'
|
|
depends_on 'py3_sphinxcontrib_qthelp'
|
|
depends_on 'py3_sphinxcontrib_htmlhelp'
|
|
depends_on 'py3_docutils'
|
|
depends_on 'py3_imagesize'
|
|
depends_on 'py3_requests'
|
|
depends_on 'py3_babel'
|
|
depends_on 'py3_alabaster'
|
|
depends_on 'py3_pygments'
|
|
depends_on 'py3_packaging'
|
|
depends_on 'py3_snowballstemmer'
|
|
depends_on 'python3' => :build
|
|
no_compile_needed
|
|
end
|