diff options
author | Justin Lecher <jlec@gentoo.org> | 2012-11-08 15:43:51 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2012-11-08 15:43:51 +0000 |
commit | 08f170a5d6456e757a3680a41630e3b233a5af98 (patch) | |
tree | 62ed95d7677160b455d29b552b2004834c40398e /sys-cluster | |
parent | stable arm ppc ppc64, bug #441144 (diff) | |
download | gentoo-2-08f170a5d6456e757a3680a41630e3b233a5af98.tar.gz gentoo-2-08f170a5d6456e757a3680a41630e3b233a5af98.tar.bz2 gentoo-2-08f170a5d6456e757a3680a41630e3b233a5af98.zip |
sys-cluster/pbs-python: Version Bump
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 70EB7916)
Diffstat (limited to 'sys-cluster')
-rw-r--r-- | sys-cluster/pbs-python/ChangeLog | 10 | ||||
-rw-r--r-- | sys-cluster/pbs-python/metadata.xml | 2 | ||||
-rw-r--r-- | sys-cluster/pbs-python/pbs-python-4.3.3.ebuild | 49 |
3 files changed, 58 insertions, 3 deletions
diff --git a/sys-cluster/pbs-python/ChangeLog b/sys-cluster/pbs-python/ChangeLog index ba4062f829aa..5ab4321c4d8a 100644 --- a/sys-cluster/pbs-python/ChangeLog +++ b/sys-cluster/pbs-python/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-cluster/pbs-python -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-cluster/pbs-python/ChangeLog,v 1.5 2010/06/09 02:21:17 jsbronder Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/pbs-python/ChangeLog,v 1.6 2012/11/08 15:43:51 jlec Exp $ + +*pbs-python-4.3.3 (08 Nov 2012) + + 08 Nov 2012; Justin Lecher <jlec@gentoo.org> +pbs-python-4.3.3.ebuild, + metadata.xml: + Version Bump 09 Jun 2010; Justin Bronder <jsbronder@gentoo.org> -pbs-python-3.0.1.ebuild: diff --git a/sys-cluster/pbs-python/metadata.xml b/sys-cluster/pbs-python/metadata.xml index 348e6c4de815..55dd68aadc97 100644 --- a/sys-cluster/pbs-python/metadata.xml +++ b/sys-cluster/pbs-python/metadata.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> -<herd>cluster</herd> + <herd>cluster</herd> </pkgmetadata> diff --git a/sys-cluster/pbs-python/pbs-python-4.3.3.ebuild b/sys-cluster/pbs-python/pbs-python-4.3.3.ebuild new file mode 100644 index 000000000000..15786e6539eb --- /dev/null +++ b/sys-cluster/pbs-python/pbs-python-4.3.3.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/pbs-python/pbs-python-4.3.3.ebuild,v 1.1 2012/11/08 15:43:51 jlec Exp $ + +EAPI=5 + +PYTHON_DEPEND="2" +PYTHON_MODNAME="pbs" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="3.*" +DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES=1 + +inherit distutils + +MY_P=${P/-/_} + +DESCRIPTION="Python bindings to the Torque C API" +HOMEPAGE="https://subtrac.sara.nl/oss/pbs_python/" +SRC_URI="ftp://ftp.sara.nl/pub/outgoing/${MY_P}.tar.gz" + +SLOT="0" +LICENSE="openpbs" +KEYWORDS="~amd64 ~x86" +IUSE="examples" + +RDEPEND="sys-cluster/torque" +DEPEND="${RDEPEND}" + +S=${WORKDIR}/${MY_P} + +#pkg_setup() { +# python_set_active_version 2 +# python_pkg_setup +#} + +src_configure() { + configure() { + econf + } + python_execute_function -s configure +} + +src_install() { + distutils_src_install + if use examples; then + insinto /usr/share/doc/${P} + doins "${S}"/examples/* + fi +} |