From fb8d425f507403101d323603fe37a50aaa18fecf Mon Sep 17 00:00:00 2001 From: Johann Schmitz Date: Sun, 12 Oct 2014 10:26:19 +0200 Subject: [PATCH] Version bump of django-rest-framework Package-Manager: portage-2.2.8-r2 --- dev-python/django-rest-framework/ChangeLog | 9 +++++ dev-python/django-rest-framework/Manifest | 1 + .../django-rest-framework-2.4.3.ebuild | 36 +++++++++++++++++++ 3 files changed, 46 insertions(+) create mode 100644 dev-python/django-rest-framework/ChangeLog create mode 100644 dev-python/django-rest-framework/django-rest-framework-2.4.3.ebuild diff --git a/dev-python/django-rest-framework/ChangeLog b/dev-python/django-rest-framework/ChangeLog new file mode 100644 index 00000000..6574dd0d --- /dev/null +++ b/dev-python/django-rest-framework/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for dev-python/django-rest-framework +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: $ + +*django-rest-framework-2.4.3 (12 Oct 2014) + + 12 Oct 2014; Johann Schmitz + +django-rest-framework-2.4.3.ebuild: + Version bump of django-rest-framework diff --git a/dev-python/django-rest-framework/Manifest b/dev-python/django-rest-framework/Manifest index 4e3f4c2b..df60704e 100644 --- a/dev-python/django-rest-framework/Manifest +++ b/dev-python/django-rest-framework/Manifest @@ -1 +1,2 @@ DIST django-rest-framework-2.3.10.tar.gz 917007 SHA256 2377e389f91398012fdcee9be6694d1a63b05cd8f477803e67eb8fa3b9989b26 SHA512 ad8084b9a8e265dfad6eaf53c6c22801b6fc9b839bd142251e1305f44a9db8db95a7daedc1ab3006b2f3da83fabaf977c3ee87c1cca3f441ca990dbdc744c48d WHIRLPOOL da1739a33c2c87663380ca4be62031ee9af1f9881c4164583b132ff5da324464783483ac3c0ad81b4cfa7c1f010c69f502c70b2009ae55cdce70ede990970321 +DIST django-rest-framework-2.4.3.tar.gz 1698584 SHA256 9ddec69c706078c1bd5a04d3a6c1b93e88cfbcdb4ac9c5fbd1174317ca683de3 SHA512 65842ea4fa560656a201387d62a95c39f488aaf45088f16fea61c7d4e03d2b7ae5468b215756e58625179bc0fd6e73a1d05ec165227ff3dd8f19b3aef3ad7eee WHIRLPOOL 724911583b761e52065151149b8aac5457029892cf3ee26610e9cf7b63ab196de56f40838c9c68a527cf4f2dad38d612dbceb66e1c5d00565c2437a31a176ea3 diff --git a/dev-python/django-rest-framework/django-rest-framework-2.4.3.ebuild b/dev-python/django-rest-framework/django-rest-framework-2.4.3.ebuild new file mode 100644 index 00000000..16565931 --- /dev/null +++ b/dev-python/django-rest-framework/django-rest-framework-2.4.3.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 ) # ,3_2,3_3,3_4 due to dependency to oauth-plus + +inherit distutils-r1 + +DESCRIPTION="A powerful and flexible toolkit that makes it easy to build Web APIs using Django" +HOMEPAGE="http://django-rest-framework.org/" +SRC_URI="https://github.com/tomchristie/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +IUSE="browsable-api oauth xml yaml" + +DEPEND=">=dev-python/django-1.4.2[${PYTHON_USEDEP}]" +RDEPEND="${DEPEND} + browsable-api? ( + >=dev-python/markdown-2.1.0[${PYTHON_USEDEP}] + ) + oauth? ( + >=dev-python/django-oauth-plus-2.0[${PYTHON_USEDEP}] + >=dev-python/oauth2-1.5.211[${PYTHON_USEDEP}] + ) + xml? ( dev-python/defusedxml[${PYTHON_USEDEP}] ) + yaml? ( >=dev-python/pyyaml-3.10[${PYTHON_USEDEP}] ) +" + +python_test() { + DISTUTILS_NO_PARALLEL_BUILD=1 ${EPYTHON} rest_framework/runtests/runtests.py || die +}