From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53092) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e12Jz-0001Nr-Mz for guix-patches@gnu.org; Sat, 07 Oct 2017 23:32:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e12Ju-0005fr-QN for guix-patches@gnu.org; Sat, 07 Oct 2017 23:32:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:46665) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1e12Ju-0005fH-Nz for guix-patches@gnu.org; Sat, 07 Oct 2017 23:32:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1e12Ju-00026Z-FK for guix-patches@gnu.org; Sat, 07 Oct 2017 23:32:02 -0400 Subject: [bug#28726] [PATCH 1/5] gnu: django: Fix the build for python-django-gravatar2. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:52912) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e12Iz-00010P-B7 for guix-patches@gnu.org; Sat, 07 Oct 2017 23:31:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e12Iu-0005K5-FD for guix-patches@gnu.org; Sat, 07 Oct 2017 23:31:05 -0400 Received: from mail-wm0-x22f.google.com ([2a00:1450:400c:c09::22f]:56614) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1e12Iu-0005Jo-8D for guix-patches@gnu.org; Sat, 07 Oct 2017 23:31:00 -0400 Received: by mail-wm0-x22f.google.com with SMTP id l68so15537946wmd.5 for ; Sat, 07 Oct 2017 20:30:59 -0700 (PDT) Received: from [192.168.0.10] (tal33-3-82-233-82-24.fbx.proxad.net. [82.233.82.24]) by smtp.googlemail.com with ESMTPSA id h5sm7337476wrb.89.2017.10.07.20.30.57 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 07 Oct 2017 20:30:57 -0700 (PDT) References: <20171006212026.5797a685@cbaines.net> <20171006202702.1511-1-mail@cbaines.net> From: Cyril Roelandt Message-ID: Date: Sun, 8 Oct 2017 05:30:56 +0200 MIME-Version: 1.0 In-Reply-To: <20171006202702.1511-1-mail@cbaines.net> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 28726@debbugs.gnu.org On 10/06/2017 10:26 PM, Christopher Baines wrote: > The build was failing as the Django settings were not configured for the > tests. The relevant files are missing from the release on PyPI, so switch to > using a more complete source release. Also update the package at the same > time. What are these missing files? Couldn't we add them using a patch? Is there a reason why they were not included in PyPI, or is this a bug? The reason why we'd like to use PyPI rather than other URLs is that, when using PyPI, "guix refresh" is able to find new releases automatically. Cyril.