* [gentoo-commits] gentoo-x86 commit in dev-python/django: django-1.2.3.ebuild ChangeLog
@ 2010-09-22 19:38 Arfrever Frehtes Taifersar Arahesis (arfrever)
0 siblings, 0 replies; 4+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2010-09-22 19:38 UTC (permalink / raw
To: gentoo-commits
arfrever 10/09/22 19:38:30
Modified: ChangeLog
Added: django-1.2.3.ebuild
Log:
Version bump. Fixed CVE-2010-3082 (bug #336594). Improve pysqlite dependencies (bug #334801). Fixed building with Sphinx 1.0 (bug #331689).
(Portage version: 2.2_rc86_p1/cvs/Linux x86_64)
Revision Changes Path
1.50 dev-python/django/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/ChangeLog?rev=1.50&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/ChangeLog?rev=1.50&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/ChangeLog?r1=1.49&r2=1.50
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django/ChangeLog,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- ChangeLog 11 Jul 2010 12:38:44 -0000 1.49
+++ ChangeLog 22 Sep 2010 19:38:29 -0000 1.50
@@ -1,6 +1,14 @@
# ChangeLog for dev-python/django
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django/ChangeLog,v 1.49 2010/07/11 12:38:44 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django/ChangeLog,v 1.50 2010/09/22 19:38:29 arfrever Exp $
+
+*django-1.2.3 (22 Sep 2010)
+
+ 22 Sep 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+ -django-1.2.1.ebuild, +django-1.2.3.ebuild,
+ +files/django-1.2.3-fix_tests.patch:
+ Version bump. Fixed CVE-2010-3082 (bug #336594). Improve pysqlite
+ dependencies (bug #334801). Fixed building with Sphinx 1.0 (bug #331689).
11 Jul 2010; Christian Faulhammer <fauli@gentoo.org> django-1.1.2.ebuild:
stable x86, bug 324461
1.1 dev-python/django/django-1.2.3.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/django-1.2.3.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/django-1.2.3.ebuild?rev=1.1&content-type=text/plain
Index: django-1.2.3.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/django/django-1.2.3.ebuild,v 1.1 2010/09/22 19:38:29 arfrever Exp $
EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.*"
inherit bash-completion distutils eutils 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="http://media.djangoproject.com/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 examples mysql postgres sqlite test"
RDEPEND="dev-python/imaging
sqlite? ( || ( dev-lang/python:2.7[sqlite] dev-lang/python:2.6[sqlite] dev-lang/python:2.5[sqlite] dev-python/pysqlite:2 ) )
postgres? ( dev-python/psycopg )
mysql? ( >=dev-python/mysql-python-1.2.1_p2 )"
DEPEND="${RDEPEND}
doc? ( >=dev-python/sphinx-0.3 )
test? ( || ( dev-lang/python:2.7[sqlite] dev-lang/python:2.6[sqlite] dev-lang/python:2.5[sqlite] dev-python/pysqlite:2 ) )"
S="${WORKDIR}/${MY_P}"
DOCS="docs/* AUTHORS"
WEBAPP_MANUAL_SLOT="yes"
pkg_setup() {
python_pkg_setup
webapp_pkg_setup
}
src_prepare() {
distutils_src_prepare
epatch "${FILESDIR}/${P}-fix_tests.patch"
}
src_compile() {
distutils_src_compile
if use doc; then
einfo "Generation of documentation"
pushd docs > /dev/null
emake html || die "Generation of documentation failed"
popd > /dev/null
fi
}
src_test() {
testing() {
# Tests have non-standard assumptions about PYTHONPATH and
# don't work with usual "build-${PYTHON_ABI}/lib".
PYTHONPATH="." "$(PYTHON)" tests/runtests.py --settings=test_sqlite -v1
}
python_execute_function testing
}
src_install() {
distutils_src_install
dobashcompletion extras/django_bash_completion
if use examples; then
insinto /usr/share/doc/${PF}
doins -r examples
fi
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/media/* || die "doins failed"
webapp_src_install
}
pkg_preinst() {
:
}
pkg_postinst() {
bash-completion_pkg_postinst
distutils_pkg_postinst
einfo "Now, Django has the best of both worlds with Gentoo,"
einfo "ease of deployment for production and development."
echo
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"
echo
ewarn "If you build Django ${PV} without USE=\"vhosts\""
ewarn "webapp-config will automatically install the"
ewarn "admin media into the localhost webroot."
}
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/django: django-1.2.3.ebuild ChangeLog
@ 2010-10-17 22:30 Arfrever Frehtes Taifersar Arahesis (arfrever)
0 siblings, 0 replies; 4+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2010-10-17 22:30 UTC (permalink / raw
To: gentoo-commits
arfrever 10/10/17 22:30:21
Modified: django-1.2.3.ebuild ChangeLog
Log:
Don't try to install nonexistent examples (bug #341159).
(Portage version: 2.2_rc97_p2/cvs/Linux x86_64)
Revision Changes Path
1.2 dev-python/django/django-1.2.3.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/django-1.2.3.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/django-1.2.3.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/django-1.2.3.ebuild?r1=1.1&r2=1.2
Index: django-1.2.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django/django-1.2.3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- django-1.2.3.ebuild 22 Sep 2010 19:38:29 -0000 1.1
+++ django-1.2.3.ebuild 17 Oct 2010 22:30:21 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django/django-1.2.3.ebuild,v 1.1 2010/09/22 19:38:29 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django/django-1.2.3.ebuild,v 1.2 2010/10/17 22:30:21 arfrever Exp $
EAPI="3"
PYTHON_DEPEND="2"
@@ -18,7 +18,7 @@
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
-IUSE="doc examples mysql postgres sqlite test"
+IUSE="doc mysql postgres sqlite test"
RDEPEND="dev-python/imaging
sqlite? ( || ( dev-lang/python:2.7[sqlite] dev-lang/python:2.6[sqlite] dev-lang/python:2.5[sqlite] dev-python/pysqlite:2 ) )
@@ -68,14 +68,9 @@
dobashcompletion extras/django_bash_completion
- if use examples; then
- insinto /usr/share/doc/${PF}
- doins -r examples
- fi
-
if use doc; then
rm -fr docs/_build/html/_sources
- dohtml -A txt -r docs/_build/html/*
+ dohtml -A txt -r docs/_build/html/* || die "dohtml failed"
fi
insinto "${MY_HTDOCSDIR#${EPREFIX}}"
1.53 dev-python/django/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/ChangeLog?rev=1.53&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/ChangeLog?rev=1.53&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/ChangeLog?r1=1.52&r2=1.53
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django/ChangeLog,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -r1.52 -r1.53
--- ChangeLog 22 Sep 2010 19:57:31 -0000 1.52
+++ ChangeLog 17 Oct 2010 22:30:21 -0000 1.53
@@ -1,6 +1,10 @@
# ChangeLog for dev-python/django
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django/ChangeLog,v 1.52 2010/09/22 19:57:31 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django/ChangeLog,v 1.53 2010/10/17 22:30:21 arfrever Exp $
+
+ 17 Oct 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+ django-1.2.3.ebuild:
+ Don't try to install nonexistent examples (bug #341159).
22 Sep 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
django-1.0.4.ebuild, django-1.1.2.ebuild:
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/django: django-1.2.3.ebuild ChangeLog
@ 2010-10-24 21:02 Markos Chandras (hwoarang)
0 siblings, 0 replies; 4+ messages in thread
From: Markos Chandras (hwoarang) @ 2010-10-24 21:02 UTC (permalink / raw
To: gentoo-commits
hwoarang 10/10/24 21:02:38
Modified: django-1.2.3.ebuild ChangeLog
Log:
Stable on amd64 wrt bug #342485
(Portage version: 2.2.0_alpha1/cvs/Linux x86_64)
Revision Changes Path
1.3 dev-python/django/django-1.2.3.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/django-1.2.3.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/django-1.2.3.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/django-1.2.3.ebuild?r1=1.2&r2=1.3
Index: django-1.2.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django/django-1.2.3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- django-1.2.3.ebuild 17 Oct 2010 22:30:21 -0000 1.2
+++ django-1.2.3.ebuild 24 Oct 2010 21:02:38 -0000 1.3
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django/django-1.2.3.ebuild,v 1.2 2010/10/17 22:30:21 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django/django-1.2.3.ebuild,v 1.3 2010/10/24 21:02:38 hwoarang Exp $
EAPI="3"
PYTHON_DEPEND="2"
@@ -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="dev-python/imaging
1.54 dev-python/django/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/ChangeLog?rev=1.54&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/ChangeLog?rev=1.54&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/ChangeLog?r1=1.53&r2=1.54
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django/ChangeLog,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -r1.53 -r1.54
--- ChangeLog 17 Oct 2010 22:30:21 -0000 1.53
+++ ChangeLog 24 Oct 2010 21:02:38 -0000 1.54
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/django
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django/ChangeLog,v 1.53 2010/10/17 22:30:21 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django/ChangeLog,v 1.54 2010/10/24 21:02:38 hwoarang Exp $
+
+ 24 Oct 2010; Markos Chandras <hwoarang@gentoo.org> django-1.2.3.ebuild:
+ Stable on amd64 wrt bug #342485
17 Oct 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
django-1.2.3.ebuild:
^ permalink raw reply [flat|nested] 4+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/django: django-1.2.3.ebuild ChangeLog
@ 2010-10-28 17:09 PaweA Hajdan (phajdan.jr)
0 siblings, 0 replies; 4+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2010-10-28 17:09 UTC (permalink / raw
To: gentoo-commits
phajdan.jr 10/10/28 17:09:34
Modified: django-1.2.3.ebuild ChangeLog
Log:
x86 stable wrt bug #342485
(Portage version: 2.1.8.3/cvs/Linux i686)
Revision Changes Path
1.4 dev-python/django/django-1.2.3.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/django-1.2.3.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/django-1.2.3.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/django-1.2.3.ebuild?r1=1.3&r2=1.4
Index: django-1.2.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django/django-1.2.3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- django-1.2.3.ebuild 24 Oct 2010 21:02:38 -0000 1.3
+++ django-1.2.3.ebuild 28 Oct 2010 17:09:34 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django/django-1.2.3.ebuild,v 1.3 2010/10/24 21:02:38 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django/django-1.2.3.ebuild,v 1.4 2010/10/28 17:09:34 phajdan.jr Exp $
EAPI="3"
PYTHON_DEPEND="2"
@@ -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="dev-python/imaging
1.55 dev-python/django/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/ChangeLog?rev=1.55&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/ChangeLog?rev=1.55&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django/ChangeLog?r1=1.54&r2=1.55
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django/ChangeLog,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -r1.54 -r1.55
--- ChangeLog 24 Oct 2010 21:02:38 -0000 1.54
+++ ChangeLog 28 Oct 2010 17:09:34 -0000 1.55
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/django
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django/ChangeLog,v 1.54 2010/10/24 21:02:38 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django/ChangeLog,v 1.55 2010/10/28 17:09:34 phajdan.jr Exp $
+
+ 28 Oct 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> django-1.2.3.ebuild:
+ x86 stable wrt bug #342485
24 Oct 2010; Markos Chandras <hwoarang@gentoo.org> django-1.2.3.ebuild:
Stable on amd64 wrt bug #342485
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2010-10-28 17:09 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-24 21:02 [gentoo-commits] gentoo-x86 commit in dev-python/django: django-1.2.3.ebuild ChangeLog Markos Chandras (hwoarang)
-- strict thread matches above, loose matches on Subject: below --
2010-10-28 17:09 PaweA Hajdan (phajdan.jr)
2010-10-17 22:30 Arfrever Frehtes Taifersar Arahesis (arfrever)
2010-09-22 19:38 Arfrever Frehtes Taifersar Arahesis (arfrever)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox