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/webpy/Manifest | 1 + dev-python/webpy/metadata.xml | 10 +++++++++ dev-python/webpy/webpy-0.37-r1.ebuild | 33 ++++++++++++++++++++++++++++ dev-python/webpy/webpy-0.37.ebuild | 41 +++++++++++++++++++++++++++++++++++ 4 files changed, 85 insertions(+) create mode 100644 dev-python/webpy/Manifest create mode 100644 dev-python/webpy/metadata.xml create mode 100644 dev-python/webpy/webpy-0.37-r1.ebuild create mode 100644 dev-python/webpy/webpy-0.37.ebuild (limited to 'dev-python/webpy') diff --git a/dev-python/webpy/Manifest b/dev-python/webpy/Manifest new file mode 100644 index 000000000000..a47e989306e0 --- /dev/null +++ b/dev-python/webpy/Manifest @@ -0,0 +1 @@ +DIST web.py-0.37.tar.gz 90232 SHA256 748c7e99ad9e36f62ea19f7965eb7dd7860b530e8f563ed60ce3e53e7409a550 SHA512 766e24d9df6ab1c3a214156794a19c23fcb16ca7a4ee7586a7723f802eab2ba0b8cda4653c2504ef63f773609436ac12dfd40bbe6cf20e2f93bf95493f041628 WHIRLPOOL 4782dc9b4b894ee1787478a77c1afe193096046feeebbe5ce4f904c26d22d5814c606d2d0112614de1ab19851a2e40a78e56f74c1dc59f94ec9462fd33842110 diff --git a/dev-python/webpy/metadata.xml b/dev-python/webpy/metadata.xml new file mode 100644 index 000000000000..6ee684afdb06 --- /dev/null +++ b/dev-python/webpy/metadata.xml @@ -0,0 +1,10 @@ + + + + python + + web.py provides small and simple web framework for + python. It is a convenient tool for small sized + websites. + + diff --git a/dev-python/webpy/webpy-0.37-r1.ebuild b/dev-python/webpy/webpy-0.37-r1.ebuild new file mode 100644 index 000000000000..99227579bdda --- /dev/null +++ b/dev-python/webpy/webpy-0.37-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +MY_PN="web.py" + +DESCRIPTION="A small and simple web framework for Python" +HOMEPAGE="http://www.webpy.org http://pypi.python.org/pypi/web.py" +SRC_URI="http://www.webpy.org/static/${MY_PN}-${PV}.tar.gz" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +DEPEND="" +RDEPEND="" + +S="${WORKDIR}/web.py-${PV}" + +python_test() { + local return_status="0" test tests="db http net template utils" + for test in ${tests}; do + echo "Running doctests in ${test}.py..." + "${PYTHON}" web/${test}.py || return_status="$?" + done + return "${return_status}" +} diff --git a/dev-python/webpy/webpy-0.37.ebuild b/dev-python/webpy/webpy-0.37.ebuild new file mode 100644 index 000000000000..1380a9b33785 --- /dev/null +++ b/dev-python/webpy/webpy-0.37.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="3" +PYTHON_DEPEND="2" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="3.* 2.7-pypy-* *-jython" + +inherit distutils + +MY_PN="web.py" + +DESCRIPTION="A small and simple web framework for Python" +HOMEPAGE="http://www.webpy.org http://pypi.python.org/pypi/web.py" +SRC_URI="http://www.webpy.org/static/${MY_PN}-${PV}.tar.gz" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="amd64 hppa x86 ~amd64-linux ~x86-linux" +IUSE="" + +DEPEND="" +RDEPEND="" + +S="${WORKDIR}/web.py-${PV}" + +PYTHON_MODNAME="web" + +src_test() { + testing() { + local return_status="0" test tests="db http net template utils" + for test in ${tests}; do + echo "Running doctests in ${test}.py..." + "$(PYTHON)" web/${test}.py || return_status="$?" + done + + return "${return_status}" + } + python_execute_function testing +} -- cgit v1.2.3-65-gdbad