* [gentoo-commits] gentoo-x86 commit in dev-python/django-appconf: django-appconf-0.6.ebuild ChangeLog
@ 2013-05-18 13:48 Ian Delaney (idella4)
0 siblings, 0 replies; 8+ messages in thread
From: Ian Delaney (idella4) @ 2013-05-18 13:48 UTC (permalink / raw
To: gentoo-commits
idella4 13/05/18 13:48:24
Modified: ChangeLog
Added: django-appconf-0.6.ebuild
Log:
bump
(Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Revision Changes Path
1.4 dev-python/django-appconf/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/ChangeLog?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/ChangeLog?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/ChangeLog?r1=1.3&r2=1.4
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-appconf/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog 13 Nov 2012 11:39:10 -0000 1.3
+++ ChangeLog 18 May 2013 13:48:24 -0000 1.4
@@ -1,6 +1,12 @@
# ChangeLog for dev-python/django-appconf
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django-appconf/ChangeLog,v 1.3 2012/11/13 11:39:10 idella4 Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-appconf/ChangeLog,v 1.4 2013/05/18 13:48:24 idella4 Exp $
+
+*django-appconf-0.6 (18 May 2013)
+
+ 18 May 2013; Ian Delaney <idella4@gentoo.org> +django-appconf-0.6.ebuild,
+ +files/docs.patch:
+ bump
14 Nov 2012; Ian Delaney <idella4@gentoo.org> metadata.xml:
Updating maintainer, metadata.xml
1.1 dev-python/django-appconf/django-appconf-0.6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild?rev=1.1&content-type=text/plain
Index: django-appconf-0.6.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-appconf/django-appconf-0.6.ebuild,v 1.1 2013/05/18 13:48:24 idella4 Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7} )
inherit distutils-r1
DESCRIPTION="A helper class for handling configuration defaults of packaged apps gracefully"
HOMEPAGE="http://pypi.python.org/pypi/django-appconf http://django-appconf.readthedocs.org/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
LICENSE="BSD"
SLOT="0"
RDEPEND=">=dev-python/django-1.4.1[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
PATCHES=( "${FILESDIR}"/docs.patch )
python_compile_all() {
use doc && emake -C docs html
}
python_test() {
export DJANGO_SETTINGS_MODULE="django.conf"
pushd "${BUILD_DIR}"/lib > /dev/null
if ! "${PYTHON}" -c \
"from django.conf import global_settings;global_settings.SECRET_KEY='green'" -m appconf.tests.tests
then
die "test ${test} failed under ${EPYTHON}"
else
einfo "test ${test} passed under ${EPYTHON}"
fi
}
python_install_all() {
use doc && HTML_DOCS=( docs/_build/html/. )
distutils-r1_python_install_all
}
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/django-appconf: django-appconf-0.6.ebuild ChangeLog
@ 2013-05-20 17:17 Ian Delaney (idella4)
0 siblings, 0 replies; 8+ messages in thread
From: Ian Delaney (idella4) @ 2013-05-20 17:17 UTC (permalink / raw
To: gentoo-commits
idella4 13/05/20 17:17:00
Modified: django-appconf-0.6.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-appconf/django-appconf-0.6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild?r1=1.1&r2=1.2
Index: django-appconf-0.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- django-appconf-0.6.ebuild 18 May 2013 13:48:24 -0000 1.1
+++ django-appconf-0.6.ebuild 20 May 2013 17:17:00 -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-appconf/django-appconf-0.6.ebuild,v 1.1 2013/05/18 13:48:24 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild,v 1.2 2013/05/20 17:17:00 idella4 Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7} )
@@ -29,13 +29,15 @@
python_test() {
export DJANGO_SETTINGS_MODULE="django.conf"
+ export SECRET_KEY="green"
pushd "${BUILD_DIR}"/lib > /dev/null
if ! "${PYTHON}" -c \
- "from django.conf import global_settings;global_settings.SECRET_KEY='green'" -m appconf.tests.tests
+ "from django.conf import global_settings;global_settings.SECRET_KEY='$SECRET_KEY'" \
+ -m appconf.tests.tests
then
- die "test ${test} failed under ${EPYTHON}"
+ die "test failed under ${EPYTHON}"
else
- einfo "test ${test} passed under ${EPYTHON}"
+ einfo "tests passed under ${EPYTHON}"
fi
}
1.5 dev-python/django-appconf/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/ChangeLog?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/ChangeLog?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/ChangeLog?r1=1.4&r2=1.5
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-appconf/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog 18 May 2013 13:48:24 -0000 1.4
+++ ChangeLog 20 May 2013 17:17:00 -0000 1.5
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/django-appconf
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django-appconf/ChangeLog,v 1.4 2013/05/18 13:48:24 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-appconf/ChangeLog,v 1.5 2013/05/20 17:17:00 idella4 Exp $
+
+ 20 May 2013; Ian Delaney <idella4@gentoo.org> django-appconf-0.6.ebuild:
+ proper fix to test phase
*django-appconf-0.6 (18 May 2013)
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/django-appconf: django-appconf-0.6.ebuild ChangeLog
@ 2013-05-31 2:31 Mike Gilbert (floppym)
0 siblings, 0 replies; 8+ messages in thread
From: Mike Gilbert (floppym) @ 2013-05-31 2:31 UTC (permalink / raw
To: gentoo-commits
floppym 13/05/31 02:31:43
Modified: django-appconf-0.6.ebuild ChangeLog
Log:
Make python_test do something useful.
(Portage version: 2.2.0_alpha177/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)
Revision Changes Path
1.3 dev-python/django-appconf/django-appconf-0.6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild?r1=1.2&r2=1.3
Index: django-appconf-0.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- django-appconf-0.6.ebuild 20 May 2013 17:17:00 -0000 1.2
+++ django-appconf-0.6.ebuild 31 May 2013 02:31:42 -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-appconf/django-appconf-0.6.ebuild,v 1.2 2013/05/20 17:17:00 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild,v 1.3 2013/05/31 02:31:42 floppym Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7} )
@@ -11,7 +11,7 @@
HOMEPAGE="http://pypi.python.org/pypi/django-appconf http://django-appconf.readthedocs.org/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
-IUSE="doc"
+IUSE="doc test"
LICENSE="BSD"
SLOT="0"
@@ -19,7 +19,9 @@
RDEPEND=">=dev-python/django-1.4.1[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
- doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
+ doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+ test? ( dev-python/django-discover-runner[${PYTHON_USEDEP}] )
+"
PATCHES=( "${FILESDIR}"/docs.patch )
@@ -28,17 +30,9 @@
}
python_test() {
- export DJANGO_SETTINGS_MODULE="django.conf"
- export SECRET_KEY="green"
- pushd "${BUILD_DIR}"/lib > /dev/null
- if ! "${PYTHON}" -c \
- "from django.conf import global_settings;global_settings.SECRET_KEY='$SECRET_KEY'" \
- -m appconf.tests.tests
- then
- die "test failed under ${EPYTHON}"
- else
- einfo "tests passed under ${EPYTHON}"
- fi
+ set -- django-admin.py test appconf --settings=appconf.test_settings
+ echo "$@"
+ "$@" || die "Testing failed with ${EPYTHON}"
}
python_install_all() {
1.6 dev-python/django-appconf/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/ChangeLog?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/ChangeLog?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/ChangeLog?r1=1.5&r2=1.6
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-appconf/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog 20 May 2013 17:17:00 -0000 1.5
+++ ChangeLog 31 May 2013 02:31:42 -0000 1.6
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/django-appconf
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django-appconf/ChangeLog,v 1.5 2013/05/20 17:17:00 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-appconf/ChangeLog,v 1.6 2013/05/31 02:31:42 floppym Exp $
+
+ 31 May 2013; Mike Gilbert <floppym@gentoo.org> django-appconf-0.6.ebuild:
+ Make python_test do something useful.
20 May 2013; Ian Delaney <idella4@gentoo.org> django-appconf-0.6.ebuild:
proper fix to test phase
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/django-appconf: django-appconf-0.6.ebuild ChangeLog
@ 2013-06-25 16:59 Ian Delaney (idella4)
0 siblings, 0 replies; 8+ messages in thread
From: Ian Delaney (idella4) @ 2013-06-25 16:59 UTC (permalink / raw
To: gentoo-commits
idella4 13/06/25 16:59:12
Modified: django-appconf-0.6.ebuild ChangeLog
Log:
add required rdep six
(Portage version: 2.1.11.63/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Revision Changes Path
1.4 dev-python/django-appconf/django-appconf-0.6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild?r1=1.3&r2=1.4
Index: django-appconf-0.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- django-appconf-0.6.ebuild 31 May 2013 02:31:42 -0000 1.3
+++ django-appconf-0.6.ebuild 25 Jun 2013 16:59:11 -0000 1.4
@@ -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-appconf/django-appconf-0.6.ebuild,v 1.3 2013/05/31 02:31:42 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild,v 1.4 2013/06/25 16:59:11 idella4 Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7} )
@@ -16,12 +16,12 @@
LICENSE="BSD"
SLOT="0"
-RDEPEND=">=dev-python/django-1.4.1[${PYTHON_USEDEP}]"
+RDEPEND=">=dev-python/django-1.4.1[${PYTHON_USEDEP}]
+ dev-python/six[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
- test? ( dev-python/django-discover-runner[${PYTHON_USEDEP}] )
-"
+ test? ( dev-python/django-discover-runner[${PYTHON_USEDEP}] )"
PATCHES=( "${FILESDIR}"/docs.patch )
1.7 dev-python/django-appconf/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/ChangeLog?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/ChangeLog?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/ChangeLog?r1=1.6&r2=1.7
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-appconf/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog 31 May 2013 02:31:42 -0000 1.6
+++ ChangeLog 25 Jun 2013 16:59:11 -0000 1.7
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/django-appconf
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django-appconf/ChangeLog,v 1.6 2013/05/31 02:31:42 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-appconf/ChangeLog,v 1.7 2013/06/25 16:59:11 idella4 Exp $
+
+ 25 Jun 2013; Ian Delaney <idella4@gentoo.org> django-appconf-0.6.ebuild:
+ add required rdep six
31 May 2013; Mike Gilbert <floppym@gentoo.org> django-appconf-0.6.ebuild:
Make python_test do something useful.
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/django-appconf: django-appconf-0.6.ebuild ChangeLog
@ 2013-06-30 21:54 Theo Chatzimichos (tampakrap)
0 siblings, 0 replies; 8+ messages in thread
From: Theo Chatzimichos (tampakrap) @ 2013-06-30 21:54 UTC (permalink / raw
To: gentoo-commits
tampakrap 13/06/30 21:54:24
Modified: django-appconf-0.6.ebuild ChangeLog
Log:
Fix tests
(Portage version: 2.2.0_alpha166/cvs/Linux x86_64, signed Manifest commit with key 0x57DC0078)
Revision Changes Path
1.5 dev-python/django-appconf/django-appconf-0.6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild?r1=1.4&r2=1.5
Index: django-appconf-0.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- django-appconf-0.6.ebuild 25 Jun 2013 16:59:11 -0000 1.4
+++ django-appconf-0.6.ebuild 30 Jun 2013 21:54:24 -0000 1.5
@@ -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-appconf/django-appconf-0.6.ebuild,v 1.4 2013/06/25 16:59:11 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild,v 1.5 2013/06/30 21:54:24 tampakrap Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7} )
@@ -30,6 +30,7 @@
}
python_test() {
+ cd appconf/tests || die
set -- django-admin.py test appconf --settings=appconf.test_settings
echo "$@"
"$@" || die "Testing failed with ${EPYTHON}"
1.8 dev-python/django-appconf/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/ChangeLog?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/ChangeLog?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/ChangeLog?r1=1.7&r2=1.8
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-appconf/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog 25 Jun 2013 16:59:11 -0000 1.7
+++ ChangeLog 30 Jun 2013 21:54:24 -0000 1.8
@@ -1,6 +1,10 @@
# ChangeLog for dev-python/django-appconf
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django-appconf/ChangeLog,v 1.7 2013/06/25 16:59:11 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-appconf/ChangeLog,v 1.8 2013/06/30 21:54:24 tampakrap Exp $
+
+ 30 Jun 2013; Theo Chatzimichos <tampakrap@gentoo.org>
+ django-appconf-0.6.ebuild:
+ Fix tests
25 Jun 2013; Ian Delaney <idella4@gentoo.org> django-appconf-0.6.ebuild:
add required rdep six
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/django-appconf: django-appconf-0.6.ebuild ChangeLog
@ 2014-06-06 13:47 Ian Delaney (idella4)
0 siblings, 0 replies; 8+ messages in thread
From: Ian Delaney (idella4) @ 2014-06-06 13:47 UTC (permalink / raw
To: gentoo-commits
idella4 14/06/06 13:47:31
Modified: django-appconf-0.6.ebuild ChangeLog
Log:
drop py2.6 add py3 support, upgrade HOMEPAGE, SRC_URI to github, complete deps for tests
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Revision Changes Path
1.6 dev-python/django-appconf/django-appconf-0.6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild?r1=1.5&r2=1.6
Index: django-appconf-0.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- django-appconf-0.6.ebuild 30 Jun 2013 21:54:24 -0000 1.5
+++ django-appconf-0.6.ebuild 6 Jun 2014 13:47:30 -0000 1.6
@@ -1,15 +1,15 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild,v 1.5 2013/06/30 21:54:24 tampakrap Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild,v 1.6 2014/06/06 13:47:30 idella4 Exp $
EAPI=5
-PYTHON_COMPAT=( python{2_6,2_7} )
+PYTHON_COMPAT=( python{2_7,3_3,3_4} )
inherit distutils-r1
DESCRIPTION="A helper class for handling configuration defaults of packaged apps gracefully"
-HOMEPAGE="http://pypi.python.org/pypi/django-appconf http://django-appconf.readthedocs.org/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+HOMEPAGE="https://github.com/jezdez/django-appconf http://django-appconf.readthedocs.org/"
+SRC_URI="https://github.com/jezdez/${PN}/archive/v${PV}.tar.gz"
KEYWORDS="~amd64 ~x86"
IUSE="doc test"
@@ -21,7 +21,9 @@
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
- test? ( dev-python/django-discover-runner[${PYTHON_USEDEP}] )"
+ test? ( dev-python/django-discover-runner[${PYTHON_USEDEP}]
+ dev-python/flake8[${PYTHON_USEDEP}]
+ dev-python/coverage[${PYTHON_USEDEP}] )"
PATCHES=( "${FILESDIR}"/docs.patch )
1.9 dev-python/django-appconf/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/ChangeLog?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/ChangeLog?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/ChangeLog?r1=1.8&r2=1.9
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-appconf/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog 30 Jun 2013 21:54:24 -0000 1.8
+++ ChangeLog 6 Jun 2014 13:47:30 -0000 1.9
@@ -1,6 +1,10 @@
# ChangeLog for dev-python/django-appconf
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django-appconf/ChangeLog,v 1.8 2013/06/30 21:54:24 tampakrap Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-appconf/ChangeLog,v 1.9 2014/06/06 13:47:30 idella4 Exp $
+
+ 06 Jun 2014; Ian Delaney <idella4@gentoo.org> django-appconf-0.6.ebuild:
+ drop py2.6 add py3 support, upgrade HOMEPAGE, SRC_URI to github, complete deps
+ for tests
30 Jun 2013; Theo Chatzimichos <tampakrap@gentoo.org>
django-appconf-0.6.ebuild:
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/django-appconf: django-appconf-0.6.ebuild ChangeLog
@ 2015-03-06 22:14 Pacho Ramos (pacho)
0 siblings, 0 replies; 8+ messages in thread
From: Pacho Ramos (pacho) @ 2015-03-06 22:14 UTC (permalink / raw
To: gentoo-commits
pacho 15/03/06 22:14:36
Modified: django-appconf-0.6.ebuild ChangeLog
Log:
amd64 stable, bug 540290
(Portage version: 2.2.17/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key A188FBD4)
Revision Changes Path
1.7 dev-python/django-appconf/django-appconf-0.6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild?r1=1.6&r2=1.7
Index: django-appconf-0.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- django-appconf-0.6.ebuild 6 Jun 2014 13:47:30 -0000 1.6
+++ django-appconf-0.6.ebuild 6 Mar 2015 22:14:36 -0000 1.7
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild,v 1.6 2014/06/06 13:47:30 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild,v 1.7 2015/03/06 22:14:36 pacho Exp $
EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} )
@@ -10,7 +10,7 @@
DESCRIPTION="A helper class for handling configuration defaults of packaged apps gracefully"
HOMEPAGE="https://github.com/jezdez/django-appconf http://django-appconf.readthedocs.org/"
SRC_URI="https://github.com/jezdez/${PN}/archive/v${PV}.tar.gz"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
IUSE="doc test"
LICENSE="BSD"
1.11 dev-python/django-appconf/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/ChangeLog?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/ChangeLog?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/ChangeLog?r1=1.10&r2=1.11
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-appconf/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog 5 Mar 2015 13:35:32 -0000 1.10
+++ ChangeLog 6 Mar 2015 22:14:36 -0000 1.11
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/django-appconf
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django-appconf/ChangeLog,v 1.10 2015/03/05 13:35:32 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-appconf/ChangeLog,v 1.11 2015/03/06 22:14:36 pacho Exp $
+
+ 06 Mar 2015; Pacho Ramos <pacho@gentoo.org> django-appconf-0.6.ebuild:
+ amd64 stable, bug 540290
05 Mar 2015; Manuel Rüger <mrueg@gentoo.org> -django-appconf-0.5.ebuild:
Remove old.
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/django-appconf: django-appconf-0.6.ebuild ChangeLog
@ 2015-03-08 23:43 Pacho Ramos (pacho)
0 siblings, 0 replies; 8+ messages in thread
From: Pacho Ramos (pacho) @ 2015-03-08 23:43 UTC (permalink / raw
To: gentoo-commits
pacho 15/03/08 23:43:54
Modified: django-appconf-0.6.ebuild ChangeLog
Log:
x86 stable, bug 540290
(Portage version: 2.2.17/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key A188FBD4)
Revision Changes Path
1.8 dev-python/django-appconf/django-appconf-0.6.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild?r1=1.7&r2=1.8
Index: django-appconf-0.6.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- django-appconf-0.6.ebuild 6 Mar 2015 22:14:36 -0000 1.7
+++ django-appconf-0.6.ebuild 8 Mar 2015 23:43:54 -0000 1.8
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild,v 1.7 2015/03/06 22:14:36 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-appconf/django-appconf-0.6.ebuild,v 1.8 2015/03/08 23:43:54 pacho Exp $
EAPI=5
PYTHON_COMPAT=( python{2_7,3_3,3_4} )
@@ -10,7 +10,7 @@
DESCRIPTION="A helper class for handling configuration defaults of packaged apps gracefully"
HOMEPAGE="https://github.com/jezdez/django-appconf http://django-appconf.readthedocs.org/"
SRC_URI="https://github.com/jezdez/${PN}/archive/v${PV}.tar.gz"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
IUSE="doc test"
LICENSE="BSD"
1.12 dev-python/django-appconf/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/ChangeLog?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/ChangeLog?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-appconf/ChangeLog?r1=1.11&r2=1.12
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-appconf/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog 6 Mar 2015 22:14:36 -0000 1.11
+++ ChangeLog 8 Mar 2015 23:43:54 -0000 1.12
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/django-appconf
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django-appconf/ChangeLog,v 1.11 2015/03/06 22:14:36 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-appconf/ChangeLog,v 1.12 2015/03/08 23:43:54 pacho Exp $
+
+ 08 Mar 2015; Pacho Ramos <pacho@gentoo.org> django-appconf-0.6.ebuild:
+ x86 stable, bug 540290
06 Mar 2015; Pacho Ramos <pacho@gentoo.org> django-appconf-0.6.ebuild:
amd64 stable, bug 540290
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2015-03-08 23:43 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-18 13:48 [gentoo-commits] gentoo-x86 commit in dev-python/django-appconf: django-appconf-0.6.ebuild ChangeLog Ian Delaney (idella4)
-- strict thread matches above, loose matches on Subject: below --
2013-05-20 17:17 Ian Delaney (idella4)
2013-05-31 2:31 Mike Gilbert (floppym)
2013-06-25 16:59 Ian Delaney (idella4)
2013-06-30 21:54 Theo Chatzimichos (tampakrap)
2014-06-06 13:47 Ian Delaney (idella4)
2015-03-06 22:14 Pacho Ramos (pacho)
2015-03-08 23:43 Pacho Ramos (pacho)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox