unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Marius Bakke <marius@gnu.org>
To: 48622@debbugs.gnu.org
Subject: [bug#48622] [PATCH core-updates 27/29] gnu: texlive-hyperref: Don't propagate texlive-oberdiek.
Date: Mon, 24 May 2021 16:43:31 +0200	[thread overview]
Message-ID: <20210524144333.15566-27-marius@gnu.org> (raw)
In-Reply-To: <20210524144333.15566-1-marius@gnu.org>

* gnu/packages/tex.scm (texlive-hyperref)[propagated-inputs]: Remove
TEXLIVE-OBERDIEK.  Add TEXLIVE-GENERIC-ATBEGSHI, TEXLIVE-GENERIC-BITSET,
TEXLIVE-GENERIC-ETEXCMDS, TEXLIVE-GENERIC-GETTITLESTRING,
TEXLIVE-GENERIC-IFTEX, TEXLIVE-GENERIC-INFWARERR, TEXLIVE-GENERIC-INTCALC,
TEXLIVE-GENERIC-KVDEFINEKEYS, TEXLIVE-GENERIC-LTXCMDS,
TEXLIVE-GENERIC-PDFESCAPE, TEXLIVE-LATEX-AUXHOOK, TEXLIVE-LATEX-ATVERYEND,
TEXLIVE-LATEX-HYCOLOR, TEXLIVE-LATEX-KVOPTIONS, TEXLIVE-LATEX-LETLTXMACRO,
TEXLIVE-LATEX-PDFTEXCMDS, TEXLIVE-LATEX-REFCOUNT, and
TEXLIVE-LATEX-RERUNFILECHECK.
---
 gnu/packages/tex.scm | 20 +++++++++++++++++++-
 1 file changed, 19 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 2b1edf8ebc..c99b7dce33 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -3119,7 +3119,25 @@ XML, using UTF-8 or a suitable 8-bit encoding.")
              (add-after 'unpack 'chdir
                (lambda _ (chdir "source/latex/hyperref") #t))))))
       (propagated-inputs
-       `(("texlive-oberdiek" ,texlive-oberdiek) ; for ltxcmds.sty
+       `(("texlive-generic-atbegshi" ,texlive-generic-atbegshi)
+         ("texlive-generic-bitset" ,texlive-generic-bitset)
+         ("texlive-generic-etexcmds" ,texlive-generic-etexcmds)
+         ("texlive-generic-gettitlestring" ,texlive-generic-gettitlestring)
+         ("texlive-generic-iftex" ,texlive-generic-iftex)
+         ("texlive-generic-infwarerr" ,texlive-generic-infwarerr)
+         ("texlive-generic-intcalc" ,texlive-generic-intcalc)
+         ("texlive-generic-kvdefinekeys" ,texlive-generic-kvdefinekeys)
+         ("texlive-generic-kvsetkeys" ,texlive-generic-kvsetkeys)
+         ("texlive-generic-ltxcmds" ,texlive-generic-ltxcmds)
+         ("texlive-generic-pdfescape" ,texlive-generic-pdfescape)
+         ("texlive-latex-auxhook" ,texlive-latex-auxhook)
+         ("texlive-latex-atveryend" ,texlive-latex-atveryend)
+         ("texlive-latex-hycolor" ,texlive-latex-hycolor)
+         ("texlive-latex-kvoptions" ,texlive-latex-kvoptions)
+         ("texlive-latex-letltxmacro" ,texlive-latex-letltxmacro)
+         ("texlive-latex-pdftexcmds" ,texlive-latex-pdftexcmds)
+         ("texlive-latex-refcount" ,texlive-latex-refcount)
+         ("texlive-latex-rerunfilecheck" ,texlive-latex-rerunfilecheck)
          ("texlive-latex-url" ,texlive-latex-url)))
       (home-page "https://www.ctan.org/pkg/hyperref")
       (synopsis "Extensive support for hypertext in LaTeX")
-- 
2.31.1





  parent reply	other threads:[~2021-05-24 14:46 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-24 14:40 [bug#48622] [PATCH core-updates 00/29] TeX Live 2020 Marius Bakke
2021-05-24 14:43 ` [bug#48622] [PATCH core-updates 01/29] gnu: TeX Live: Update to 2020.0 Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 02/29] gnu: Add texlive-latex-refcount Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 03/29] gnu: Add texlive-latex-bookmark Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 04/29] gnu: dblatex: Update to 0.3.12 Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 05/29] gnu: simple-texlive-package: Fix shebang patching Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 06/29] gnu: Add texlive-latex-atveryend Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 07/29] gnu: Add texlive-latex-auxhook Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 08/29] gnu: Add texlive-latex-epstopdf-pkg Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 09/29] gnu: Add texlive-latex-hycolor Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 10/29] gnu: Add texlive-generic-infwarerr Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 11/29] gnu: Add texlive-generic-ltxcmds Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 12/29] gnu: Add texlive-latex-pdftexcmds Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 13/29] gnu: Add texlive-latex-letltxmacro Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 14/29] gnu: Add texlive-generic-atbegshi Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 15/29] gnu: Add texlive-generic-intcalc Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 16/29] gnu: Add texlive-generic-bigintcalc Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 17/29] gnu: Add texlive-generic-bitset Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 18/29] gnu: Add texlive-generic-etexcmds Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 19/29] gnu: Add texlive-generic-gettitlestring Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 20/29] gnu: Add texlive-generic-kvdefinekeys Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 21/29] gnu: Add texlive-generic-kvsetkeys Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 22/29] gnu: Add texlive-latex-kvoptions Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 23/29] gnu: Add texlive-generic-pdfescape Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 24/29] gnu: Add texlive-generic-uniquecounter Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 25/29] gnu: Add texlive-latex-rerunfilecheck Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 26/29] gnu: texlive-base: Propagate texlive-kpathsea Marius Bakke
2021-05-24 14:43   ` Marius Bakke [this message]
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 28/29] gnu: texlive-graphics-def: Propagate missing dependency Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 29/29] gnu: dblatex: Remove unused TeX inputs Marius Bakke
2021-05-24 20:09   ` [bug#48622] [PATCH core-updates 30/29] gnu: Add texlive-tex-gyre Marius Bakke
2021-05-24 20:09     ` [bug#48622] [PATCH core-updates 31/29] gnu: Add texlive-latex-etoc Marius Bakke
2021-05-24 20:09     ` [bug#48622] [PATCH core-updates 32/29] gnu: Add texlive-latex-hanging Marius Bakke
2021-05-24 20:09     ` [bug#48622] [PATCH core-updates 33/29] gnu: Add texlive-latex-newunicodechar Marius Bakke
2021-05-24 20:09     ` [bug#48622] [PATCH core-updates 34/29] gnu: Add texlive-latex-stackengine Marius Bakke
2021-05-24 20:09     ` [bug#48622] [PATCH core-updates 35/29] gnu: Add texlive-latex-tocloft Marius Bakke
2021-05-24 20:09     ` [bug#48622] [PATCH core-updates 36/29] gnu: texlive-latex-tools: Provide array-2016-10-06.sty Marius Bakke
2021-05-24 20:09     ` [bug#48622] [PATCH core-updates 37/29] gnu: hypre: Update to 2020.0 Marius Bakke
2021-05-24 20:13 ` [bug#48622] [PATCH core-updates 00/29] TeX Live 2020 Marius Bakke
2021-06-05 22:26 ` bug#48622: " Marius Bakke

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=20210524144333.15566-27-marius@gnu.org \
    --to=marius@gnu.org \
    --cc=48622@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 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).