* [gentoo-commits] gentoo-x86 commit in dev-python/django: django-1.6.4.ebuild django-1.5.7.ebuild ChangeLog
@ 2014-05-12 6:44 Ian Delaney (idella4)
0 siblings, 0 replies; 2+ messages in thread
From: Ian Delaney (idella4) @ 2014-05-12 6:44 UTC (permalink / raw
To: gentoo-commits
idella4 14/05/12 06:44:53
Modified: django-1.6.4.ebuild django-1.5.7.ebuild ChangeLog
Log:
add pypy support, update ebuilds to suit
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Revision Changes Path
1.2 dev-python/django/django-1.6.4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/django-1.6.4.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/django-1.6.4.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/django-1.6.4.ebuild?r1=1.1&r2=1.2
Index: django-1.6.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django/django-1.6.4.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- django-1.6.4.ebuild 3 May 2014 01:57:47 -0000 1.1
+++ django-1.6.4.ebuild 12 May 2014 06:44:52 -0000 1.2
@@ -1,9 +1,9 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django/django-1.6.4.ebuild,v 1.1 2014/05/03 01:57:47 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django/django-1.6.4.ebuild,v 1.2 2014/05/12 06:44:52 idella4 Exp $
EAPI=5
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
PYTHON_REQ_USE='sqlite?'
WEBAPP_NO_AUTO_INSTALL="yes"
@@ -20,15 +20,17 @@
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="doc mysql postgres sqlite test"
-PY2_USEDEP=$(python_gen_usedep 'python2*')
+PY2_USEDEP=$(python_gen_usedep python2_7)
+PY23_USEDEP=$(python_gen_usedep python2_7 'python{3_3,3_4}')
RDEPEND="virtual/python-imaging[${PYTHON_USEDEP}]
- postgres? ( dev-python/psycopg:2[${PYTHON_USEDEP}] )
+ postgres? ( dev-python/psycopg:2[${PY23_USEDEP}] )
mysql? ( >=dev-python/mysql-python-1.2.3[${PY2_USEDEP}] )"
DEPEND="${RDEPEND}
doc? ( >=dev-python/sphinx-1.0.7[${PYTHON_USEDEP}] )
test? ( ${PYTHON_DEPS//sqlite?/sqlite} )"
-REQUIRED_USE="mysql? ( || ( $(python_gen_useflags 'python2*') ) )"
+REQUIRED_USE="mysql? ( || ( $(python_gen_useflags python2_7) ) )
+ postgres? ( || ( $(python_gen_useflags 'python{2_7,3_3,3_4}') ) )"
S="${WORKDIR}/${MY_P}"
1.2 dev-python/django/django-1.5.7.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/django-1.5.7.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/django-1.5.7.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/django-1.5.7.ebuild?r1=1.1&r2=1.2
Index: django-1.5.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django/django-1.5.7.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- django-1.5.7.ebuild 3 May 2014 01:57:47 -0000 1.1
+++ django-1.5.7.ebuild 12 May 2014 06:44:52 -0000 1.2
@@ -1,9 +1,9 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django/django-1.5.7.ebuild,v 1.1 2014/05/03 01:57:47 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django/django-1.5.7.ebuild,v 1.2 2014/05/12 06:44:52 idella4 Exp $
EAPI=5
-PYTHON_COMPAT=( python{2_7,3_2,3_3} )
+PYTHON_COMPAT=( python{2_7,3_2,3_3} pypy )
PYTHON_REQ_USE='sqlite?'
WEBAPP_NO_AUTO_INSTALL="yes"
@@ -20,16 +20,17 @@
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="doc mysql postgres sqlite test"
-PY2_USEDEP=$(python_gen_usedep 'python2*')
+PY2_USEDEP=$(python_gen_usedep python2_7)
+PY23_USEDEP=$(python_gen_usedep python2_7 'python{3_3,3_4}')
RDEPEND="virtual/python-imaging[${PYTHON_USEDEP}]
- postgres? ( dev-python/psycopg:2[${PYTHON_USEDEP}] )
+ postgres? ( dev-python/psycopg:2[${PY23_USEDEP}] )
mysql? ( >=dev-python/mysql-python-1.2.3[${PY2_USEDEP}] )"
DEPEND="${RDEPEND}
doc? ( >=dev-python/sphinx-1.0.7[${PYTHON_USEDEP}] )
test? ( ${PYTHON_DEPS//sqlite?/sqlite} )"
-REQUIRED_USE="mysql? ( || ( $(python_gen_useflags 'python2*') ) )"
-
+REQUIRED_USE="mysql? ( || ( $(python_gen_useflags 'python2*') ) )
+ postgres? ( || ( $(python_gen_useflags 'python{2_7,3_3,3_4}') ) )"
S="${WORKDIR}/${MY_P}"
WEBAPP_MANUAL_SLOT="yes"
1.130 dev-python/django/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/ChangeLog?rev=1.130&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/ChangeLog?rev=1.130&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/ChangeLog?r1=1.129&r2=1.130
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django/ChangeLog,v
retrieving revision 1.129
retrieving revision 1.130
diff -u -r1.129 -r1.130
--- ChangeLog 3 May 2014 01:57:47 -0000 1.129
+++ ChangeLog 12 May 2014 06:44:52 -0000 1.130
@@ -1,6 +1,10 @@
# ChangeLog for dev-python/django
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django/ChangeLog,v 1.129 2014/05/03 01:57:47 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django/ChangeLog,v 1.130 2014/05/12 06:44:52 idella4 Exp $
+
+ 12 May 2014; Ian Delaney <idella4@gentoo.org> django-1.5.7.ebuild,
+ django-1.6.4.ebuild:
+ add pypy support, update ebuilds to suit
*django-1.5.7 (03 May 2014)
*django-1.6.4 (03 May 2014)
^ permalink raw reply [flat|nested] 2+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/django: django-1.6.4.ebuild django-1.5.7.ebuild ChangeLog
@ 2014-05-13 2:56 Ian Delaney (idella4)
0 siblings, 0 replies; 2+ messages in thread
From: Ian Delaney (idella4) @ 2014-05-13 2:56 UTC (permalink / raw
To: gentoo-commits
idella4 14/05/13 02:56:59
Modified: django-1.6.4.ebuild django-1.5.7.ebuild ChangeLog
Log:
tidy, correction to REQUIRED_USE
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Revision Changes Path
1.3 dev-python/django/django-1.6.4.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/django-1.6.4.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/django-1.6.4.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/django-1.6.4.ebuild?r1=1.2&r2=1.3
Index: django-1.6.4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django/django-1.6.4.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- django-1.6.4.ebuild 12 May 2014 06:44:52 -0000 1.2
+++ django-1.6.4.ebuild 13 May 2014 02:56:58 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django/django-1.6.4.ebuild,v 1.2 2014/05/12 06:44:52 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django/django-1.6.4.ebuild,v 1.3 2014/05/13 02:56:58 idella4 Exp $
EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
@@ -29,7 +29,7 @@
doc? ( >=dev-python/sphinx-1.0.7[${PYTHON_USEDEP}] )
test? ( ${PYTHON_DEPS//sqlite?/sqlite} )"
-REQUIRED_USE="mysql? ( || ( $(python_gen_useflags python2_7) ) )
+REQUIRED_USE="mysql? ( $(python_gen_useflags python2_7) )
postgres? ( || ( $(python_gen_useflags 'python{2_7,3_3,3_4}') ) )"
S="${WORKDIR}/${MY_P}"
1.3 dev-python/django/django-1.5.7.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/django-1.5.7.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/django-1.5.7.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/django-1.5.7.ebuild?r1=1.2&r2=1.3
Index: django-1.5.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django/django-1.5.7.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- django-1.5.7.ebuild 12 May 2014 06:44:52 -0000 1.2
+++ django-1.5.7.ebuild 13 May 2014 02:56:58 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django/django-1.5.7.ebuild,v 1.2 2014/05/12 06:44:52 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django/django-1.5.7.ebuild,v 1.3 2014/05/13 02:56:58 idella4 Exp $
EAPI=5
PYTHON_COMPAT=( python{2_7,3_2,3_3} pypy )
@@ -29,8 +29,9 @@
doc? ( >=dev-python/sphinx-1.0.7[${PYTHON_USEDEP}] )
test? ( ${PYTHON_DEPS//sqlite?/sqlite} )"
-REQUIRED_USE="mysql? ( || ( $(python_gen_useflags 'python2*') ) )
- postgres? ( || ( $(python_gen_useflags 'python{2_7,3_3,3_4}') ) )"
+REQUIRED_USE="mysql? ( $(python_gen_useflags python2_7) )
+ postgres? ( || ( $(python_gen_useflags 'python{2_7,3_2,3_3}') ) )"
+
S="${WORKDIR}/${MY_P}"
WEBAPP_MANUAL_SLOT="yes"
1.131 dev-python/django/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/ChangeLog?rev=1.131&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/ChangeLog?rev=1.131&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/ChangeLog?r1=1.130&r2=1.131
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django/ChangeLog,v
retrieving revision 1.130
retrieving revision 1.131
diff -u -r1.130 -r1.131
--- ChangeLog 12 May 2014 06:44:52 -0000 1.130
+++ ChangeLog 13 May 2014 02:56:58 -0000 1.131
@@ -1,6 +1,10 @@
# ChangeLog for dev-python/django
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django/ChangeLog,v 1.130 2014/05/12 06:44:52 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django/ChangeLog,v 1.131 2014/05/13 02:56:58 idella4 Exp $
+
+ 13 May 2014; Ian Delaney <idella4@gentoo.org> django-1.5.7.ebuild,
+ django-1.6.4.ebuild:
+ tidy, correction to REQUIRED_USE
12 May 2014; Ian Delaney <idella4@gentoo.org> django-1.5.7.ebuild,
django-1.6.4.ebuild:
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-05-13 2:57 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-13 2:56 [gentoo-commits] gentoo-x86 commit in dev-python/django: django-1.6.4.ebuild django-1.5.7.ebuild ChangeLog Ian Delaney (idella4)
-- strict thread matches above, loose matches on Subject: below --
2014-05-12 6:44 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