Incomplete python-django-compressor package

  • Open
  • quality assurance status badge
Details
2 participants
  • Danny Milosavljevic
  • Evgeny Pisemsky
Owner
unassigned
Submitted by
Evgeny Pisemsky
Severity
important

Debbugs page

E
E
Evgeny Pisemsky wrote on 11 Feb 11:12 -0800
(address . bug-guix@gnu.org)
87pljol2hv.fsf@pisemsky.site
For some reason installed package lacks templates and other media
files listed in the source's MANIFEST.in, which makes it unusable.

Tests can't prove it because they are run in the source directory.

Manual install from source into venv with =pip install .= works as
expected, so this could be a bug in python/pyproject build system.
E
E
Evgeny Pisemsky wrote on 28 Feb 02:33 -0800
Possibly a bug in python/pyproject build system
(address . control@debbugs.gnu.org)
87v7su4auq.fsf@pisemsky.site
severity 76211 important
D
D
Danny Milosavljevic wrote on 25 Mar 19:06 -0700
Re: bug#76211: Incomplete python-django-compressor package
(name . Evgeny Pisemsky)(address . mail@pisemsky.site)(address . 76211@debbugs.gnu.org)
87cye4eeau.fsf@friendly-machines.com
Hi,

MANIFEST.in contains a list of files that are not temp files.
It's basically a poor-man's version control staging. When you invoke
"python3 setup.py sdist" (which creates a *source* distribution),
that will include all the files specified in MANIFEST.in .

As for what happens on installation (which is a different thing),
whether something is in MANIFEST.in or not shouldn't really change
anything by default (except when you set include_package_data--and
even then only in some cases).
It's interesting that for pip install, that does install templates.
What setup.py command does that use?
Which directory exactly does it put the templates in?

Are the templates and other media required for using the package as part
of a program as an end user--or only if you want to *develop* a new
package that is using python-django-compressor?

Depending on the answer to that, setup.py's include_package_data=True

Alternatively, setup.py's data_files could be set. It would also be a
lot less opaque that way.

especially footnote 2 there.
E
E
Evgeny Pisemsky wrote 40 hours ago
(name . Danny Milosavljevic)(address . dannym@friendly-machines.com)(address . 76211@debbugs.gnu.org)
875xjmjig3.fsf@pisemsky.site
Hi!

Toggle quote (3 lines)
> It's interesting that for pip install, that does install templates.
> What setup.py command does that use?

This is what pip3 in virtualenv says:

#+begin_example
Using legacy 'setup.py install' for django-compressor, since package 'wheel' is not installed.
Installing collected packages: rjsmin, rcssmin, typing-extensions, sqlparse, asgiref, Django, django-appconf, django-compressor
Running setup.py install for django-compressor ... done
#+end_example

Everything with pure python, i.e. =guix shell python --pure=.

Toggle quote (2 lines)
> Which directory exactly does it put the templates in?

After =pip3 install .= from local source in virtualenv:

#+begin_example
env/lib/python3.10/site-packages/compressor/templates/
env/lib/python3.10/site-packages/compressor/templates/compressor
env/lib/python3.10/site-packages/compressor/templates/compressor/css_file.html
env/lib/python3.10/site-packages/compressor/templates/compressor/js_preload.html
env/lib/python3.10/site-packages/compressor/templates/compressor/css_preload.html
env/lib/python3.10/site-packages/compressor/templates/compressor/js_inline.html
env/lib/python3.10/site-packages/compressor/templates/compressor/js_file.html
env/lib/python3.10/site-packages/compressor/templates/compressor/css_inline.html
#+end_example

Toggle quote (4 lines)
> Are the templates and other media required for using the package as part
> of a program as an end user--or only if you want to *develop* a new
> package that is using python-django-compressor?

Templates are definitely required in runtime. I have a guixified
django project that started throwing error after upgrade - that's how
I spotted this problem. I fixed it with copy-recursively in phases.

As for suggested solutions, the main problem here is that everything
works fine in "normal" python ecosystem, but not in guix build systems.
?
Your comment

Commenting via the web interface is currently disabled.

To comment on this conversation send an email to 76211@patchwise.org

To respond to this issue using the mumi CLI, first switch to it
mumi current 76211
Then, you may apply the latest patchset in this issue (with sign off)
mumi am -- -s
Or, compose a reply to this issue
mumi compose
Or, send patches to this issue
mumi send-email *.patch