From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 285ED1381F3 for ; Wed, 28 Aug 2013 07:28:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 312A6E0BB5; Wed, 28 Aug 2013 07:28:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9DD1BE0BB5 for ; Wed, 28 Aug 2013 07:28:51 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B657C33ECAC for ; Wed, 28 Aug 2013 07:28:50 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2271) id 719242004C; Wed, 28 Aug 2013 07:28:48 +0000 (UTC) From: "Kacper Kowalik (xarthisius)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, xarthisius@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in dev-python/ipython: ipython-1.0.0.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: ipython-1.0.0.ebuild ChangeLog X-VCS-Directories: dev-python/ipython X-VCS-Committer: xarthisius X-VCS-Committer-Name: Kacper Kowalik Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20130828072848.719242004C@flycatcher.gentoo.org> Date: Wed, 28 Aug 2013 07:28:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 6a5a93da-b02a-45f9-a565-c55be202b320 X-Archives-Hash: db1b066824835f357f6375d2ab2e4749 xarthisius 13/08/28 07:28:48 Modified: ipython-1.0.0.ebuild ChangeLog Log: Provide symlink to mathjax in order to force notebook to use the local version. Thanks to Arfrever for his insight in bug #481726 (Portage version: 2.2.0/cvs/Linux x86_64, signed Manifest commit with key 0x5D21B852895192F9) Revision Changes Path 1.5 dev-python/ipython/ipython-1.0.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ipython-1.0.0.ebuild?rev=1.5&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ipython-1.0.0.ebuild?rev=1.5&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ipython-1.0.0.ebuild?r1=1.4&r2=1.5 Index: ipython-1.0.0.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/ipython/ipython-1.0.0.ebuild,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- ipython-1.0.0.ebuild 27 Aug 2013 20:00:41 -0000 1.4 +++ ipython-1.0.0.ebuild 28 Aug 2013 07:28:48 -0000 1.5 @@ -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-python/ipython/ipython-1.0.0.ebuild,v 1.4 2013/08/27 20:00:41 xarthisius Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ipython-1.0.0.ebuild,v 1.5 2013/08/28 07:28:48 xarthisius Exp $ EAPI=5 @@ -172,6 +172,12 @@ [[ ${fail} ]] && die "Tests fail with ${EPYTHON}" } +python_install() { + distutils-r1_python_install + dosym "${EROOT}"usr/share/mathjax \ + $(python_get_sitedir)/IPython/html/static/mathjax +} + python_install_all() { distutils-r1_python_install_all if use emacs; then 1.118 dev-python/ipython/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ChangeLog?rev=1.118&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ChangeLog?rev=1.118&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ipython/ChangeLog?r1=1.117&r2=1.118 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/ipython/ChangeLog,v retrieving revision 1.117 retrieving revision 1.118 diff -u -r1.117 -r1.118 --- ChangeLog 28 Aug 2013 06:26:57 -0000 1.117 +++ ChangeLog 28 Aug 2013 07:28:48 -0000 1.118 @@ -1,6 +1,10 @@ # ChangeLog for dev-python/ipython # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ChangeLog,v 1.117 2013/08/28 06:26:57 xarthisius Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/ipython/ChangeLog,v 1.118 2013/08/28 07:28:48 xarthisius Exp $ + + 28 Aug 2013; Kacper Kowalik ipython-1.0.0.ebuild: + Provide symlink to mathjax in order to force notebook to use the local + version. Thanks to Arfrever for his insight in bug #481726 28 Aug 2013; Kacper Kowalik metadata.xml: Fix typo in metadata. Thanks to Arfrever for noticing