public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/django-tastypie: django-tastypie-0.9.15.ebuild ChangeLog
@ 2013-05-30 21:17 Mike Gilbert (floppym)
  0 siblings, 0 replies; 6+ messages in thread
From: Mike Gilbert (floppym) @ 2013-05-30 21:17 UTC (permalink / raw
  To: gentoo-commits

floppym     13/05/30 21:17:00

  Modified:             django-tastypie-0.9.15.ebuild ChangeLog
  Log:
  Replace python_test with something that actually runs tests. Restrict them until someone gets them working fully.
  
  (Portage version: 2.2.0_alpha177/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)

Revision  Changes    Path
1.2                  dev-python/django-tastypie/django-tastypie-0.9.15.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-tastypie/django-tastypie-0.9.15.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-tastypie/django-tastypie-0.9.15.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-tastypie/django-tastypie-0.9.15.ebuild?r1=1.1&r2=1.2

Index: django-tastypie-0.9.15.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-tastypie/django-tastypie-0.9.15.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- django-tastypie-0.9.15.ebuild	29 May 2013 07:56:40 -0000	1.1
+++ django-tastypie-0.9.15.ebuild	30 May 2013 21:16:59 -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-tastypie/django-tastypie-0.9.15.ebuild,v 1.1 2013/05/29 07:56:40 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-tastypie/django-tastypie-0.9.15.ebuild,v 1.2 2013/05/30 21:16:59 floppym Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_6,2_7} )
@@ -9,7 +9,7 @@
 
 DESCRIPTION="A flexible and capable API layer for django utilising serialisers"
 HOMEPAGE="http://pypi.python.org/pypi/django-tastypie/ https://github.com/toastdriven/django-tastypie"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+SRC_URI="https://github.com/toastdriven/django-tastypie/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 KEYWORDS="~amd64 ~x86"
 IUSE="bip doc digest lxml oauth test yaml"
 
@@ -25,24 +25,46 @@
 	oauth? ( dev-python/oauth2[${PYTHON_USEDEP}] dev-python/django-oauth-plus[${PYTHON_USEDEP}] )
 	lxml? ( dev-python/lxml[${PYTHON_USEDEP}] )
 	yaml? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
-DEPEND="${RDEPEND} >=dev-python/django-1.2.5[${PYTHON_USEDEP}]
+DEPEND="${RDEPEND}
 	dev-python/setuptools[${PYTHON_USEDEP}]
-	test? ( dev-python/mock[${PYTHON_USEDEP}] )"
+	test? (
+		dev-python/django-oauth-plus[${PYTHON_USEDEP}]
+		dev-python/oauth2[${PYTHON_USEDEP}]
+		dev-python/lxml[${PYTHON_USEDEP}]
+		dev-python/python-digest[${PYTHON_USEDEP}]
+		dev-python/biplist[${PYTHON_USEDEP}]
+		dev-python/pyyaml[${PYTHON_USEDEP}]
+		>=dev-python/mimeparse-0.1.3[${PYTHON_USEDEP}]
+		>=dev-python/python-dateutil-2.1[${PYTHON_USEDEP}]
+		dev-python/mock[${PYTHON_USEDEP}]
+	)
+"
+
+RESTRICT="test"
 
 python_compile_all() {
 	use doc && emake -C docs html
 }
 
