commit: 92be570d18fbb80db8d7dde6bb8d82f1e4b48144 Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de> AuthorDate: Wed Jul 8 15:35:32 2015 +0000 Commit: Nicolas Bock <nicolasbock <AT> gentoo <DOT> org> CommitDate: Wed Jul 8 15:35:32 2015 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=92be570d
dev-python/pylibconfig2: New ebuilds written by me Package-Manager: portage-2.2.18 dev-python/pylibconfig2/ChangeLog | 10 +++++++++ dev-python/pylibconfig2/metadata.xml | 18 +++++++++++++++ dev-python/pylibconfig2/pylibconfig2-0.2.3.ebuild | 21 ++++++++++++++++++ dev-python/pylibconfig2/pylibconfig2-9999.ebuild | 27 +++++++++++++++++++++++ 4 files changed, 76 insertions(+) diff --git a/dev-python/pylibconfig2/ChangeLog b/dev-python/pylibconfig2/ChangeLog new file mode 100644 index 0000000..8ace2d4 --- /dev/null +++ b/dev-python/pylibconfig2/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for dev-python/pylibconfig2 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: $ + +*pylibconfig2-0.2.3 (08 Jul 2015) +*pylibconfig2-9999 (08 Jul 2015) + + 08 Jul 2015; Marius Brehler <[email protected]> +metadata.xml, + +pylibconfig2-0.2.3.ebuild, +pylibconfig2-9999.ebuild: + dev-python/pylibconfig2: New ebuilds written by me diff --git a/dev-python/pylibconfig2/metadata.xml b/dev-python/pylibconfig2/metadata.xml new file mode 100644 index 0000000..ae49bd0 --- /dev/null +++ b/dev-python/pylibconfig2/metadata.xml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>sci</herd> + <maintainer> + <email>[email protected]</email> + <name>Marius Brehler</name> + </maintainer> + <longdescription> + Pure python library for libconfig syntax. IO works via strings only. + Thus, include directives are not supported. + + Scalar types are pythons basic types str, int, long, float, bool. + The libconfig types Array, List, Group are implemented as ConfArray, + ConfList, ConfGroup, respectively. A config is setup from a string + only, and represented as a string automatically. + </longdescription> +</pkgmetadata> diff --git a/dev-python/pylibconfig2/pylibconfig2-0.2.3.ebuild b/dev-python/pylibconfig2/pylibconfig2-0.2.3.ebuild new file mode 100644 index 0000000..83dacd0 --- /dev/null +++ b/dev-python/pylibconfig2/pylibconfig2-0.2.3.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 +PYTHON_COMPAT=( python{2_7,3_3,3_4} ) + +inherit distutils-r1 + +DESCRIPTION="Pure python library for libconfig syntax" +HOMEPAGE="https://github.com/heinzK1X/pylibconfig2" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" +KEYWORDS="~amd64 ~x86" + +LICENSE="BSD" +SLOT="0" + +RDEPEND=" + dev-python/pyparsing[${PYTHON_USEDEP}] + " +DEPEND="${RDEPEND}" diff --git a/dev-python/pylibconfig2/pylibconfig2-9999.ebuild b/dev-python/pylibconfig2/pylibconfig2-9999.ebuild new file mode 100644 index 0000000..6d9b8e5 --- /dev/null +++ b/dev-python/pylibconfig2/pylibconfig2-9999.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 +PYTHON_COMPAT=( python{2_7,3_3,3_4} ) + +inherit distutils-r1 git-r3 + +DESCRIPTION="Pure python library for libconfig syntax" +HOMEPAGE="https://github.com/heinzK1X/pylibconfig2" +EGIT_REPO_URI="https://github.com/heinzK1X/${PN}.git git://[email protected]:heinzK1X/${PN}.git" +KEYWORDS="" + +LICENSE="BSD" +SLOT="0" +IUSE="test" + +RDEPEND=" + dev-python/pyparsing[${PYTHON_USEDEP}] + " +DEPEND="${RDEPEND}" + +python_test() { + distutils_install_for_testing + esetup.py test || die +}
