Nicolas Goaziou writes: > Hello, > > Pierre Langlois writes: > >> In the meantime, we can either revert the update or just fix it >> downstream temporarily. The following patch works for me for example: >> >> diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm >> index eaa0fc8d2a..e65666a6ac 100644 >> --- a/gnu/packages/emacs-xyz.scm >> +++ b/gnu/packages/emacs-xyz.scm >> @@ -10296,6 +10296,11 @@ passive voice.") >> (arguments >> `(#:phases >> (modify-phases %standard-phases >> + (add-after 'unpack 'fix-org-version >> + (lambda _ >> + (substitute* "org-version.el" >> + (("org-release \"\"") (string-append "org-release \"" ,version "\""))) >> + #t)) >> (add-after 'install 'install-documentation >> (lambda* (#:key outputs #:allow-other-keys) >> (let* ((share (string-append (assoc-ref outputs "out") "/share")) >> >> I'm more tempted to add this little fix rather than revert the update, >> given we'd also have to revert org-contrib. > > Indeed. LGTM. Thank you! Great! I've just pushed with commit cd11f6a2bd703f0859aec05c0873186b734d6d74, adding a comment to remove this phase when the issue is resolved upstream. Thanks! Pierre