diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /dev-python/django-appconf | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
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 <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'dev-python/django-appconf')
-rw-r--r-- | dev-python/django-appconf/Manifest | 1 | ||||
-rw-r--r-- | dev-python/django-appconf/django-appconf-0.6.ebuild | 44 | ||||
-rw-r--r-- | dev-python/django-appconf/files/docs.patch | 16 | ||||
-rw-r--r-- | dev-python/django-appconf/metadata.xml | 8 |
4 files changed, 69 insertions, 0 deletions
diff --git a/dev-python/django-appconf/Manifest b/dev-python/django-appconf/Manifest new file mode 100644 index 000000000000..be65e5bb5787 --- /dev/null +++ b/dev-python/django-appconf/Manifest @@ -0,0 +1 @@ +DIST django-appconf-0.6.tar.gz 14072 SHA256 d3f4bcabcb3a9559775c5f4e94cef47f936b1df63703542bc8d912637452e75c SHA512 d2a4aea07eeabdc32ed85cf0625702f3e7861b82d1e47660f3761dedff42a3bd3bfcc54dc3d46072758bea1a34af160f7a908bf0925c05b7409f1224f4a7245d WHIRLPOOL f357a26a28476048ce97a1b85309c87382e750bb1ff9ea8552e194423e815b8945da5367200872096ede6177133094314e9a4a4ca4c5a058b273ab46aacb5091 diff --git a/dev-python/django-appconf/django-appconf-0.6.ebuild b/dev-python/django-appconf/django-appconf-0.6.ebuild new file mode 100644 index 000000000000..b18bdd7d2a6a --- /dev/null +++ b/dev-python/django-appconf/django-appconf-0.6.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=( python{2_7,3_3,3_4} ) + +inherit distutils-r1 + +DESCRIPTION="A helper class for handling configuration defaults of packaged apps gracefully" +HOMEPAGE="https://github.com/jezdez/django-appconf http://django-appconf.readthedocs.org/" +SRC_URI="https://github.com/jezdez/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +KEYWORDS="amd64 x86" +IUSE="doc test" + +LICENSE="BSD" +SLOT="0" + +RDEPEND=">=dev-python/django-1.4.1[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) + test? ( dev-python/django-discover-runner[${PYTHON_USEDEP}] + dev-python/flake8[${PYTHON_USEDEP}] + dev-python/coverage[${PYTHON_USEDEP}] )" + +PATCHES=( "${FILESDIR}"/docs.patch ) + +python_compile_all() { + use doc && emake -C docs html +} + +python_test() { + cd appconf/tests || die + set -- django-admin.py test appconf --settings=appconf.test_settings + echo "$@" + "$@" || die "Testing failed with ${EPYTHON}" +} + +python_install_all() { + use doc && HTML_DOCS=( docs/_build/html/. ) + distutils-r1_python_install_all +} diff --git a/dev-python/django-appconf/files/docs.patch b/dev-python/django-appconf/files/docs.patch new file mode 100644 index 000000000000..4b5d4861adfd --- /dev/null +++ b/dev-python/django-appconf/files/docs.patch @@ -0,0 +1,16 @@ +Prevent unwanted d'loading of un-needed oject.inv files in doc build +diff -ur django-appconf-0.6.orig/docs/conf.py django-appconf-0.6/docs/conf.py +--- docs/conf.py 2013-01-29 01:45:50.000000000 +0800 ++++ docs/conf.py 2013-05-18 21:40:38.737985957 +0800 +@@ -218,11 +218,3 @@ + ('index', 'django-appconf', u'django-appconf Documentation', + [u'Jannis Leidel and individual contributors'], 1) + ] +- +- +-# Example configuration for intersphinx: refer to the Python standard library. +-intersphinx_mapping = { +- 'python': ('http://python.readthedocs.org/en/v2.7.2/', None), +- 'django': ('http://django.readthedocs.org/en/latest/', None), +- 'celery': ('http://celery.readthedocs.org/en/latest/', None), +-} diff --git a/dev-python/django-appconf/metadata.xml b/dev-python/django-appconf/metadata.xml new file mode 100644 index 000000000000..0c00bb319787 --- /dev/null +++ b/dev-python/django-appconf/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>python</herd> + <upstream> + <remote-id type="github">jezdez/django-appconf</remote-id> + </upstream> +</pkgmetadata> |