From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2116A138359 for ; Wed, 30 Sep 2020 18:16:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6655AE085E; Wed, 30 Sep 2020 18:16:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 497B0E085E for ; Wed, 30 Sep 2020 18:16:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2F48C335D2F for ; Wed, 30 Sep 2020 18:16:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D4ECE376 for ; Wed, 30 Sep 2020 18:16:19 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1601489749.7324be9691beb553601ed80bbb74963f75fbac5f.williamh@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/djangorestframework/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/djangorestframework/Manifest dev-python/djangorestframework/djangorestframework-3.11.1.ebuild X-VCS-Directories: dev-python/djangorestframework/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 7324be9691beb553601ed80bbb74963f75fbac5f X-VCS-Branch: master Date: Wed, 30 Sep 2020 18:16:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c0c73646-ca16-41c1-9319-2790e3bc9296 X-Archives-Hash: f73f6917cb17ccde2c25ecdd6a62e0e8 commit: 7324be9691beb553601ed80bbb74963f75fbac5f Author: William Hubbs gentoo org> AuthorDate: Wed Sep 30 18:13:38 2020 +0000 Commit: William Hubbs gentoo org> CommitDate: Wed Sep 30 18:15:49 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7324be96 dev-python/djangorestframework: 3.11.1 bump Closes: https://bugs.gentoo.org/742485 Signed-off-by: William Hubbs gentoo.org> dev-python/djangorestframework/Manifest | 1 + .../djangorestframework-3.11.1.ebuild | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) diff --git a/dev-python/djangorestframework/Manifest b/dev-python/djangorestframework/Manifest index 05c4d0f587d..be2af0c97d5 100644 --- a/dev-python/djangorestframework/Manifest +++ b/dev-python/djangorestframework/Manifest @@ -1 +1,2 @@ DIST djangorestframework-3.11.0.tar.gz 791688 BLAKE2B 5a3cb8a25bd400d4e030bf960d227a2cfbf4fd306b0aab6f0f6bfec4dcfa59d566c3090ab660726a15f5fc36e0c93d3163008f7a64576af91448df7d1e3f4d87 SHA512 87f02919df6a136198e6551c6d525b3cc57299581f6c098258f81d7c9096b851b9fc2af64e8ffc161178ef811f50eb0d3f068697702b73601036ea33202bbee0 +DIST djangorestframework-3.11.1.tar.gz 804357 BLAKE2B e069b7ccf60d124281f37e5533dcd28b9f4402ab7b875ff62d3c0aed72060d0ee40c5905f09225367da91a812b3be1d4bec47343b9643380c4f583ee70d8ea98 SHA512 3063441f965a98c2bdd8279d3fc300d45af032094590b097cfe31a28fdaaf1772391ae023d5229537c1f6e7ff01405e604123bf9c665cd902a26e1cf94a8785f diff --git a/dev-python/djangorestframework/djangorestframework-3.11.1.ebuild b/dev-python/djangorestframework/djangorestframework-3.11.1.ebuild new file mode 100644 index 00000000000..def354feb67 --- /dev/null +++ b/dev-python/djangorestframework/djangorestframework-3.11.1.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8} ) +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} +dev-python/setuptools[${PYTHON_USEDEP}]"