public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-libs/mathjax: ChangeLog mathjax-2.2.ebuild
@ 2013-06-13 12:25 Julian Ospald (hasufell)
  0 siblings, 0 replies; 2+ messages in thread
From: Julian Ospald (hasufell) @ 2013-06-13 12:25 UTC (permalink / raw
  To: gentoo-commits

hasufell    13/06/13 12:25:05

  Modified:             ChangeLog
  Added:                mathjax-2.2.ebuild
  Log:
  version bump wrt #473152
  
  (Portage version: 2.2.0_alpha179/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)

Revision  Changes    Path
1.4                  dev-libs/mathjax/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/mathjax/ChangeLog?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/mathjax/ChangeLog?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/mathjax/ChangeLog?r1=1.3&r2=1.4

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/mathjax/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog	21 Feb 2013 21:20:59 -0000	1.3
+++ ChangeLog	13 Jun 2013 12:25:05 -0000	1.4
@@ -1,6 +1,11 @@
 # ChangeLog for dev-libs/mathjax
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/mathjax/ChangeLog,v 1.3 2013/02/21 21:20:59 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/mathjax/ChangeLog,v 1.4 2013/06/13 12:25:05 hasufell Exp $
+
+*mathjax-2.2 (13 Jun 2013)
+
+  13 Jun 2013; Julian Ospald <hasufell@gentoo.org> +mathjax-2.2.ebuild:
+  version bump wrt #473152
 
   17 Feb 2013; Julian Ospald <hasufell@gentoo.org> metadata.xml:
   set correct maintainer



1.1                  dev-libs/mathjax/mathjax-2.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/mathjax/mathjax-2.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/mathjax/mathjax-2.2.ebuild?rev=1.1&content-type=text/plain

Index: mathjax-2.2.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/mathjax/mathjax-2.2.ebuild,v 1.1 2013/06/13 12:25:05 hasufell Exp $

EAPI=5

DESCRIPTION="JavaScript display engine for LaTeX, MathML and AsciiMath"
HOMEPAGE="http://www.mathjax.org/"
SRC_URI="https://github.com/mathjax/MathJax/archive/v${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc examples"

RESTRICT="binchecks"

S=${WORKDIR}/MathJax-${PV}

make_webconf() {
	# web server config file - should we really do this?
	cat > $1 <<-EOF
		Alias /MathJax/ ${EPREFIX}${webinstalldir}/
		Alias /mathjax/ ${EPREFIX}${webinstalldir}/

		<Directory ${EPREFIX}${webinstalldir}>
			Options None
			AllowOverride None
			Order allow,deny
			Allow from all
		</Directory>
	EOF
}

src_prepare() {
	find . -name .gitignore -delete || die
}

src_install() {
	dodoc README*
	use doc && dohtml -r docs/html/*
	if use examples; then
		insinto /usr/share/doc/${PF}/examples
		doins -r test/*
	fi
	rm -rf test docs LICENSE README* || die

	webinstalldir=/usr/share/${PN}
	insinto ${webinstalldir}
	doins -r *

	make_webconf MathJax.conf
	insinto /etc/httpd/conf.d
	doins MathJax.conf
}





^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-libs/mathjax: ChangeLog mathjax-2.2.ebuild
@ 2013-09-15 15:55 Markus Meier (maekke)
  0 siblings, 0 replies; 2+ messages in thread
From: Markus Meier (maekke) @ 2013-09-15 15:55 UTC (permalink / raw
  To: gentoo-commits

maekke      13/09/15 15:55:56

  Modified:             ChangeLog mathjax-2.2.ebuild
  Log:
  add ~arm, bug #481722
  
  (Portage version: 2.2.1/cvs/Linux x86_64, RepoMan options: --include-arches="arm", signed Manifest commit with key 072AD062)

Revision  Changes    Path
1.7                  dev-libs/mathjax/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/mathjax/ChangeLog?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/mathjax/ChangeLog?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/mathjax/ChangeLog?r1=1.6&r2=1.7

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/mathjax/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog	25 Jun 2013 12:57:17 -0000	1.6
+++ ChangeLog	15 Sep 2013 15:55:56 -0000	1.7
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/mathjax
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/mathjax/ChangeLog,v 1.6 2013/06/25 12:57:17 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/mathjax/ChangeLog,v 1.7 2013/09/15 15:55:56 maekke Exp $
+
+  15 Sep 2013; Markus Meier <maekke@gentoo.org> mathjax-2.2.ebuild:
+  add ~arm, bug #481722
 
   25 Jun 2013; Agostino Sarubbo <ago@gentoo.org> mathjax-2.2.ebuild:
   Stable for amd64, wrt bug #474410



1.4                  dev-libs/mathjax/mathjax-2.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/mathjax/mathjax-2.2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/mathjax/mathjax-2.2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/mathjax/mathjax-2.2.ebuild?r1=1.3&r2=1.4

Index: mathjax-2.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/mathjax/mathjax-2.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- mathjax-2.2.ebuild	25 Jun 2013 12:57:17 -0000	1.3
+++ mathjax-2.2.ebuild	15 Sep 2013 15:55:56 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/mathjax/mathjax-2.2.ebuild,v 1.3 2013/06/25 12:57:17 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/mathjax/mathjax-2.2.ebuild,v 1.4 2013/09/15 15:55:56 maekke Exp $
 
 EAPI=5
 
@@ -10,7 +10,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm x86 ~amd64-linux ~x86-linux"
 IUSE="doc examples"
 
 RESTRICT="binchecks"





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-09-15 15:56 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-15 15:55 [gentoo-commits] gentoo-x86 commit in dev-libs/mathjax: ChangeLog mathjax-2.2.ebuild Markus Meier (maekke)
  -- strict thread matches above, loose matches on Subject: below --
2013-06-13 12:25 Julian Ospald (hasufell)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox