public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/django-extensions: django-extensions-1.0.2.ebuild ChangeLog
@ 2013-01-04 16:54 Ian Delaney (idella4)
  0 siblings, 0 replies; 2+ messages in thread
From: Ian Delaney (idella4) @ 2013-01-04 16:54 UTC (permalink / raw
  To: gentoo-commits

idella4     13/01/04 16:54:24

  Modified:             ChangeLog
  Added:                django-extensions-1.0.2.ebuild
  Log:
  bump to 1.0.2, addition of a src_test over-riding a hostile setup.py invoking downloading within the testsuite
  
  (Portage version: 2.1.11.30/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)

Revision  Changes    Path
1.4                  dev-python/django-extensions/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-extensions/ChangeLog?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-extensions/ChangeLog?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-extensions/ChangeLog?r1=1.3&r2=1.4

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-extensions/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog	9 May 2012 19:09:42 -0000	1.3
+++ ChangeLog	4 Jan 2013 16:54:24 -0000	1.4
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/django-extensions
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django-extensions/ChangeLog,v 1.3 2012/05/09 19:09:42 neurogeek Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-extensions/ChangeLog,v 1.4 2013/01/04 16:54:24 idella4 Exp $
+
+*django-extensions-1.0.2 (05 Jan 2013)
+
+  05 Jan 2013; Ian Delaney <idella4@gentoo.org> +django-extensions-1.0.2.ebuild:
+  bump to 1.0.2, addition of a src_test over-riding a hostile setup.py invoking
+  downloading within the testsuite
 
 *django-extensions-0.8 (09 May 2012)
 
@@ -16,4 +22,3 @@
   27 Aug 2010; Tiziano Müller <dev-zero@gentoo.org>
   +django-extensions-0.5.ebuild, +metadata.xml:
   Initial commit (bug #294084).
-



1.1                  dev-python/django-extensions/django-extensions-1.0.2.ebuild

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

Index: django-extensions-1.0.2.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/django-extensions/django-extensions-1.0.2.ebuild,v 1.1 2013/01/04 16:54:24 idella4 Exp $

EAPI="4"

PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.*"

inherit distutils

GIT_HASH_TAG="48fa7dd"
PYTHON_MODNAME="django_extensions"

DESCRIPTION="Django Command Extensions"
HOMEPAGE="http://github.com/django-extensions/django-extensions http://code.google.com/p/django-command-extensions/"
SRC_URI="http://github.com/django-extensions/django-extensions/tarball/${PV}/${P}.tgz"

LICENSE="BSD || ( MIT GPL-2 )"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc graphviz mysql postgres s3 sqlite vcard"

RDEPEND="dev-python/django[mysql?,postgres?,sqlite?]
	dev-python/pygments
	dev-python/werkzeug
	graphviz? ( dev-python/pygraphviz )
	s3? ( dev-python/boto )
	vcard? ( dev-python/vobject )"
DEPEND="${RDEPEND}
	dev-python/setuptools
	doc? ( dev-python/sphinx )"

S="${WORKDIR}/${PN}-${PN}-${GIT_HASH_TAG}"

DOCS=( docs/AUTHORS README.rst )

src_compile() {
	distutils_src_compile

	use doc && emake -C docs html
}

src_install() {
	distutils_src_install

	use doc && dohtml -r docs/_build/html/*
}

src_test() {
	testing() {
		if [[ $(python_get_version --major) == '2' ]]; then
			python${PYTHON_ABI} run_tests.py
		elif [[ ${PYTHON_ABI:4:4} == "pypy" ]]; then
			pypy-c${PYTHON_ABI:9:11} run_tests.py
		fi
	}
	python_execute_function testing
}





^ permalink raw reply	[flat|nested] 2+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/django-extensions: django-extensions-1.0.2.ebuild ChangeLog
@ 2013-01-05  7:15 Ian Delaney (idella4)
  0 siblings, 0 replies; 2+ messages in thread
From: Ian Delaney (idella4) @ 2013-01-05  7:15 UTC (permalink / raw
  To: gentoo-commits

idella4     13/01/05 07:15:31

  Modified:             django-extensions-1.0.2.ebuild ChangeLog
  Log:
  Reduced testing() by use of , thanks Arfrever
  
  (Portage version: 2.1.11.30/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)

Revision  Changes    Path
1.2                  dev-python/django-extensions/django-extensions-1.0.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-extensions/django-extensions-1.0.2.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-extensions/django-extensions-1.0.2.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-extensions/django-extensions-1.0.2.ebuild?r1=1.1&r2=1.2

Index: django-extensions-1.0.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-extensions/django-extensions-1.0.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- django-extensions-1.0.2.ebuild	4 Jan 2013 16:54:24 -0000	1.1
+++ django-extensions-1.0.2.ebuild	5 Jan 2013 07:15:31 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django-extensions/django-extensions-1.0.2.ebuild,v 1.1 2013/01/04 16:54:24 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-extensions/django-extensions-1.0.2.ebuild,v 1.2 2013/01/05 07:15:31 idella4 Exp $
 
 EAPI="4"
 
@@ -50,11 +50,7 @@
 
 src_test() {
 	testing() {
-		if [[ $(python_get_version --major) == '2' ]]; then
-			python${PYTHON_ABI} run_tests.py
-		elif [[ ${PYTHON_ABI:4:4} == "pypy" ]]; then
-			pypy-c${PYTHON_ABI:9:11} run_tests.py
-		fi
+		$(PYTHON) run_tests.py
 	}
 	python_execute_function testing
 }



1.5                  dev-python/django-extensions/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-extensions/ChangeLog?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-extensions/ChangeLog?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-extensions/ChangeLog?r1=1.4&r2=1.5

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-extensions/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog	4 Jan 2013 16:54:24 -0000	1.4
+++ ChangeLog	5 Jan 2013 07:15:31 -0000	1.5
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/django-extensions
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django-extensions/ChangeLog,v 1.4 2013/01/04 16:54:24 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-extensions/ChangeLog,v 1.5 2013/01/05 07:15:31 idella4 Exp $
+
+  05 Jan 2013; Ian Delaney <idella4@gentoo.org> django-extensions-1.0.2.ebuild:
+  Reduced testing() by use of , thanks Arfrever
 
 *django-extensions-1.0.2 (05 Jan 2013)
 





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-01-05  7:15 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-04 16:54 [gentoo-commits] gentoo-x86 commit in dev-python/django-extensions: django-extensions-1.0.2.ebuild ChangeLog Ian Delaney (idella4)
  -- strict thread matches above, loose matches on Subject: below --
2013-01-05  7:15 Ian Delaney (idella4)

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