[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/10: gnu: texlive-graphics: Use over deprecated texlive-latex-graphics
From: |
guix-commits |
Subject: |
05/10: gnu: texlive-graphics: Use over deprecated texlive-latex-graphics. |
Date: |
Mon, 30 Jan 2023 13:10:31 -0500 (EST) |
efraim pushed a commit to branch core-updates
in repository guix.
commit bd3e3d87a9246ac59080ebb72298290dca5b0204
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Mon Jan 30 12:55:44 2023 +0200
gnu: texlive-graphics: Use over deprecated texlive-latex-graphics.
* gnu/packages/bioinformatics.scm (phyml)[native-inputs],
* gnu/packages/chemistry.scm (yaehmop)[native-inputs],
* gnu/packages/graphviz.scm (dot2tex)[propagated-inputs],
* gnu/packages/maths.scm (cddlib)[native-inputs],
* gnu/packages/statistics.scm (r-with-tests)[native-inputs],
* gnu/packages/tex.scm (texlive-apa6)[propagated-inputs]: Replace
texlive-latex-graphics with texlive-graphics.
---
gnu/packages/bioinformatics.scm | 4 ++--
gnu/packages/chemistry.scm | 2 +-
gnu/packages/graphviz.scm | 2 +-
gnu/packages/maths.scm | 2 +-
gnu/packages/statistics.scm | 2 +-
gnu/packages/tex.scm | 2 +-
6 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index b747cb373d..58690552e0 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -10240,10 +10240,10 @@ programs for inferring phylogenies (evolutionary
trees).")
texlive-caption
texlive-cite
texlive-fonts-ec
+ texlive-graphics
texlive-grfext
texlive-hyperref
texlive-latex-fancyvrb
- texlive-latex-graphics
texlive-latex-psfrag
texlive-xcolor))))
(home-page "https://github.com/stephaneguindon/phyml")
@@ -10351,7 +10351,7 @@ applications for tackling some common problems in a
user-friendly way.")
(lambda* (#:key outputs #:allow-other-keys)
(substitute* "src/test/Makefile"
(("^CFLAGS=") "CFLAGS= -fcommon"))
-
+
;; Don't attempt to install the bash completions to
;; the home directory.
(rename-file "extras/.bash_completion"
diff --git a/gnu/packages/chemistry.scm b/gnu/packages/chemistry.scm
index fb6d6fc27f..4c202a3424 100644
--- a/gnu/packages/chemistry.scm
+++ b/gnu/packages/chemistry.scm
@@ -901,7 +901,7 @@ emphasis on quality rather than speed.")
(native-inputs
(list gfortran
(texlive-updmap.cfg (list texlive-fonts-ec
- texlive-latex-graphics
+ texlive-graphics
texlive-latex-geometry))))
(home-page "https://github.com/greglandrum/yaehmop")
(synopsis "Perform extended Hückel calculations")
diff --git a/gnu/packages/graphviz.scm b/gnu/packages/graphviz.scm
index 615444a75d..99fdd85c88 100644
--- a/gnu/packages/graphviz.scm
+++ b/gnu/packages/graphviz.scm
@@ -427,7 +427,7 @@ graphs in Graphviz's DOT language, written in pure Python.")
;; the resulting generated TeX files, which \usepackage them.
texlive-bin
texlive-amsmath
- texlive-latex-geometry
+ texlive-geometry
texlive-latex-graphics
texlive-latex-base
texlive-latex-preview
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index bb2a271a20..38040015a5 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -752,7 +752,7 @@ integer programming problems and computes Markov bases for
statistics.")
libtool
texlive-amsfonts
texlive-dvips-l3backend
- texlive-latex-graphics
+ texlive-graphics
texlive-latex-l3backend
texlive-tiny))
(arguments
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 7ba75cf59d..dc2a6e3ab6 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -382,7 +382,7 @@ as.POSIXct(if (\"\" != Sys.getenv(\"SOURCE_DATE_EPOCH\")) {\
texlive-amsfonts
texlive-latex-base
texlive-latex-fancyvrb
- texlive-latex-graphics
+ texlive-graphics
texlive-hyperref
texlive-oberdiek
texlive-latex-tools
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 9d8c959879..ca3eca810c 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -11888,10 +11888,10 @@ and selecting references used in a publication.")
texlive-endnotes
texlive-etoolbox
texlive-generic-xstring
+ texlive-graphics
texlive-latex-draftwatermark
texlive-latex-fancyhdr
texlive-latex-float
- texlive-latex-graphics
texlive-lm
texlive-substr
texlive-times
- branch core-updates updated (edb8c09add -> a59936e10a), guix-commits, 2023/01/30
- 01/10: Merge remote-tracking branch 'origin/master' into core-updates, guix-commits, 2023/01/30
- 02/10: Revert "gnu: Remove rust-test-generator-0.3.", guix-commits, 2023/01/30
- 03/10: Revert "gnu: Remove rust-yeslogic-fontconfig-sys-2.", guix-commits, 2023/01/30
- 04/10: gnu: guile-3.0: Update to 3.0.9., guix-commits, 2023/01/30
- 07/10: gnu: texlive-fancyvrb: Use over deprecated texlive-latex-fancyvrb., guix-commits, 2023/01/30
- 06/10: gnu: texlive-fancyhdr: Use over deprecated texlive-latex-fancyhdr., guix-commits, 2023/01/30
- 08/10: gnu: r-with-tests: Don't use deprecated texlive-latex-tools., guix-commits, 2023/01/30
- 05/10: gnu: texlive-graphics: Use over deprecated texlive-latex-graphics.,
guix-commits <=
- 09/10: gnu: Add llvm-for-mesa., guix-commits, 2023/01/30
- 10/10: gnu: mesa: Use llvm-for-mesa., guix-commits, 2023/01/30