From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QA4vy-0007eb-8k for garchives@archives.gentoo.org; Wed, 13 Apr 2011 18:36:58 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 003141C114; Wed, 13 Apr 2011 18:36:49 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id C621D1C114 for ; Wed, 13 Apr 2011 18:36:49 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 538321B401A for ; Wed, 13 Apr 2011 18:36:49 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 9AD5880065 for ; Wed, 13 Apr 2011 18:36:48 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <0a8c1a35eecb6cc8be1aa4a9d1724075c8c0ffa9.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-misc/simpy/ X-VCS-Repository: proj/sci X-VCS-Files: sci-misc/simpy/ChangeLog sci-misc/simpy/simpy-2.1.0.ebuild X-VCS-Directories: sci-misc/simpy/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 0a8c1a35eecb6cc8be1aa4a9d1724075c8c0ffa9 Date: Wed, 13 Apr 2011 18:36: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 Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 2f1157f4126a685e7c86d703c84bee12 commit: 0a8c1a35eecb6cc8be1aa4a9d1724075c8c0ffa9 Author: Justin Lecher gentoo org> AuthorDate: Wed Apr 13 18:36:43 2011 +0000 Commit: Justin Lecher gentoo org> CommitDate: Wed Apr 13 18:36:43 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/sci.git;a=3Dc= ommit;h=3D0a8c1a35 Version Bump (Portage version: 2.2.0_alpha29/git/Linux x86_64, signed Manifest commit = with key 70EB7916) --- sci-misc/simpy/ChangeLog | 7 +++++- sci-misc/simpy/simpy-2.1.0.ebuild | 46 +++++++++++++++++++++++++++++++= ++++++ 2 files changed, 52 insertions(+), 1 deletions(-) diff --git a/sci-misc/simpy/ChangeLog b/sci-misc/simpy/ChangeLog index aacb0c2..6871477 100644 --- a/sci-misc/simpy/ChangeLog +++ b/sci-misc/simpy/ChangeLog @@ -1,7 +1,12 @@ # ChangeLog for sci-misc/simpy -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ =20 +*simpy-2.1.0 (13 Apr 2011) + + 13 Apr 2011; Justin Lecher +simpy-2.1.0.ebuild: + Version Bump + 29 Jun 2010; Justin Lecher simpy-2.0.1.ebuild: Python ABI fixes =20 diff --git a/sci-misc/simpy/simpy-2.1.0.ebuild b/sci-misc/simpy/simpy-2.1= .0.ebuild new file mode 100644 index 0000000..c21372a --- /dev/null +++ b/sci-misc/simpy/simpy-2.1.0.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=3D"2" + +PYTHON_DEPEND=3D"2" +SUPPORT_PYTHON_ABIS=3D"1" +PYTHON_USE_WITH=3D"tk" +RESTRICT_PYTHON_ABIS=3D"3.*" +PYTHON_MODNAME=3D"SimPy" + +inherit distutils + +MY_P=3D"${P/simpy/SimPy}" + +DESCRIPTION=3D"Process and event simulation." +HOMEPAGE=3D"http://simpy.sourceforge.net" +SRC_URI=3D"mirror://sourceforge/${PN}/${MY_P}.tar.gz" + +LICENSE=3D"LGPL-2.1" +SLOT=3D"0" +KEYWORDS=3D"~amd64 ~x86" +IUSE=3D"doc" + +S=3D"${WORKDIR}/${MY_P}" + +src_install() { + distutils_src_install + + if use doc ; then + dodoc SimPyDocs + dodoc SimPyModels + # Took the following from 'dodoc' in order to not compress + # the pdf file. 'dodoc' always compresses. + dir=3D"${D}usr/share/doc/${PF}/${DOCDESTTREE}" + if [ ! -d "${dir}" ] ; then + install -d "${dir}" + fi + for dname in `find SimPyDocs SimPyModels -type d` + do + install -d "${dir}/${dname}" + install -m0644 "${dname}"/* "${dir}/${dname}" + done + fi +}