* [gentoo-commits] gentoo-x86 commit in dev-python/django-pipeline: django-pipeline-1.3.9.ebuild ChangeLog
@ 2013-05-20 16:43 Ian Delaney (idella4)
0 siblings, 0 replies; 2+ messages in thread
From: Ian Delaney (idella4) @ 2013-05-20 16:43 UTC (permalink / raw
To: gentoo-commits
idella4 13/05/20 16:43:13
Modified: django-pipeline-1.3.9.ebuild ChangeLog
Log:
proper fix to test phase
(Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Revision Changes Path
1.2 dev-python/django-pipeline/django-pipeline-1.3.9.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-pipeline/django-pipeline-1.3.9.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-pipeline/django-pipeline-1.3.9.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-pipeline/django-pipeline-1.3.9.ebuild?r1=1.1&r2=1.2
Index: django-pipeline-1.3.9.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-pipeline/django-pipeline-1.3.9.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- django-pipeline-1.3.9.ebuild 17 May 2013 13:37:03 -0000 1.1
+++ django-pipeline-1.3.9.ebuild 20 May 2013 16:43:13 -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-pipeline/django-pipeline-1.3.9.ebuild,v 1.1 2013/05/17 13:37:03 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-pipeline/django-pipeline-1.3.9.ebuild,v 1.2 2013/05/20 16:43:13 idella4 Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
@@ -36,12 +36,13 @@
python_test() {
export DJANGO_SETTINGS_MODULE="django.conf"
+ export SECRET_KEY='green'
local test
pushd "${BUILD_DIR}"/lib/tests/tests/ > /dev/null || die
- for test in [a-z]*.py
+ for test in test_*.py
do
if ! "${PYTHON}" -c \
- "from django.conf import global_settings;global_settings.SECRET_KEY='green'" ${test}
+ "from django.conf import global_settings;global_settings.SECRET_KEY='$SECRET_KEY'" ${test}
then
die "test ${test} failed under ${EPYTHON}"
else
1.11 dev-python/django-pipeline/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-pipeline/ChangeLog?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-pipeline/ChangeLog?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-pipeline/ChangeLog?r1=1.10&r2=1.11
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-pipeline/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog 17 May 2013 13:37:03 -0000 1.10
+++ ChangeLog 20 May 2013 16:43:13 -0000 1.11
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/django-pipeline
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django-pipeline/ChangeLog,v 1.10 2013/05/17 13:37:03 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-pipeline/ChangeLog,v 1.11 2013/05/20 16:43:13 idella4 Exp $
+
+ 20 May 2013; Ian Delaney <idella4@gentoo.org> django-pipeline-1.3.9.ebuild:
+ proper fix to test phase
*django-pipeline-1.3.9 (17 May 2013)
*django-pipeline-1.2.24 (17 May 2013)
^ permalink raw reply [flat|nested] 2+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/django-pipeline: django-pipeline-1.3.9.ebuild ChangeLog
@ 2013-05-22 14:45 Ian Delaney (idella4)
0 siblings, 0 replies; 2+ messages in thread
From: Ian Delaney (idella4) @ 2013-05-22 14:45 UTC (permalink / raw
To: gentoo-commits
idella4 13/05/22 14:45:24
Modified: django-pipeline-1.3.9.ebuild ChangeLog
Log:
drop IUSE test, futures -> rdep
(Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Revision Changes Path
1.3 dev-python/django-pipeline/django-pipeline-1.3.9.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-pipeline/django-pipeline-1.3.9.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-pipeline/django-pipeline-1.3.9.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-pipeline/django-pipeline-1.3.9.ebuild?r1=1.2&r2=1.3
Index: django-pipeline-1.3.9.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-pipeline/django-pipeline-1.3.9.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- django-pipeline-1.3.9.ebuild 20 May 2013 16:43:13 -0000 1.2
+++ django-pipeline-1.3.9.ebuild 22 May 2013 14:45:24 -0000 1.3
@@ -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-pipeline/django-pipeline-1.3.9.ebuild,v 1.2 2013/05/20 16:43:13 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-pipeline/django-pipeline-1.3.9.ebuild,v 1.3 2013/05/22 14:45:24 idella4 Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
@@ -14,12 +14,12 @@
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
-IUSE="doc test"
+IUSE="doc"
-RDEPEND=">=dev-python/django-1.4.1[${PYTHON_USEDEP}]"
+RDEPEND=">=dev-python/django-1.4.1[${PYTHON_USEDEP}]
+ dev-python/futures[$(python_gen_usedep python{2_6,2_7})]"
DEPEND="${RDEPEND}
- dev-python/setuptools[${PYTHON_USEDEP}]
- test? ( dev-python/futures[$(python_gen_usedep python{2_6,2_7})] )"
+ dev-python/setuptools[${PYTHON_USEDEP}]"
python_compile_all() {
use doc && emake -C docs html
1.12 dev-python/django-pipeline/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-pipeline/ChangeLog?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-pipeline/ChangeLog?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-pipeline/ChangeLog?r1=1.11&r2=1.12
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-pipeline/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog 20 May 2013 16:43:13 -0000 1.11
+++ ChangeLog 22 May 2013 14:45:24 -0000 1.12
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/django-pipeline
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django-pipeline/ChangeLog,v 1.11 2013/05/20 16:43:13 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-pipeline/ChangeLog,v 1.12 2013/05/22 14:45:24 idella4 Exp $
+
+ 22 May 2013; Ian Delaney <idella4@gentoo.org> django-pipeline-1.3.9.ebuild:
+ drop IUSE test, futures -> rdep
20 May 2013; Ian Delaney <idella4@gentoo.org> django-pipeline-1.3.9.ebuild:
proper fix to test phase
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-05-22 14:45 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-20 16:43 [gentoo-commits] gentoo-x86 commit in dev-python/django-pipeline: django-pipeline-1.3.9.ebuild ChangeLog Ian Delaney (idella4)
-- strict thread matches above, loose matches on Subject: below --
2013-05-22 14:45 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