From: Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de>
To: 20765@debbugs.gnu.org
Subject: bug#20765: Python .egg files must not be compressed
Date: Tue, 13 Oct 2015 15:38:38 +0200 [thread overview]
Message-ID: <idjpp0izy5d.fsf@bimsb-sys02.mdc-berlin.net> (raw)
In-Reply-To: <87zj4btfuo.fsf@gnu.org>
I stumbled upon a similar problem when building other Python packages.
For ‘python-patsy’, for example, I found that an egg archive is produced
no matter what I put in ‘setup.cfg’. As far as I can tell, “zip_ok”
defaults to “0” in recent versions of setuptools, so I don’t think the
fix you used on ‘python-pillow’ would have much effect in general.
I could only coerce the build system to install plain files by adding a
build phase like this:
(add-after 'unpack 'prevent-generation-of-egg-archive
(lambda _
(substitute* "setup.py"
(("from setuptools import setup")
"from distutils.core import setup"))
#t))
It turns out that when ‘setuptools.setup’ is used egg archives are
built, when ‘distutils.core.setup’ is used, however, this does not
happen.
~~ Ricardo
next prev parent reply other threads:[~2015-10-13 13:39 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-06-07 20:37 bug#20765: Python .egg files must not be compressed Ludovic Courtès
2015-07-20 21:22 ` Ludovic Courtès
2015-10-13 13:38 ` Ricardo Wurmus [this message]
2015-10-13 14:10 ` Ludovic Courtès
2015-10-13 14:32 ` Ricardo Wurmus
2016-02-09 4:54 ` bug#20765: (no subject) Leo Famulari
2016-02-09 21:37 ` Ludovic Courtès
2016-04-06 18:17 ` Andreas Enge
2016-04-06 20:52 ` bug#20765: Compressed eggs (Python) Ludovic Courtès
2016-04-18 19:21 ` Hartmut Goebel
2016-12-17 18:43 ` Leo Famulari
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=idjpp0izy5d.fsf@bimsb-sys02.mdc-berlin.net \
--to=ricardo.wurmus@mdc-berlin.de \
--cc=20765@debbugs.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.