* [gentoo-commits] gentoo-x86 commit in dev-python/django: django-1.4.8.ebuild ChangeLog
@ 2013-09-15 10:53 Dirkjan Ochtman (djc)
0 siblings, 0 replies; 3+ messages in thread
From: Dirkjan Ochtman (djc) @ 2013-09-15 10:53 UTC (permalink / raw
To: gentoo-commits
djc 13/09/15 10:53:27
Modified: ChangeLog
Added: django-1.4.8.ebuild
Log:
Version bump django to 1.4.8.
(Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key 6B065BFB)
Revision Changes Path
1.113 dev-python/django/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/ChangeLog?rev=1.113&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/ChangeLog?rev=1.113&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/ChangeLog?r1=1.112&r2=1.113
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django/ChangeLog,v
retrieving revision 1.112
retrieving revision 1.113
diff -u -r1.112 -r1.113
--- ChangeLog 5 Sep 2013 18:46:06 -0000 1.112
+++ ChangeLog 15 Sep 2013 10:53:27 -0000 1.113
@@ -1,6 +1,11 @@
# ChangeLog for dev-python/django
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django/ChangeLog,v 1.112 2013/09/05 18:46:06 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django/ChangeLog,v 1.113 2013/09/15 10:53:27 djc Exp $
+
+*django-1.4.8 (15 Sep 2013)
+
+ 15 Sep 2013; Dirkjan Ochtman <djc@gentoo.org> +django-1.4.8.ebuild:
+ Version bump django to 1.4.8.
05 Sep 2013; Michał Górny <mgorny@gentoo.org> django-1.2.7.ebuild,
django-1.3.7.ebuild, django-1.4.2-r2.ebuild, django-1.4.5.ebuild:
1.1 dev-python/django/django-1.4.8.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/django-1.4.8.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/django-1.4.8.ebuild?rev=1.1&content-type=text/plain
Index: django-1.4.8.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/django-1.4.8.ebuild,v 1.1 2013/09/15 10:53:27 djc Exp $
EAPI=5
PYTHON_COMPAT=( python{2_5,2_6,2_7} )
PYTHON_REQ_USE='sqlite?'
inherit bash-completion-r1 distutils-r1 versionator webapp
MY_P="Django-${PV}"
DESCRIPTION="High-level Python web framework"
HOMEPAGE="http://www.djangoproject.com/ http://pypi.python.org/pypi/Django"
SRC_URI="https://www.djangoproject.com/m/releases/$(get_version_component_range 1-2)/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="doc mysql postgres sqlite test"
RDEPEND="virtual/python-imaging[${PYTHON_USEDEP}]
postgres? ( dev-python/psycopg:2[${PYTHON_USEDEP}] )
mysql? ( >=dev-python/mysql-python-1.2.3[${PYTHON_USEDEP}] )"
DEPEND="${RDEPEND}
doc? ( >=dev-python/sphinx-1.0.7[${PYTHON_USEDEP}] )
test? ( ${PYTHON_DEPS//sqlite?/sqlite} )"
S="${WORKDIR}/${MY_P}"
WEBAPP_MANUAL_SLOT="yes"
python_prepare_all() {
# Disable tests requiring network connection.
sed \
-e "s/test_correct_url_value_passes/_&/" \
-e "s/test_correct_url_with_redirect/_&/" \
-i tests/modeltests/validation/tests.py || die
sed \
-e "s/test_urlfield_3/_&/" \
-e "s/test_urlfield_4/_&/" \
-e "s/test_urlfield_10/_&/" \
-i tests/regressiontests/forms/tests/fields.py || die
distutils-r1_python_prepare_all
}
python_compile_all() {
use doc && emake -C docs html
}
python_test() {
# Tests have non-standard assumptions about PYTHONPATH,
# and don't work with ${BUILD_DIR}/lib.
PYTHONPATH=. \
"${PYTHON}" tests/runtests.py --settings=test_sqlite -v1 \
|| die "Tests fail with ${EPYTHON}"
}
src_test() {
# Port conflict in django.test.testcases.LiveServerTestCase.
# Several other races with temp files.
DISTUTILS_NO_PARALLEL_BUILD=1 distutils-r1_src_test
}
src_install() {
distutils-r1_src_install
webapp_src_install
}
python_install_all() {
distutils-r1_python_install_all
newbashcomp extras/django_bash_completion ${PN}
if use doc; then
rm -fr docs/_build/html/_sources
dohtml -A txt -r docs/_build/html/.
fi
insinto "${MY_HTDOCSDIR#${EPREFIX}}"
doins -r django/contrib/admin/static/admin/.
}
pkg_postinst() {
elog "A copy of the admin media is available to"
elog "webapp-config for installation in a webroot,"
elog "as well as the traditional location in python's"
elog "site-packages dir for easy development"
elog
ewarn "If you build Django ${PV} without USE=\"vhosts\""
# XXX: call webapp_pkg_postinst? the old ebuild didn't do that...
ewarn "webapp-config will automatically install the"
ewarn "admin media into the localhost webroot."
}
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/django: django-1.4.8.ebuild ChangeLog
@ 2013-09-21 10:54 Agostino Sarubbo (ago)
0 siblings, 0 replies; 3+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-09-21 10:54 UTC (permalink / raw
To: gentoo-commits
ago 13/09/21 10:54:20
Modified: django-1.4.8.ebuild ChangeLog
Log:
Stable for amd64, wrt bug #484984
(Portage version: 2.2.2/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)
Revision Changes Path
1.2 dev-python/django/django-1.4.8.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/django-1.4.8.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/django-1.4.8.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/django-1.4.8.ebuild?r1=1.1&r2=1.2
Index: django-1.4.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django/django-1.4.8.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- django-1.4.8.ebuild 15 Sep 2013 10:53:27 -0000 1.1
+++ django-1.4.8.ebuild 21 Sep 2013 10:54:20 -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/django-1.4.8.ebuild,v 1.1 2013/09/15 10:53:27 djc Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django/django-1.4.8.ebuild,v 1.2 2013/09/21 10:54:20 ago Exp $
EAPI=5
@@ -17,7 +17,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="doc mysql postgres sqlite test"
RDEPEND="virtual/python-imaging[${PYTHON_USEDEP}]
1.117 dev-python/django/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/ChangeLog?rev=1.117&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/ChangeLog?rev=1.117&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/ChangeLog?r1=1.116&r2=1.117
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django/ChangeLog,v
retrieving revision 1.116
retrieving revision 1.117
diff -u -r1.116 -r1.117
--- ChangeLog 16 Sep 2013 08:06:56 -0000 1.116
+++ ChangeLog 21 Sep 2013 10:54:20 -0000 1.117
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/django
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django/ChangeLog,v 1.116 2013/09/16 08:06:56 djc Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django/ChangeLog,v 1.117 2013/09/21 10:54:20 ago Exp $
+
+ 21 Sep 2013; Agostino Sarubbo <ago@gentoo.org> django-1.4.8.ebuild:
+ Stable for amd64, wrt bug #484984
16 Sep 2013; Dirkjan Ochtman <djc@gentoo.org> -django-1.2.7.ebuild,
-django-1.3.7.ebuild:
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/django: django-1.4.8.ebuild ChangeLog
@ 2013-09-21 10:55 Agostino Sarubbo (ago)
0 siblings, 0 replies; 3+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-09-21 10:55 UTC (permalink / raw
To: gentoo-commits
ago 13/09/21 10:55:44
Modified: django-1.4.8.ebuild ChangeLog
Log:
Stable for x86, wrt bug #484984
(Portage version: 2.2.2/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)
Revision Changes Path
1.3 dev-python/django/django-1.4.8.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/django-1.4.8.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/django-1.4.8.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/django-1.4.8.ebuild?r1=1.2&r2=1.3
Index: django-1.4.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django/django-1.4.8.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- django-1.4.8.ebuild 21 Sep 2013 10:54:20 -0000 1.2
+++ django-1.4.8.ebuild 21 Sep 2013 10:55:44 -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/django-1.4.8.ebuild,v 1.2 2013/09/21 10:54:20 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django/django-1.4.8.ebuild,v 1.3 2013/09/21 10:55:44 ago Exp $
EAPI=5
@@ -17,7 +17,7 @@
LICENSE="BSD"
SLOT="0"
-KEYWORDS="amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="amd64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="doc mysql postgres sqlite test"
RDEPEND="virtual/python-imaging[${PYTHON_USEDEP}]
1.118 dev-python/django/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/ChangeLog?rev=1.118&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/ChangeLog?rev=1.118&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/ChangeLog?r1=1.117&r2=1.118
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django/ChangeLog,v
retrieving revision 1.117
retrieving revision 1.118
diff -u -r1.117 -r1.118
--- ChangeLog 21 Sep 2013 10:54:20 -0000 1.117
+++ ChangeLog 21 Sep 2013 10:55:44 -0000 1.118
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/django
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django/ChangeLog,v 1.117 2013/09/21 10:54:20 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django/ChangeLog,v 1.118 2013/09/21 10:55:44 ago Exp $
+
+ 21 Sep 2013; Agostino Sarubbo <ago@gentoo.org> django-1.4.8.ebuild:
+ Stable for x86, wrt bug #484984
21 Sep 2013; Agostino Sarubbo <ago@gentoo.org> django-1.4.8.ebuild:
Stable for amd64, wrt bug #484984
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-09-21 10:55 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-15 10:53 [gentoo-commits] gentoo-x86 commit in dev-python/django: django-1.4.8.ebuild ChangeLog Dirkjan Ochtman (djc)
-- strict thread matches above, loose matches on Subject: below --
2013-09-21 10:54 Agostino Sarubbo (ago)
2013-09-21 10:55 Agostino Sarubbo (ago)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox