diff options
author | 2021-01-30 16:30:56 +0100 | |
---|---|---|
committer | 2021-01-30 16:30:56 +0100 | |
commit | e4e33679bbf5d6065d98579bd08a2eef2bcd06f3 (patch) | |
tree | b5c4bb838eb113a4a7bf10c65250a4ff636eb872 /dev-python | |
parent | dev-python/jsonrpclib: add python3_9 support (live) (diff) | |
download | gentoo-e4e33679bbf5d6065d98579bd08a2eef2bcd06f3.tar.gz gentoo-e4e33679bbf5d6065d98579bd08a2eef2bcd06f3.tar.bz2 gentoo-e4e33679bbf5d6065d98579bd08a2eef2bcd06f3.zip |
dev-python/djangorestframework: bump to version 3.12.2
Also added python3_9 support.
Bug: https://bugs.gentoo.org/745933
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/djangorestframework/Manifest | 1 | ||||
-rw-r--r-- | dev-python/djangorestframework/djangorestframework-3.12.2.ebuild | 21 |
2 files changed, 22 insertions, 0 deletions
diff --git a/dev-python/djangorestframework/Manifest b/dev-python/djangorestframework/Manifest index e4a66969576d..e5199ea40695 100644 --- a/dev-python/djangorestframework/Manifest +++ b/dev-python/djangorestframework/Manifest @@ -1 +1,2 @@ DIST djangorestframework-3.11.1.tar.gz 804357 BLAKE2B e069b7ccf60d124281f37e5533dcd28b9f4402ab7b875ff62d3c0aed72060d0ee40c5905f09225367da91a812b3be1d4bec47343b9643380c4f583ee70d8ea98 SHA512 3063441f965a98c2bdd8279d3fc300d45af032094590b097cfe31a28fdaaf1772391ae023d5229537c1f6e7ff01405e604123bf9c665cd902a26e1cf94a8785f +DIST djangorestframework-3.12.2.tar.gz 842597 BLAKE2B f450d55ade3d9d2d21bedba50c8dd6437bde383f6b30a2987a1a4fd224b6a72a03fdaf878ce72f02c2791fe2ebee02f3d9e0915d979e4f70e2f0cb9615d4a299 SHA512 d3a43212a4fb2caec27f815af0c52f3c0d2c9933febfea246429b24640b3cf23668640a4c3ddb3e3453e74a904a2b439443bb01cf24b664d19e896c353f2cba3 diff --git a/dev-python/djangorestframework/djangorestframework-3.12.2.ebuild b/dev-python/djangorestframework/djangorestframework-3.12.2.ebuild new file mode 100644 index 000000000000..bcc4ec0825e1 --- /dev/null +++ b/dev-python/djangorestframework/djangorestframework-3.12.2.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) + +inherit distutils-r1 + +DESCRIPTION="Web APIs with django made easy" +HOMEPAGE="https://www.django-rest-framework.org" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=">=dev-python/django-1.11[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND}" + +distutils_enable_tests setup.py |