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/reverend/Manifest | 1 + dev-python/reverend/metadata.xml | 13 +++++++++++++ dev-python/reverend/reverend-0.4-r1.ebuild | 31 ++++++++++++++++++++++++++++++ 3 files changed, 45 insertions(+) create mode 100644 dev-python/reverend/Manifest create mode 100644 dev-python/reverend/metadata.xml create mode 100644 dev-python/reverend/reverend-0.4-r1.ebuild (limited to 'dev-python/reverend') diff --git a/dev-python/reverend/Manifest b/dev-python/reverend/Manifest new file mode 100644 index 000000000000..6ab43dfbb12b --- /dev/null +++ b/dev-python/reverend/Manifest @@ -0,0 +1 @@ +DIST Reverend-0.4.tar.gz 12147 SHA256 33f801891bc84cd1adcbd8e1c4d53841bb27451f89b32c0418512c655a4c2054 SHA512 6d61c61ccdcca5b8c79fd230f9cd825335c9bf873c3b512170261886d7194b719d9811d7318014d0e931383efc51d995579f3199295c1b545bfd8fa4550a2452 WHIRLPOOL b449d2509f326e6bf194d698211bd4704025ab8f590996ed5e80f622cd41c7494fba345d4e2720fba141a0de1c0f953547a5f00d5f5c6c46b8d90874d4a5d358 diff --git a/dev-python/reverend/metadata.xml b/dev-python/reverend/metadata.xml new file mode 100644 index 000000000000..bc09d5b5945e --- /dev/null +++ b/dev-python/reverend/metadata.xml @@ -0,0 +1,13 @@ + + + + python + + neurogeek@gentoo.org + Jesus Rivero + + + Reverend + reverend + + diff --git a/dev-python/reverend/reverend-0.4-r1.ebuild b/dev-python/reverend/reverend-0.4-r1.ebuild new file mode 100644 index 000000000000..71bde2f15be0 --- /dev/null +++ b/dev-python/reverend/reverend-0.4-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 pypy pypy3 ) + +inherit distutils-r1 + +MY_PN="Reverend" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Reverend - Simple Bayesian classifier" +HOMEPAGE="http://divmod.org/trac/wiki/DivmodReverend http://pypi.python.org/pypi/Reverend" +SRC_URI="mirror://sourceforge/reverend/${MY_P}.tar.gz mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="examples" + +DEPEND="" +RDEPEND="" + +S="${WORKDIR}/${MY_P}" + +python_install_all() { + use examples && local EXAMPLES=( examples/. ) + distutils-r1_python_install_all +} -- cgit v1.2.3-65-gdbad