From: Simon Tournier <zimon.toutoune@gmail.com>
To: Gabriel Wicki <gabriel@erlikon.ch>
Cc: 73816@debbugs.gnu.org
Subject: bug#73816: python-django's manage.py tries to use a hard-coded python executable
Date: Fri, 13 Dec 2024 12:57:44 +0100 [thread overview]
Message-ID: <87bjxf6bif.fsf@gmail.com> (raw)
In-Reply-To: <yb2zy4gw4qtgdi7rqqhy4ix52ljbspifh7l2mvstwcodfglfb4@fvmb24btljly>
Hi,
On Wed, 11 Dec 2024 at 12:48, Gabriel Wicki <gabriel@erlikon.ch> wrote:
> If you have any idea on how to patch that and could point me in that
> direction, I'll gladly send in a patch or two!
It needs to replace the phases something like:
--8<---------------cut here---------------start------------->8---
1 file changed, 16 insertions(+)
gnu/packages/django.scm | 16 ++++++++++++++++
modified gnu/packages/django.scm
@@ -99,6 +99,22 @@ (define-public python-django-4.2
(setenv "PYTHONPATH" "..")
(apply invoke "python" "runtests.py" test-flags))
(format #t "test suite not run~%"))))
+ (replace 'patch-source-shebangs
+ (lambda _
+ (for-each patch-shebang
+ (find-files "."
+ (lambda (file stat)
+ (and (eq? 'regular (stat:type stat))
+ (not (string-suffix? "py-tpl" file))))
+ #:stat lstat))))
+ (replace 'patch-generated-file-shebangs
+ (lambda _
+ (for-each patch-shebang
+ (find-files "."
+ (lambda (file stat)
+ (and (eq? 'regular (stat:type stat))
+ (not (string-suffix? "py-tpl" file))))
+ #:stat lstat))))
;; XXX: The 'wrap' phase adds native inputs as runtime dependencies,
;; see <https://bugs.gnu.org/25235>. The django-admin script typically
;; runs in an environment that has Django and its dependencies on
--8<---------------cut here---------------end--------------->8---
Feel free to submit a patch. :-)
Cheers,
simon
prev parent reply other threads:[~2024-12-13 11:59 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-15 9:48 bug#73816: python-django's manage.py tries to use a hard-coded python executable Gabriel Wicki
2024-12-10 15:59 ` Simon Tournier
2024-12-11 11:48 ` Gabriel Wicki
2024-12-13 11:57 ` Simon Tournier [this message]
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
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87bjxf6bif.fsf@gmail.com \
--to=zimon.toutoune@gmail.com \
--cc=73816@debbugs.gnu.org \
--cc=gabriel@erlikon.ch \
/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 public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).