+src_test() {
+	DISTUTILS_NO_PARALLEL_BUILD=1 distutils-r1_src_test
+}
+
 python_test() {
-	export DJANGO_SETTINGS_MODULE="django.conf"
-	export SECRET_KEY='green'
-	if ! "${PYTHON}" -c \
-		"from django.conf import global_settings;global_settings.SECRET_KEY='$SECRET_KEY'" \
-		-m tastypie.test; then
-		die "test ${test} failed under ${EPYTHON}"
-	else
-		einfo "test ${test} passed under ${EPYTHON}"
-	fi
+	# See tests/run_all_tests.sh
+	local types=( core basic alphanumeric slashless namespaced related
+		validation gis content_gfk authorization )
+	local failed type
+
+	pushd tests > /dev/null || die
+	for type in "${types[@]}"; do
+		set -- django-admin.py test ${type} --settings=settings_${type}
+		echo "$@"
+		"$@" || failed=1
+	done
+	popd > /dev/null || die
+
+	[[ -z ${failed} ]] || die "Testing failed with ${EPYTHON}"
 }
 
 python_install_all() {



1.5                  dev-python/django-tastypie/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-tastypie/ChangeLog?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-tastypie/ChangeLog?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-tastypie/ChangeLog?r1=1.4&r2=1.5

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-tastypie/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog	29 May 2013 07:56:40 -0000	1.4
+++ ChangeLog	30 May 2013 21:16:59 -0000	1.5
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/django-tastypie
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django-tastypie/ChangeLog,v 1.4 2013/05/29 07:56:40 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-tastypie/ChangeLog,v 1.5 2013/05/30 21:16:59 floppym Exp $
+
+  30 May 2013; Mike Gilbert <floppym@gentoo.org> django-tastypie-0.9.15.ebuild:
+  Replace python_test with something that actually runs tests. Restrict them
+  until someone gets them working fully.
 
 *django-tastypie-0.9.15 (29 May 2013)
 





^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-python/django-tastypie: django-tastypie-0.9.15.ebuild ChangeLog
@ 2013-06-06  9:32 Ian Delaney (idella4)
  0 siblings, 0 replies; 6+ messages in thread
From: Ian Delaney (idella4) @ 2013-06-06  9:32 UTC (permalink / raw
  To: gentoo-commits

idella4     13/06/06 09:32:46

  Modified:             django-tastypie-0.9.15.ebuild ChangeLog
  Log:
  tidyup
  
  (Portage version: 2.1.11.63/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)

Revision  Changes    Path
1.4                  dev-python/django-tastypie/django-tastypie-0.9.15.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-tastypie/django-tastypie-0.9.15.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-tastypie/django-tastypie-0.9.15.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-tastypie/django-tastypie-0.9.15.ebuild?r1=1.3&r2=1.4

Index: django-tastypie-0.9.15.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-tastypie/django-tastypie-0.9.15.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- django-tastypie-0.9.15.ebuild	3 Jun 2013 07:08:29 -0000	1.3
+++ django-tastypie-0.9.15.ebuild	6 Jun 2013 09:32:46 -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-tastypie/django-tastypie-0.9.15.ebuild,v 1.3 2013/06/03 07:08:29 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-tastypie/django-tastypie-0.9.15.ebuild,v 1.4 2013/06/06 09:32:46 idella4 Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_6,2_7} )
@@ -42,11 +42,7 @@
 		dev-python/mock[${PYTHON_USEDEP}]
 	)"
 
