diff options
author | V3n3RiX <venerix@koprulu.sector> | 2023-08-17 03:31:10 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2023-08-17 03:31:10 +0100 |
commit | 280d9db9f9470686aae5ce1fa4cfa57b26e9beb2 (patch) | |
tree | 604fa555cdb815d5774494412f041887debf5220 /app-doc/mathjax-docs | |
parent | 2ef316f0ffbd90d833effd2d09d1232e5767e321 (diff) |
gentoo auto-resync : 17:08:2023 - 03:31:10
Diffstat (limited to 'app-doc/mathjax-docs')
-rw-r--r-- | app-doc/mathjax-docs/Manifest | 2 | ||||
-rw-r--r-- | app-doc/mathjax-docs/mathjax-docs-3.2.2.ebuild | 40 |
2 files changed, 42 insertions, 0 deletions
diff --git a/app-doc/mathjax-docs/Manifest b/app-doc/mathjax-docs/Manifest index b6aa86a6692a..fb97ca5860c1 100644 --- a/app-doc/mathjax-docs/Manifest +++ b/app-doc/mathjax-docs/Manifest @@ -1,3 +1,5 @@ DIST mathjax-docs-2.7.7.tar.gz 233452 BLAKE2B 280db6c794471d369a17161ad859dc73ddf1494af35114b69356aae41ea52d771f92b0b85ba82df8ed542039af152938f5fda71d752da4410ab183fe6a24ab81 SHA512 25fa97294ae153298d45b449d995c0402c481c6425ea4ebb38dcc509df741aed02d5469a520c8b793b8135b4140a6d1ad6688a42e3cb26004cfd7fcb838c32e6 +DIST mathjax-docs-3.2.2.tar.gz 227724 BLAKE2B 1b2d25073e4f141f5c832f1139e6bcfbdb15c039b820f3662d6fb261faebedac8ea72fb324d76389c35cd28cd41556689501d8795d7a426d735d4eaf88eb61ee SHA512 94167e58deb4f899d5c49a6b1efec24f57fff7aa497a019e9f775e251927c698b7c5598b88087c2964b8cb7238b73152dea01e091b8afaeab8979b396270d429 EBUILD mathjax-docs-2.7.7.ebuild 1034 BLAKE2B d28e0fe24177526242ab8ff2a7e81f2220cec2e0ea6efc00a62dc97f4f3fea10476a9a08ba26fd2eff766ac02f528a6065f891904fdc598eff5af05acfc3e3cb SHA512 766c67cb85027bacd3e756baf7c3e14765c3ffe083864c58a61a45753b4be2888a0b1afab8bc9d7247cc9deafaec605eff26c1d0999c9c712b776281ac620ebd +EBUILD mathjax-docs-3.2.2.ebuild 943 BLAKE2B befad04de948d7c9e7e7cf33e6be731178fb9004ad23df167974753df4ad61ecdc65ccc13632a9f5de9f7204519f3cb98665911569055c3d6b3d83f75aa226e1 SHA512 99b21e0939c1a85e2c22376c0bf869d6943a66a42cdf42ba5932dff248f5501680dcd6887ef8fa553e3cb331c42f4c02d534d446add5352380e8dababd369eb5 MISC metadata.xml 1063 BLAKE2B 6b785658c601cb16b92118a2880c648d76bfb98982f18205096921f2481aabe02149d98df3dca4a7e183dfdf8d8dd9357e51e2c663ca79b2727c5751ca3ffea4 SHA512 99d7a932fb21946669e0f1464b100b60f5cab866052443e6d90062b33cd513fded6aad1a07be31c49b065095f72565f8e44630bd97bf929ca3b145df38b097d4 diff --git a/app-doc/mathjax-docs/mathjax-docs-3.2.2.ebuild b/app-doc/mathjax-docs/mathjax-docs-3.2.2.ebuild new file mode 100644 index 000000000000..067c8fd87fe7 --- /dev/null +++ b/app-doc/mathjax-docs/mathjax-docs-3.2.2.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{10..12} pypy3 ) +inherit python-any-r1 vcs-clean + +# MathJax-docs doesn't have releases, so this is the commit that was +# current when mathjax-${PV} was released. +COMMIT="c4a733d6d0ced4242a4df1c46137d4be6b3aaaee" + +DESCRIPTION="MathJax documentation" +HOMEPAGE="https://docs.mathjax.org/" +SRC_URI="https://github.com/mathjax/MathJax-docs/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/MathJax-docs-${COMMIT}" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos" + +BDEPEND=" + $(python_gen_any_dep ' + dev-python/sphinx[${PYTHON_USEDEP}] + dev-python/sphinx-rtd-theme[${PYTHON_USEDEP}] + ') +" + +DOCS=( + README.md +) + +src_prepare() { + default + egit_clean +} + +src_compile() { + build_sphinx "${S}" +} |