all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Josh Holland <josh@inv.alid.pw>
To: 35780@debbugs.gnu.org
Cc: Josh Holland <josh@inv.alid.pw>
Subject: bug#35780: [PATCH] attempt to fix polyglossia
Date: Fri, 17 May 2019 22:23:51 +0100	[thread overview]
Message-ID: <20190517212351.8855-1-josh@inv.alid.pw> (raw)
In-Reply-To: <20190517165152.GA5797@spica.localdomain>

---
I had a quick look into fixing this myself, and made a little bit
of progress.  Not being that familiar with how things work yet,
I'm going on what I can guess by looking at gnu/packages/tex.scm,
guix/build-system/texlive.scm and guix/build/texlive-build-system.scm
so I may well be misinterpreting some things.

The source for polyglossia comes in a single file, polyglossia.dtx.
The README embedded within it says to extract the files by running
xetex or luatex on it.  I tried to convince the build system to do
this by this patch, which may or may not have been the right approach.
It does at least get a new error:

Generating file(s) ../README 
! I can't write on file `../README.tex'.

It appears to be trying to write its README file to the directory above
the build directory, which is failing. Is there a way to make this
directory writeable, or to stop the build system from trying to generate
the README there?

 gnu/packages/tex.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index c3ce80c8f5..0894148501 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -3249,7 +3249,8 @@ array environments; verbatim handling; and syntax diagrams.")
                (base32
                 "03ma58z3ypsbp7zgkzb1ylpn2ygr27cxzkf042ns0rif4g8s491f"))))
     (build-system texlive-build-system)
-    (arguments '(#:tex-directory "latex/polyglossia"))
+    (arguments '(#:tex-directory "latex/polyglossia"
+                 #:build-targets '("polyglossia.dtx")))
     (home-page "https://www.ctan.org/pkg/polyglossia")
     (synopsis "Alternative to babel for XeLaTeX and LuaLaTeX")
     (description
-- 
2.21.0

  reply	other threads:[~2019-05-17 21:25 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-05-17 16:51 bug#35780: texlive-latex-polyglossia package empty Josh Holland
2019-05-17 21:23 ` Josh Holland [this message]
2019-05-18  3:50   ` bug#35780: [PATCH] attempt to fix polyglossia Ricardo Wurmus
2019-06-21 15:40     ` Josh Holland
2022-05-14  5:22       ` bug#35780: texlive-latex-polyglossia package empty Maxim Cournoyer

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=20190517212351.8855-1-josh@inv.alid.pw \
    --to=josh@inv.alid.pw \
    --cc=35780@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.