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 B1B9F138CCF for ; Tue, 12 May 2015 11:18:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0BDD2E077A; Tue, 12 May 2015 11:18:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 425C1E086D for ; Tue, 12 May 2015 11:18:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6671D340C7B for ; Tue, 12 May 2015 11:18:43 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 615659EC for ; Tue, 12 May 2015 11:18:40 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1431429502.a6372f0b12ae1e55d8bcce29c3b2d673e752b639.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-tex/pythontex/ X-VCS-Repository: proj/sci X-VCS-Files: dev-tex/pythontex/ChangeLog dev-tex/pythontex/pythontex-0.14-r1.ebuild dev-tex/pythontex/pythontex-0.14.ebuild dev-tex/pythontex/pythontex-9999.ebuild X-VCS-Directories: dev-tex/pythontex/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: a6372f0b12ae1e55d8bcce29c3b2d673e752b639 X-VCS-Branch: master Date: Tue, 12 May 2015 11:18:40 +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: fcb13d46-81f6-4310-98d1-88f12963d0e1 X-Archives-Hash: 85390890e4a40a7df1f6e9868ffa0182 commit: a6372f0b12ae1e55d8bcce29c3b2d673e752b639 Author: Justin Lecher gentoo org> AuthorDate: Tue May 12 11:18:22 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Tue May 12 11:18:22 2015 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=a6372f0b dev-tex/pythontex: Fix installation of latex files, bug #548534 Package-Manager: portage-2.2.18 dev-tex/pythontex/ChangeLog | 6 ++++++ .../pythontex/{pythontex-0.14.ebuild => pythontex-0.14-r1.ebuild} | 2 +- dev-tex/pythontex/pythontex-9999.ebuild | 8 ++++---- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/dev-tex/pythontex/ChangeLog b/dev-tex/pythontex/ChangeLog index 23ecc71..a608dfc 100644 --- a/dev-tex/pythontex/ChangeLog +++ b/dev-tex/pythontex/ChangeLog @@ -2,6 +2,12 @@ # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ +*pythontex-0.14-r1 (12 May 2015) + + 12 May 2015; Justin Lecher +pythontex-0.14-r1.ebuild, + -pythontex-0.14.ebuild, pythontex-9999.ebuild: + dev-tex/pythontex: Fix installation of latex files, bug #548534 + *pythontex-0.14 (09 Mar 2015) 09 Mar 2015; Justin Lecher +pythontex-0.14.ebuild, diff --git a/dev-tex/pythontex/pythontex-0.14.ebuild b/dev-tex/pythontex/pythontex-0.14-r1.ebuild similarity index 96% rename from dev-tex/pythontex/pythontex-0.14.ebuild rename to dev-tex/pythontex/pythontex-0.14-r1.ebuild index 252dcdc..d49ef7f 100644 --- a/dev-tex/pythontex/pythontex-0.14.ebuild +++ b/dev-tex/pythontex/pythontex-0.14-r1.ebuild @@ -53,5 +53,5 @@ src_install() { } python_foreach_impl installation - latex-package_src_doinstall ${PN}.{dtx,ins,sty} + latex-package_src_doinstall dtx ins sty } diff --git a/dev-tex/pythontex/pythontex-9999.ebuild b/dev-tex/pythontex/pythontex-9999.ebuild index 92b36ac..c9c5388 100644 --- a/dev-tex/pythontex/pythontex-9999.ebuild +++ b/dev-tex/pythontex/pythontex-9999.ebuild @@ -43,16 +43,16 @@ src_install() { cd ${PN} || die installation() { - if python_is_python3; then + if python_is_python3; then python_domodule {de,}${PN}3.py - else + else python_domodule {de,}${PN}2.py - fi + fi python_domodule ${PN}_{engines,utils}.py python_doscript {de,}${PN}.py syncpdb.py python_optimize } python_foreach_impl installation - latex-package_src_doinstall ${PN}.{dtx,ins,sty} + latex-package_src_doinstall dtx ins sty }