From 56bd759df1d0c750a065b8c845e93d5dfa6b549d Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sat, 8 Aug 2015 13:49:04 -0700 Subject: proj/gentoo: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson X-Thanks: Alec Warner - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring - wrote much python to improve cvs2svn X-Thanks: Rich Freeman - validation scripts X-Thanks: Patrick Lauer - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed --- dev-python/pxml/Manifest | 1 + dev-python/pxml/metadata.xml | 12 +++++++++++ dev-python/pxml/pxml-0.2.11-r1.ebuild | 39 +++++++++++++++++++++++++++++++++++ 3 files changed, 52 insertions(+) create mode 100644 dev-python/pxml/Manifest create mode 100644 dev-python/pxml/metadata.xml create mode 100644 dev-python/pxml/pxml-0.2.11-r1.ebuild (limited to 'dev-python/pxml') diff --git a/dev-python/pxml/Manifest b/dev-python/pxml/Manifest new file mode 100644 index 000000000000..fa434adf8cf2 --- /dev/null +++ b/dev-python/pxml/Manifest @@ -0,0 +1 @@ +DIST pxml-0.2.11.tar.gz 21088 SHA256 19edfd55a081fb46066b66fd726691be3416d6f93e80f3d0bb2f2a8d7bacb6c8 SHA512 1b71ca2b5e0e59158f52fbe70ef65f5fc14dec4aec1c7fa79f7fabd8dc33f63f63e70b61ba835d2c21f88c879fa6dd5c4aa7dad97ee49755e4a6844aeceea5e1 WHIRLPOOL 4d170075db8076c0ca94dd1f5ee52f6148c59b1e7cfd07557fe045a31bdf7d9b2f8e1e453ec9643cb4a0b466a7cb1622f02ecf0a8b831d9813a4af27d9f05070 diff --git a/dev-python/pxml/metadata.xml b/dev-python/pxml/metadata.xml new file mode 100644 index 000000000000..44bc0e602ea2 --- /dev/null +++ b/dev-python/pxml/metadata.xml @@ -0,0 +1,12 @@ + + + + python + + jlec@gentoo.org + Justin Lecher + + + pxml + + diff --git a/dev-python/pxml/pxml-0.2.11-r1.ebuild b/dev-python/pxml/pxml-0.2.11-r1.ebuild new file mode 100644 index 000000000000..d459e741c7d8 --- /dev/null +++ b/dev-python/pxml/pxml-0.2.11-r1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 python3_{3,4} ) + +inherit distutils-r1 + +DESCRIPTION="A python library and command-line tool to "prettify" and colorize XML" +HOMEPAGE="https://pypi.python.org/pypi/pxml http://github.com/metagriffin/pxml" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +SLOT="0" +LICENSE="GPL-3+" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +RDEPEND=" + >=dev-python/blessings-1.5[${PYTHON_USEDEP}] + >=dev-python/six-1.4.1[${PYTHON_USEDEP}] +" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + >=dev-python/nose-1.3.0[${PYTHON_USEDEP}] + )" + +python_prepare_all() { + sed \ + -e '/distribute/d' \ + -i setup.py || die + distutils-r1_python_prepare_all +} + +python_test() { + nosetests --verbose || die +} -- cgit v1.2.3-65-gdbad