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/quixote/Manifest | 1 + dev-python/quixote/metadata.xml | 6 +++++ dev-python/quixote/quixote-2.8.ebuild | 46 +++++++++++++++++++++++++++++++++++ 3 files changed, 53 insertions(+) create mode 100644 dev-python/quixote/Manifest create mode 100644 dev-python/quixote/metadata.xml create mode 100644 dev-python/quixote/quixote-2.8.ebuild (limited to 'dev-python/quixote') diff --git a/dev-python/quixote/Manifest b/dev-python/quixote/Manifest new file mode 100644 index 000000000000..3698700df161 --- /dev/null +++ b/dev-python/quixote/Manifest @@ -0,0 +1 @@ +DIST Quixote-2.8.tar.gz 474323 SHA256 454fa9171ed1c100d2df727269f9912548b4d9f4a6156503691be36894c99718 SHA512 d25e82228706966d1e3e24a07b8d1b62a016571f80ad375fa846be9fd720d6c2c8009b53f7abf72cd14ade36b3a69ac9a153d7017a88b5d420d571da45bc6558 WHIRLPOOL 0eed267e6c9d1df9c1872a55b89e7353cb019ab5cd58686739b6dc2e801a3e5bc893e1c5acf87b82557d579457377979e85f75fc5194b5c928c20f74755e58f8 diff --git a/dev-python/quixote/metadata.xml b/dev-python/quixote/metadata.xml new file mode 100644 index 000000000000..8dd6d62f0de2 --- /dev/null +++ b/dev-python/quixote/metadata.xml @@ -0,0 +1,6 @@ + + + + python + web-apps + diff --git a/dev-python/quixote/quixote-2.8.ebuild b/dev-python/quixote/quixote-2.8.ebuild new file mode 100644 index 000000000000..a347806bfcba --- /dev/null +++ b/dev-python/quixote/quixote-2.8.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +# Appears to be written only for py2 +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 flag-o-matic + +MY_P="${P/q/Q}" + +DESCRIPTION="Python HTML templating framework for developing web applications" +HOMEPAGE="http://quixote.ca" +SRC_URI="http://quixote.ca/releases/${MY_P}.tar.gz" + +LICENSE="CNRI-QUIXOTE-2.4" +SLOT="0" +KEYWORDS="amd64 ~ia64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos" +IUSE="doc test" + +DEPEND="doc? ( dev-python/docutils[${PYTHON_USEDEP}] ) + test? ( dev-python/nose[${PYTHON_USEDEP}] )" + +S="${WORKDIR}"/${MY_P} +# tests require a running quixote server, prob. apt. post install. Tried the demo one but no +RESTRICT="test" + +python_compile() { + local -x CFLAGS="${CFLAGS} -fno-strict-aliasing" + + distutils-r1_python_compile +} + +python_compile_all() { + use doc && emake -C doc +} + +python_test() { + nosetests tests || die "tests failed" +} + +python_install_all() { + local HTML_DOCS=( doc/. ) + distutils-r1_python_install_all +} -- cgit v1.2.3-65-gdbad