diff options
author | Marc Schiffbauer <mschiff@gentoo.org> | 2013-03-24 12:18:50 +0000 |
---|---|---|
committer | Marc Schiffbauer <mschiff@gentoo.org> | 2013-03-24 12:18:50 +0000 |
commit | 494da9a870f20d4961d39e9e219cee98cdcd07b5 (patch) | |
tree | 28c5fb6d5162d00f27dba784c460de6a6be2e29a /dev-python/larch | |
parent | revert cuneiform flag removal - package will stay around (diff) | |
download | gentoo-2-494da9a870f20d4961d39e9e219cee98cdcd07b5.tar.gz gentoo-2-494da9a870f20d4961d39e9e219cee98cdcd07b5.tar.bz2 gentoo-2-494da9a870f20d4961d39e9e219cee98cdcd07b5.zip |
Version bump
(Portage version: 2.2.0_alpha169/cvs/Linux x86_64, signed Manifest commit with key 0x296C6CCA35A64134)
Diffstat (limited to 'dev-python/larch')
-rw-r--r-- | dev-python/larch/ChangeLog | 10 | ||||
-rw-r--r-- | dev-python/larch/larch-1.20130316.ebuild | 36 |
2 files changed, 43 insertions, 3 deletions
diff --git a/dev-python/larch/ChangeLog b/dev-python/larch/ChangeLog index b886a7f89216..a8db93c29f56 100644 --- a/dev-python/larch/ChangeLog +++ b/dev-python/larch/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/larch -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/larch/ChangeLog,v 1.4 2012/12/18 15:40:27 mschiff Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/larch/ChangeLog,v 1.5 2013/03/24 12:18:50 mschiff Exp $ + +*larch-1.20130316 (24 Mar 2013) + + 24 Mar 2013; Marc Schiffbauer <mschiff@gentoo.org> +larch-1.20130316.ebuild: + Version bump *larch-1.20121216 (18 Dec 2012) @@ -24,4 +29,3 @@ 15 Jun 2012; Marc Schiffbauer <mschiff@gentoo.org> +larch-1.20120527.ebuild, +metadata.xml: Initial commit of larch. - diff --git a/dev-python/larch/larch-1.20130316.ebuild b/dev-python/larch/larch-1.20130316.ebuild new file mode 100644 index 000000000000..1253223a334d --- /dev/null +++ b/dev-python/larch/larch-1.20130316.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/larch/larch-1.20130316.ebuild,v 1.1 2013/03/24 12:18:50 mschiff Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python{2_6,2_7} ) + +inherit distutils-r1 + +DESCRIPTION="Copy-on-write B-tree data structure" +HOMEPAGE="http://liw.fi/larch/" +SRC_URI="http://code.liw.fi/debian/pool/main/p/python-${PN}/python-${PN}_${PV}.orig.tar.gz" +#RESTRICT="test" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +DEPEND="test? ( dev-python/CoverageTestRunner dev-util/cmdtest )" + +RDEPEND="${PYTHON_DEPS} + dev-python/cliapp + dev-python/tracing + dev-python/ttystatus" + +src_test() { + addwrite /proc/self/comm + local DISTUTILS_NO_PARALLEL_BUILD=1 + distutils-r1_src_test +} + +python_test() { + emake check +} |