-python_prepare_all() {
-	# skip run tests script
-	use test && epatch "${FILESDIR}"/runtests.patch
-	distutils-r1_python_prepare_all
-}
+PATCHES=( "${FILESDIR}"/runtests.patch )
 
 python_compile_all() {
 	use doc && emake -C docs html
@@ -57,7 +53,7 @@
 }
 
 python_test() {
-	PYTHONPATH=.:tests ./tests/run_all_tests.sh
+	PYTHONPATH=.:tests ./tests/run_all_tests.sh || die
 }
 
 python_install_all() {



1.7                  dev-python/django-tastypie/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-tastypie/ChangeLog?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-tastypie/ChangeLog?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-tastypie/ChangeLog?r1=1.6&r2=1.7

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-tastypie/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog	3 Jun 2013 07:17:51 -0000	1.6
+++ ChangeLog	6 Jun 2013 09:32:46 -0000	1.7
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/django-tastypie
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django-tastypie/ChangeLog,v 1.6 2013/06/03 07:17:51 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-tastypie/ChangeLog,v 1.7 2013/06/06 09:32:46 idella4 Exp $
+
+  06 Jun 2013; Ian Delaney <idella4@gentoo.org> django-tastypie-0.9.15.ebuild,
+  files/runtests.patch:
+  tidyup
 
   3 June 2013; Ian Delaney <idella4@gentoo.org> +runtests.patch,
   django-tastypie-0.9.15.ebuild:





^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-python/django-tastypie: django-tastypie-0.9.15.ebuild ChangeLog
@ 2015-03-06 22:16 Pacho Ramos (pacho)
  0 siblings, 0 replies; 6+ messages in thread
From: Pacho Ramos (pacho) @ 2015-03-06 22:16 UTC (permalink / raw
  To: gentoo-commits

pacho       15/03/06 22:16:56

  Modified:             django-tastypie-0.9.15.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.5                  dev-python/django-tastypie/django-tastypie-0.9.15.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-tastypie/django-tastypie-0.9.15.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-tastypie/django-tastypie-0.9.15.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-tastypie/django-tastypie-0.9.15.ebuild?r1=1.4&r2=1.5

Index: django-tastypie-0.9.15.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-tastypie/django-tastypie-0.9.15.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- django-tastypie-0.9.15.ebuild	6 Jun 2013 09:32:46 -0000	1.4
+++ django-tastypie-0.9.15.ebuild	6 Mar 2015 22:16:56 -0000	1.5
@@ -1,6 +1,6 @@
-# Copyright 1999-2013 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-tastypie/django-tastypie-0.9.15.ebuild,v 1.4 2013/06/06 09:32:46 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-tastypie/django-tastypie-0.9.15.ebuild,v 1.5 2015/03/06 22:16:56 pacho Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_6,2_7} )
@@ -11,7 +11,7 @@
 HOMEPAGE="http://pypi.python.org/pypi/django-tastypie/ https://github.com/toastdriven/django-tastypie"
 SRC_URI="https://github.com/toastdriven/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="bip doc digest lxml oauth test yaml"
 
 LICENSE="BSD"



1.8                  dev-python/django-tastypie/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-tastypie/ChangeLog?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-tastypie/ChangeLog?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-tastypie/ChangeLog?r1=1.7&r2=1.8

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-tastypie/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog	6 Jun 2013 09:32:46 -0000	1.7
+++ ChangeLog	6 Mar 2015 22:16:56 -0000	1.8
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/django-tastypie
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django-tastypie/ChangeLog,v 1.7 2013/06/06 09:32:46 idella4 Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-tastypie/ChangeLog,v 1.8 2015/03/06 22:16:56 pacho Exp $
+
+  06 Mar 2015; Pacho Ramos <pacho@gentoo.org> django-tastypie-0.9.15.ebuild:
+  amd64 stable, bug 540290
 
   06 Jun 2013; Ian Delaney <idella4@gentoo.org> django-tastypie-0.9.15.ebuild,
   files/runtests.patch:





^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-python/django-tastypie: django-tastypie-0.9.15.ebuild ChangeLog
@ 2015-03-08 23:45 Pacho Ramos (pacho)
  0 siblings, 0 replies; 6+ messages in thread
From: Pacho Ramos (pacho) @ 2015-03-08 23:45 UTC (permalink / raw
  To: gentoo-commits

pacho       15/03/08 23:45:31

  Modified:             django-tastypie-0.9.15.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.6                  dev-python/django-tastypie/django-tastypie-0.9.15.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-tastypie/django-tastypie-0.9.15.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-tastypie/django-tastypie-0.9.15.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-tastypie/django-tastypie-0.9.15.ebuild?r1=1.5&r2=1.6

Index: django-tastypie-0.9.15.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-tastypie/django-tastypie-0.9.15.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- django-tastypie-0.9.15.ebuild	6 Mar 2015 22:16:56 -0000	1.5
+++ django-tastypie-0.9.15.ebuild	8 Mar 2015 23:45:31 -0000	1.6
@@ -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-tastypie/django-tastypie-0.9.15.ebuild,v 1.5 2015/03/06 22:16:56 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-tastypie/django-tastypie-0.9.15.ebuild,v 1.6 2015/03/08 23:45:31 pacho Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_6,2_7} )
@@ -11,7 +11,7 @@
 HOMEPAGE="http://pypi.python.org/pypi/django-tastypie/ https://github.com/toastdriven/django-tastypie"
 SRC_URI="https://github.com/toastdriven/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="bip doc digest lxml oauth test yaml"
 
 LICENSE="BSD"



1.9                  dev-python/django-tastypie/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-tastypie/ChangeLog?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-tastypie/ChangeLog?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-tastypie/ChangeLog?r1=1.8&r2=1.9

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-tastypie/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog	6 Mar 2015 22:16:56 -0000	1.8
+++ ChangeLog	8 Mar 2015 23:45:31 -0000	1.9
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/django-tastypie
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django-tastypie/ChangeLog,v 1.8 2015/03/06 22:16:56 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-tastypie/ChangeLog,v 1.9 2015/03/08 23:45:31 pacho Exp $
+
+  08 Mar 2015; Pacho Ramos <pacho@gentoo.org> django-tastypie-0.9.15.ebuild:
+  x86 stable, bug 540290
 
   06 Mar 2015; Pacho Ramos <pacho@gentoo.org> django-tastypie-0.9.15.ebuild:
   amd64 stable, bug 540290





^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-python/django-tastypie: django-tastypie-0.9.15.ebuild ChangeLog
@ 2015-04-08  8:04 Michal Gorny (mgorny)
  0 siblings, 0 replies; 6+ messages in thread
From: Michal Gorny (mgorny) @ 2015-04-08  8:04 UTC (permalink / raw
  To: gentoo-commits

mgorny      15/04/08 08:04:57

  Modified:             django-tastypie-0.9.15.ebuild ChangeLog
  Log:
  Drop old Python implementations
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)

Revision  Changes    Path
1.7                  dev-python/django-tastypie/django-tastypie-0.9.15.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-tastypie/django-tastypie-0.9.15.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-tastypie/django-tastypie-0.9.15.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-tastypie/django-tastypie-0.9.15.ebuild?r1=1.6&r2=1.7

Index: django-tastypie-0.9.15.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-tastypie/django-tastypie-0.9.15.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- django-tastypie-0.9.15.ebuild	8 Mar 2015 23:45:31 -0000	1.6
+++ django-tastypie-0.9.15.ebuild	8 Apr 2015 08:04:57 -0000	1.7
@@ -1,9 +1,9 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django-tastypie/django-tastypie-0.9.15.ebuild,v 1.6 2015/03/08 23:45:31 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-tastypie/django-tastypie-0.9.15.ebuild,v 1.7 2015/04/08 08:04:57 mgorny Exp $
 
 EAPI=5
-PYTHON_COMPAT=( python{2_6,2_7} )
+PYTHON_COMPAT=( python2_7 )
 
 inherit distutils-r1
 



1.10                 dev-python/django-tastypie/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-tastypie/ChangeLog?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-tastypie/ChangeLog?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-tastypie/ChangeLog?r1=1.9&r2=1.10

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-tastypie/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog	8 Mar 2015 23:45:31 -0000	1.9
+++ ChangeLog	8 Apr 2015 08:04:57 -0000	1.10
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/django-tastypie
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django-tastypie/ChangeLog,v 1.9 2015/03/08 23:45:31 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-tastypie/ChangeLog,v 1.10 2015/04/08 08:04:57 mgorny Exp $
+
+  08 Apr 2015; Michał Górny <mgorny@gentoo.org> django-tastypie-0.9.15.ebuild:
+  Drop old Python implementations
 
   08 Mar 2015; Pacho Ramos <pacho@gentoo.org> django-tastypie-0.9.15.ebuild:
   x86 stable, bug 540290





^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-python/django-tastypie: django-tastypie-0.9.15.ebuild ChangeLog
@ 2015-07-28  6:04 Patrick Lauer (patrick)
  0 siblings, 0 replies; 6+ messages in thread
From: Patrick Lauer (patrick) @ 2015-07-28  6:04 UTC (permalink / raw
  To: gentoo-commits

patrick     15/07/28 06:04:33

  Modified:             django-tastypie-0.9.15.ebuild ChangeLog
  Log:
  Disable tests and remove oauth2 useflag due to missing deps
  
  (Portage version: 2.2.20/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.8                  dev-python/django-tastypie/django-tastypie-0.9.15.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-tastypie/django-tastypie-0.9.15.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-tastypie/django-tastypie-0.9.15.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-tastypie/django-tastypie-0.9.15.ebuild?r1=1.7&r2=1.8

Index: django-tastypie-0.9.15.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-tastypie/django-tastypie-0.9.15.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- django-tastypie-0.9.15.ebuild	8 Apr 2015 08:04:57 -0000	1.7
+++ django-tastypie-0.9.15.ebuild	28 Jul 2015 06:04:33 -0000	1.8
@@ -1,18 +1,20 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django-tastypie/django-tastypie-0.9.15.ebuild,v 1.7 2015/04/08 08:04:57 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-tastypie/django-tastypie-0.9.15.ebuild,v 1.8 2015/07/28 06:04:33 patrick Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_7 )
 
 inherit distutils-r1
 
+RESTRICT="test"
+
 DESCRIPTION="A flexible and capable API layer for django utilising serialisers"
 HOMEPAGE="http://pypi.python.org/pypi/django-tastypie/ https://github.com/toastdriven/django-tastypie"
 SRC_URI="https://github.com/toastdriven/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 KEYWORDS="amd64 x86"
-IUSE="bip doc digest lxml oauth test yaml"
+IUSE="bip doc digest lxml test yaml"
 
 LICENSE="BSD"
 SLOT="0"
@@ -24,14 +26,11 @@
 	dev-python/defusedxml[${PYTHON_USEDEP}]
 	bip? ( dev-python/biplist[${PYTHON_USEDEP}] )
 	digest? ( dev-python/python-digest[${PYTHON_USEDEP}] )
-	oauth? ( dev-python/oauth2[${PYTHON_USEDEP}]
-		dev-python/django-oauth-plus[${PYTHON_USEDEP}] )
 	lxml? ( dev-python/lxml[${PYTHON_USEDEP}] )
 	yaml? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
 DEPEND="${RDEPEND}
 	dev-python/setuptools[${PYTHON_USEDEP}]
 	test? (
-		dev-python/django-oauth-plus[${PYTHON_USEDEP}]
 		dev-python/oauth2[${PYTHON_USEDEP}]
 		dev-python/lxml[${PYTHON_USEDEP}]
 		dev-python/python-digest[${PYTHON_USEDEP}]



1.12                 dev-python/django-tastypie/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-tastypie/ChangeLog?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-tastypie/ChangeLog?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/django-tastypie/ChangeLog?r1=1.11&r2=1.12

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/django-tastypie/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog	7 Jun 2015 13:10:43 -0000	1.11
+++ ChangeLog	28 Jul 2015 06:04:33 -0000	1.12
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/django-tastypie
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/django-tastypie/ChangeLog,v 1.11 2015/06/07 13:10:43 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/django-tastypie/ChangeLog,v 1.12 2015/07/28 06:04:33 patrick Exp $
+
+  28 Jul 2015; Patrick Lauer <patrick@gentoo.org> django-tastypie-0.9.15.ebuild:
+  Disable tests and remove oauth2 useflag due to missing deps
 
   07 Jun 2015; Justin Lecher <jlec@gentoo.org> metadata.xml:
   Add github to remote-id in metadata.xml





^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2015-07-28  6:04 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-30 21:17 [gentoo-commits] gentoo-x86 commit in dev-python/django-tastypie: django-tastypie-0.9.15.ebuild ChangeLog Mike Gilbert (floppym)
  -- strict thread matches above, loose matches on Subject: below --
2013-06-06  9:32 Ian Delaney (idella4)
2015-03-06 22:16 Pacho Ramos (pacho)
2015-03-08 23:45 Pacho Ramos (pacho)
2015-04-08  8:04 Michal Gorny (mgorny)
2015-07-28  6:04 Patrick Lauer (patrick)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox