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 779DF138359 for ; Thu, 22 Oct 2020 07:39:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A8F3DE088B; Thu, 22 Oct 2020 07:39:31 +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 612FCE088B for ; Thu, 22 Oct 2020 07:39:31 +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 C95FD335DB4 for ; Thu, 22 Oct 2020 07:39:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4E8CE33A for ; Thu, 22 Oct 2020 07:39:28 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1603352364.30ec43cb326646af86acea3186be5e5bfd5f2ca2.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/django/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/django/django-3.0.10-r1.ebuild dev-python/django/django-3.0.10.ebuild dev-python/django/django-3.1.1-r1.ebuild dev-python/django/django-3.1.1.ebuild dev-python/django/django-3.1.2-r1.ebuild dev-python/django/django-3.1.2.ebuild X-VCS-Directories: dev-python/django/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 30ec43cb326646af86acea3186be5e5bfd5f2ca2 X-VCS-Branch: master Date: Thu, 22 Oct 2020 07:39:28 +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: d20ba3d1-552b-4262-9d37-289b6771930c X-Archives-Hash: 2c16cf6427576c7cad94e82d49c080ba commit: 30ec43cb326646af86acea3186be5e5bfd5f2ca2 Author: Michał Górny gentoo org> AuthorDate: Thu Oct 22 07:05:16 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Oct 22 07:39:24 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30ec43cb dev-python/django: Unbind asgiref version Closes: https://bugs.gentoo.org/750695 Signed-off-by: Michał Górny gentoo.org> .../django/{django-3.0.10.ebuild => django-3.0.10-r1.ebuild} | 7 +++++++ dev-python/django/{django-3.1.1.ebuild => django-3.1.1-r1.ebuild} | 7 +++++++ dev-python/django/{django-3.1.2.ebuild => django-3.1.2-r1.ebuild} | 7 +++++++ 3 files changed, 21 insertions(+) diff --git a/dev-python/django/django-3.0.10.ebuild b/dev-python/django/django-3.0.10-r1.ebuild similarity index 93% rename from dev-python/django/django-3.0.10.ebuild rename to dev-python/django/django-3.0.10-r1.ebuild index 44093b1ebee..58de4970519 100644 --- a/dev-python/django/django-3.0.10.ebuild +++ b/dev-python/django/django-3.0.10-r1.ebuild @@ -53,6 +53,13 @@ PATCHES=( distutils_enable_sphinx docs --no-autodoc +src_prepare() { + # do not bind to a specific version + # https://bugs.gentoo.org/750695 + sed -i -e 's:asgiref ~= 3.2:asgiref:' setup.py || die + distutils-r1_src_prepare +} + python_test() { # Tests have non-standard assumptions about PYTHONPATH, # and don't work with ${BUILD_DIR}/lib. diff --git a/dev-python/django/django-3.1.1.ebuild b/dev-python/django/django-3.1.1-r1.ebuild similarity index 93% rename from dev-python/django/django-3.1.1.ebuild rename to dev-python/django/django-3.1.1-r1.ebuild index e13533790e6..858be578907 100644 --- a/dev-python/django/django-3.1.1.ebuild +++ b/dev-python/django/django-3.1.1-r1.ebuild @@ -53,6 +53,13 @@ PATCHES=( distutils_enable_sphinx docs --no-autodoc +src_prepare() { + # do not bind to a specific version + # https://bugs.gentoo.org/750695 + sed -i -e 's:asgiref ~= 3.2.10:asgiref:' setup.cfg || die + distutils-r1_src_prepare +} + python_test() { # Tests have non-standard assumptions about PYTHONPATH, # and don't work with ${BUILD_DIR}/lib. diff --git a/dev-python/django/django-3.1.2.ebuild b/dev-python/django/django-3.1.2-r1.ebuild similarity index 93% rename from dev-python/django/django-3.1.2.ebuild rename to dev-python/django/django-3.1.2-r1.ebuild index e13533790e6..858be578907 100644 --- a/dev-python/django/django-3.1.2.ebuild +++ b/dev-python/django/django-3.1.2-r1.ebuild @@ -53,6 +53,13 @@ PATCHES=( distutils_enable_sphinx docs --no-autodoc +src_prepare() { + # do not bind to a specific version + # https://bugs.gentoo.org/750695 + sed -i -e 's:asgiref ~= 3.2.10:asgiref:' setup.cfg || die + distutils-r1_src_prepare +} + python_test() { # Tests have non-standard assumptions about PYTHONPATH, # and don't work with ${BUILD_DIR}/lib.