Gentoo Archives: gentoo-commits

From: Mark Wright <gienah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/mathjax/
Date: Tue, 03 Jul 2018 02:03:09
Message-Id: 1530583134.bc782ac254bf543b5946571ccb71a3bba332ced5.gienah@gentoo
1 commit: bc782ac254bf543b5946571ccb71a3bba332ced5
2 Author: Mark Wright <gienah <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 3 01:58:54 2018 +0000
4 Commit: Mark Wright <gienah <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 3 01:58:54 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc782ac2
7
8 dev-libs/mathjax: Drop old
9
10 Package-Manager: Portage-2.3.41, Repoman-2.3.9
11
12 dev-libs/mathjax/Manifest | 3 --
13 dev-libs/mathjax/mathjax-2.2.ebuild | 56 -----------------------------------
14 dev-libs/mathjax/mathjax-2.4.0.ebuild | 56 -----------------------------------
15 dev-libs/mathjax/mathjax-2.5.3.ebuild | 56 -----------------------------------
16 4 files changed, 171 deletions(-)
17
18 diff --git a/dev-libs/mathjax/Manifest b/dev-libs/mathjax/Manifest
19 index ed6f4c8dd55..496072083fa 100644
20 --- a/dev-libs/mathjax/Manifest
21 +++ b/dev-libs/mathjax/Manifest
22 @@ -1,4 +1 @@
23 -DIST mathjax-2.2.tar.gz 8974100 BLAKE2B 3947579fe5c02a66a68a276c2cdf8e3c8efd79c600c46e7ed0d5b88af5d4b6d10ba60a8c319a973799282cf735405bfc2d6bc1baa83a7c84babc403f54693e73 SHA512 11987a959a7b154ea8df4ad93ce6193eed930affcfbfd2ba3fd965356c3ea957ef73a3ea6830a841bbe81f64ed0d9a78ab9fd74d0cbf011671b7d174cdc1f80c
24 -DIST mathjax-2.4.0.tar.gz 23048567 BLAKE2B 02958eb1c6d60db127c9fe6edca0aeaea765a879e6a7a629aa260a593080251d356abb24f9edf294f61525096644b6ed4696d548b4e7ae1f6a22e368ad5c1338 SHA512 1f1cd590d0d584e38a51920e1d92e7dd1e0b8a0660b1ad29b522a5ced4d6c1f7d00074500d726aeee04c04f10c963944d1ef6aa2a662d7b53df609f9270b8de0
25 -DIST mathjax-2.5.3.tar.gz 23257294 BLAKE2B 2aac6c058315976266964c81096032a5bc6b1e533fdb9e1c8234fc5f67fd12f095462f679af4dcc6ee15d40062f3d7a8c67c5a92824986b5a606636128f9463d SHA512 007b3d4e7d4224746ea8996838f6d208ee6dd04a6c2e3dc38b6e7ad83421732d4f5c5b9b6714183d0a25a46fdc1a9cd73a6ca769f29dbe3f36c79a5ca0ee1178
26 DIST mathjax-2.7.0.tar.gz 24594403 BLAKE2B 7cadfe7565a7ebba3569fb298a097f07081926b843a06c3c32447757eb0a5d463d654f20c42821010c81c59819bb14fdc5e84a39e87106bb6808bd6c9ca52bb7 SHA512 2a7c2b4a4991485c18f78dda4115da05a31c1a2d952c403726e99d22fd26f166298199238ad482e53b63b5414be687f325b586f5ebe4e2d552447c929415b350
27
28 diff --git a/dev-libs/mathjax/mathjax-2.2.ebuild b/dev-libs/mathjax/mathjax-2.2.ebuild
29 deleted file mode 100644
30 index 135d39f3fac..00000000000
31 --- a/dev-libs/mathjax/mathjax-2.2.ebuild
32 +++ /dev/null
33 @@ -1,56 +0,0 @@
34 -# Copyright 1999-2016 Gentoo Foundation
35 -# Distributed under the terms of the GNU General Public License v2
36 -
37 -EAPI=5
38 -
39 -inherit eutils
40 -
41 -DESCRIPTION="JavaScript display engine for LaTeX, MathML and AsciiMath"
42 -HOMEPAGE="http://www.mathjax.org/"
43 -SRC_URI="https://github.com/mathjax/MathJax/archive/v${PV}.tar.gz -> ${P}.tar.gz"
44 -
45 -LICENSE="Apache-2.0"
46 -SLOT="0"
47 -KEYWORDS="amd64 arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
48 -IUSE="doc examples"
49 -
50 -RESTRICT="binchecks"
51 -
52 -S=${WORKDIR}/MathJax-${PV}
53 -
54 -make_webconf() {
55 - # web server config file - should we really do this?
56 - cat > $1 <<-EOF
57 - Alias /MathJax/ ${EPREFIX}${webinstalldir}/
58 - Alias /mathjax/ ${EPREFIX}${webinstalldir}/
59 -
60 - <Directory ${EPREFIX}${webinstalldir}>
61 - Options None
62 - AllowOverride None
63 - Order allow,deny
64 - Allow from all
65 - </Directory>
66 - EOF
67 -}
68 -
69 -src_prepare() {
70 - egit_clean
71 -}
72 -
73 -src_install() {
74 - dodoc README*
75 - use doc && dohtml -r docs/html/*
76 - if use examples; then
77 - insinto /usr/share/doc/${PF}/examples
78 - doins -r test/*
79 - fi
80 - rm -rf test docs LICENSE README* || die
81 -
82 - webinstalldir=/usr/share/${PN}
83 - insinto ${webinstalldir}
84 - doins -r *
85 -
86 - make_webconf MathJax.conf
87 - insinto /etc/httpd/conf.d
88 - doins MathJax.conf
89 -}
90
91 diff --git a/dev-libs/mathjax/mathjax-2.4.0.ebuild b/dev-libs/mathjax/mathjax-2.4.0.ebuild
92 deleted file mode 100644
93 index 9af94c27634..00000000000
94 --- a/dev-libs/mathjax/mathjax-2.4.0.ebuild
95 +++ /dev/null
96 @@ -1,56 +0,0 @@
97 -# Copyright 1999-2016 Gentoo Foundation
98 -# Distributed under the terms of the GNU General Public License v2
99 -
100 -EAPI=5
101 -
102 -inherit eutils
103 -
104 -DESCRIPTION="JavaScript display engine for LaTeX, MathML and AsciiMath"
105 -HOMEPAGE="http://www.mathjax.org/"
106 -SRC_URI="https://github.com/mathjax/MathJax/archive/${PV}.tar.gz -> ${P}.tar.gz"
107 -
108 -LICENSE="Apache-2.0"
109 -SLOT="0"
110 -KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
111 -IUSE="doc examples"
112 -
113 -RESTRICT="binchecks strip"
114 -
115 -S=${WORKDIR}/MathJax-${PV}
116 -
117 -make_webconf() {
118 - # web server config file - should we really do this?
119 - cat > $1 <<-EOF
120 - Alias /MathJax/ ${EPREFIX}${webinstalldir}/
121 - Alias /mathjax/ ${EPREFIX}${webinstalldir}/
122 -
123 - <Directory ${EPREFIX}${webinstalldir}>
124 - Options None
125 - AllowOverride None
126 - Order allow,deny
127 - Allow from all
128 - </Directory>
129 - EOF
130 -}
131 -
132 -src_prepare() {
133 - egit_clean
134 -}
135 -
136 -src_install() {
137 - dodoc README*
138 - use doc && dohtml -r docs/html/*
139 - if use examples; then
140 - insinto /usr/share/doc/${PF}/examples
141 - doins -r test/*
142 - fi
143 - rm -rf test docs LICENSE README* || die
144 -
145 - webinstalldir=/usr/share/${PN}
146 - insinto ${webinstalldir}
147 - doins -r *
148 -
149 - make_webconf MathJax.conf
150 - insinto /etc/httpd/conf.d
151 - doins MathJax.conf
152 -}
153
154 diff --git a/dev-libs/mathjax/mathjax-2.5.3.ebuild b/dev-libs/mathjax/mathjax-2.5.3.ebuild
155 deleted file mode 100644
156 index 9ecc9d45ac6..00000000000
157 --- a/dev-libs/mathjax/mathjax-2.5.3.ebuild
158 +++ /dev/null
159 @@ -1,56 +0,0 @@
160 -# Copyright 1999-2016 Gentoo Foundation
161 -# Distributed under the terms of the GNU General Public License v2
162 -
163 -EAPI=5
164 -
165 -inherit eutils
166 -
167 -DESCRIPTION="JavaScript display engine for LaTeX, MathML and AsciiMath"
168 -HOMEPAGE="http://www.mathjax.org/"
169 -SRC_URI="https://github.com/mathjax/MathJax/archive/${PV}.tar.gz -> ${P}.tar.gz"
170 -
171 -LICENSE="Apache-2.0"
172 -SLOT="0"
173 -KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
174 -IUSE="doc examples"
175 -
176 -RESTRICT="binchecks strip"
177 -
178 -S=${WORKDIR}/MathJax-${PV}
179 -
180 -make_webconf() {
181 - # web server config file - should we really do this?
182 - cat > $1 <<-EOF
183 - Alias /MathJax/ ${EPREFIX}${webinstalldir}/
184 - Alias /mathjax/ ${EPREFIX}${webinstalldir}/
185 -
186 - <Directory ${EPREFIX}${webinstalldir}>
187 - Options None
188 - AllowOverride None
189 - Order allow,deny
190 - Allow from all
191 - </Directory>
192 - EOF
193 -}
194 -
195 -src_prepare() {
196 - egit_clean
197 -}
198 -
199 -src_install() {
200 - dodoc README*
201 - use doc && dohtml -r docs/html/*
202 - if use examples; then
203 - insinto /usr/share/${PN}/examples
204 - doins -r test/*
205 - fi
206 - rm -r test docs LICENSE README* || die
207 -
208 - webinstalldir=/usr/share/${PN}
209 - insinto ${webinstalldir}
210 - doins -r *
211 -
212 - make_webconf MathJax.conf
213 - insinto /etc/httpd/conf.d
214 - doins MathJax.conf
215 -}