public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/django-pipeline: metadata.xml django-pipeline-1.2.6.ebuild Manifest ChangeLog
@ 2012-05-20 12:15 Theo Chatzimichos (tampakrap)
  0 siblings, 0 replies; only message in thread
From: Theo Chatzimichos (tampakrap) @ 2012-05-20 12:15 UTC (permalink / raw
  To: gentoo-commits

tampakrap    12/05/20 12:15:46

  Added:                metadata.xml django-pipeline-1.2.6.ebuild Manifest
                        ChangeLog
  Log:
  Initial commit, ebuild by idella4
  
  (Portage version: 2.2.0_alpha100/cvs/Linux x86_64)

Revision  Changes    Path
1.1                  dev-python/django-pipeline/metadata.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-pipeline/metadata.xml?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-pipeline/metadata.xml?rev=1.1&content-type=text/plain

Index: metadata.xml
===================================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
        <herd>python</herd>
        <maintainer>
                <email>della5@iinet.com.au</email>
                <name>Ian Delaney aka idella4 proxy maintainer</name>
        </maintainer>
        <maintainer><email>tampakrap@gentoo.org</email></maintainer>
</pkgmetadata>



1.1                  dev-python/django-pipeline/django-pipeline-1.2.6.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-pipeline/django-pipeline-1.2.6.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-pipeline/django-pipeline-1.2.6.ebuild?rev=1.1&content-type=text/plain

Index: django-pipeline-1.2.6.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/django-pipeline/django-pipeline-1.2.6.ebuild,v 1.1 2012/05/20 12:15:46 tampakrap Exp $

EAPI=4
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS=1
RESTRICT_PYTHON_ABIS="3.* *-jython"

inherit distutils

DESCRIPTION="An asset packaging library for Django"
HOMEPAGE="http://pypi.python.org/pypi/django-pipeline/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
KEYWORDS="~amd64"
IUSE="doc"

LICENSE="MIT"
SLOT="0"
PYTHON_MODNAME="pipeline"
DISTUTILS_SRC_TEST=nosetests
RDEPEND=">=dev-python/django-1.4"
DEPEND="${RDEPEND}
	dev-python/setuptools"

src_compile() {
	use doc && emake -C docs html
	rm -f docs/_build/doctrees/environment.pickle || die
	distutils_src_compile
}

src_test() {
	export DJANGO_SETTINGS_MODULE="django.conf"
	# Python.[56] trigger a harmless deprecation warning
	testing() {
		local exit_status=0 test
		pushd build-${PYTHON_ABI}/lib/tests/tests/ > /dev/null || die
		for test in [a-z]*.py
		do
			if ! "$(PYTHON)" ${test}; then
				eerror "test "${test}" failed"
				exit_status="1"
			else
				einfo "test "${test}" passed OK"
			fi
		done
		popd > /dev/null
		return ${exit_status}
	}
	python_execute_function testing
}

src_install() {
	distutils_src_install

	if use doc; then
		dohtml -r docs/_build/html/
	fi

	# Remove un-needed tests to avoid file collisions
	rmtests() {
		rm -rf "${ED}"/$(python_get_sitedir)/tests/ || die
	}

	python_execute_function rmtests
}



1.1                  dev-python/django-pipeline/Manifest

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-pipeline/Manifest?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-pipeline/Manifest?rev=1.1&content-type=text/plain

Index: Manifest
===================================================================
DIST django-pipeline-1.2.6.tar.gz 27135 SHA256 8de30a83ff1a1ea2683713580aae8be4ecc5bd1a4a22da6296115caaff67c60f SHA512 8dc02d1f0021179d4f430be18597f704d04c41580d523877bfe1206fa713f7ff7687f101ccd2dd50d1b729bf500015fc55303c740068d171bec41433eaf2a75a WHIRLPOOL 9847cedd633c75d04240e20b3529579701335bd29f21d3dc5f69a2146a887f7186c545775bd20b8933464957db7a9ddb329517be5a00ca2ec126524860211a84
EBUILD django-pipeline-1.2.6.ebuild 1420 RMD160 0494588360e83048ff7b20497f05a07dbd868d6c SHA1 d479f26af50abd1e76503ea308cd9e5c8bf413c9 SHA256 e13bc49001f77f062242fcd9311550f29879065a9fe42b0cc9b294fe227f443b
MISC metadata.xml 400 RMD160 91c7f35b130ffa540c3158e77ab8c5be8e58a727 SHA1 300ec157fc6880808bf017302a0d4ce87ee52fe2 SHA256 7e2b5da1970841ff8650a795052b962c6d8d28819aa980bb30407ec5d09e5299



1.1                  dev-python/django-pipeline/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-pipeline/ChangeLog?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-pipeline/ChangeLog?rev=1.1&content-type=text/plain

Index: ChangeLog
===================================================================
# ChangeLog for dev-python/django-pipeline
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/django-pipeline/ChangeLog,v 1.1 2012/05/20 12:15:46 tampakrap Exp $

*django-pipeline-1.2.6 (20 May 2012)

  20 May 2012; Theo Chatzimichos <tampakrap@gentoo.org>
  +django-pipeline-1.2.6.ebuild, +metadata.xml:
  Initial commit, ebuild by idella4







^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2012-05-20 12:16 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-20 12:15 [gentoo-commits] gentoo-x86 commit in dev-python/django-pipeline: metadata.xml django-pipeline-1.2.6.ebuild Manifest ChangeLog Theo Chatzimichos (tampakrap)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox