[PATCH 0/6] Replace deprecated TeXLive inputs

  • Done
  • quality assurance status badge
Details
2 participants
  • Josselin Poiret
  • Simon Tournier
Owner
unassigned
Submitted by
Simon Tournier
Severity
normal

Debbugs page

Simon Tournier wrote 2 years ago
(address . guix-patches@gnu.org)(name . Simon Tournier)(address . zimon.toutoune@gmail.com)
20230428110111.3634702-1-zimon.toutoune@gmail.com
Hi,

This fixes minor annoying warnings. There is no large dependencies involved.

Cheers,
simon


Simon Tournier (6):
gnu: texlive-xetex: Replace deprecated inputs.
gnu: texlive-soulutf8: Replace deprecated inputs.
gnu: texlive-ncctools: Replace deprecated input.
gnu: texlive-totcount: Replace deprecated input.
gnu: texlive-totpages: Replace deprecated input.
gnu: texlive-ddphonism: Replace deprecated input.

gnu/packages/tex.scm | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)


base-commit: aecc6e70587f8412cbbb9b2c13141de4f534518e
--
2.38.1
Simon Tournier wrote 2 years ago
[PATCH 2/6] gnu: texlive-soulutf8: Replace deprecated inputs.
(address . 63143@debbugs.gnu.org)(name . Simon Tournier)(address . zimon.toutoune@gmail.com)
20230428110311.3635478-2-zimon.toutoune@gmail.com
* gnu/packages/tex.scm (texlive-soulutf8)[propagated-inputs]: Replace
deprecated texlive-generic-etexcmds by texlive-etexcmds and deprecated
texlive-generic-infwarerr by texlive-infwarerr.
---
gnu/packages/tex.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Toggle diff (17 lines)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 3c38c85622..1d41309a30 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -13315,8 +13315,8 @@ (define-public texlive-soulutf8
(copy-recursively (string-append origin "/source") source)
(copy-recursively (string-append origin "/doc") doc))))))))
(propagated-inputs
- (list texlive-generic-etexcmds
- texlive-generic-infwarerr
+ (list texlive-etexcmds
+ texlive-infwarerr
texlive-soul))
(home-page "https://ctan.org/pkg/soulutf8")
(synopsis "Permit use of UTF-8 characters in @code{soul}")
--
2.38.1
Simon Tournier wrote 2 years ago
[PATCH 3/6] gnu: texlive-ncctools: Replace deprecated input.
(address . 63143@debbugs.gnu.org)(name . Simon Tournier)(address . zimon.toutoune@gmail.com)
20230428110311.3635478-3-zimon.toutoune@gmail.com
* gnu/packages/tex.scm (texlive-ncctools)[propagated-inputs]: Replace
deprecated texlive-latex-graphics by texlive-graphics.
---
gnu/packages/tex.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Toggle diff (15 lines)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 1d41309a30..5eae1c0753 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -9329,7 +9329,7 @@ (define-public texlive-ncctools
(copy-recursively (string-append origin "/source") source)
(copy-recursively (string-append origin "/doc") doc))))))))
(propagated-inputs
- (list texlive-amsmath texlive-latex-graphics))
+ (list texlive-amsmath texlive-graphics))
(home-page "https://ctan.org/pkg/ncctools")
(synopsis "Collection of general packages for LaTeX")
(description
--
2.38.1
Simon Tournier wrote 2 years ago
[PATCH 1/6] gnu: texlive-xetex: Replace deprecated inputs.
(address . 63143@debbugs.gnu.org)(name . Simon Tournier)(address . zimon.toutoune@gmail.com)
20230428110311.3635478-1-zimon.toutoune@gmail.com
* gnu/packages/tex.scm (texlive-xetex)[propagated-inputs]: Replace deprecated
texlive-generic-atbegshi by texlive-atbegshi and deprecated
texlive-latex-atveryend by texlive-atveryend.
---
gnu/packages/tex.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Toggle diff (17 lines)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index a2f1de4e35..3c38c85622 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -13468,8 +13468,8 @@ (define-public texlive-xetex
"1gmgagvsv2qknrjzjk840ca3wging8wfc20rgq7bnhphm9n87m6q")
#:trivial? #t))
(propagated-inputs
- (list texlive-generic-atbegshi
- texlive-latex-atveryend
+ (list texlive-atbegshi
+ texlive-atveryend
texlive-babel
texlive-cm
texlive-dvipdfmx
--
2.38.1
Simon Tournier wrote 2 years ago
[PATCH 5/6] gnu: texlive-totpages: Replace deprecated input.
(address . 63143@debbugs.gnu.org)(name . Simon Tournier)(address . zimon.toutoune@gmail.com)
20230428110311.3635478-5-zimon.toutoune@gmail.com
* gnu/packages/tex.scm (texlive-totpages)[propagated-inputs]: Replace
deprecated texlive-latex-graphics by texlive-graphics.
---
gnu/packages/tex.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Toggle diff (15 lines)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index bececf8a2a..9e0f443ca1 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -13446,7 +13446,7 @@ (define-public texlive-totpages
(native-inputs
(list (texlive-updmap.cfg)))
(propagated-inputs
- (list texlive-everyshi texlive-latex-graphics))
+ (list texlive-everyshi texlive-graphics))
(home-page "https://ctan.org/pkg/totpages")
(synopsis "Count pages in a document, and report last page number")
(description
--
2.38.1
Simon Tournier wrote 2 years ago
[PATCH 6/6] gnu: texlive-ddphonism: Replace deprecated input.
(address . 63143@debbugs.gnu.org)(name . Simon Tournier)(address . zimon.toutoune@gmail.com)
20230428110311.3635478-6-zimon.toutoune@gmail.com
* gnu/packages/tex.scm (texlive-ddphonism)[propagated-inputs]: Replace
deprecated texlive-latex-tools by texlive-tools.
---
gnu/packages/tex.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Toggle diff (15 lines)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 9e0f443ca1..53ae12b191 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -5875,7 +5875,7 @@ (define-public texlive-ddphonism
texlive-latex-l3packages
texlive-listings
texlive-pgf
- texlive-latex-tools
+ texlive-tools
texlive-xstring))
(home-page "https://www.ctan.org/pkg/ddphonism")
(synopsis "Dodecaphonic diagrams for LaTeX")
--
2.38.1
Simon Tournier wrote 2 years ago
[PATCH 4/6] gnu: texlive-totcount: Replace deprecated input.
(address . 63143@debbugs.gnu.org)(name . Simon Tournier)(address . zimon.toutoune@gmail.com)
20230428110311.3635478-4-zimon.toutoune@gmail.com
* gnu/packages/tex.scm (texlive-totcount)[propagated-inputs]: Replace
deprecated texlive-latex-graphics by texlive-graphics.
---
gnu/packages/tex.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Toggle diff (15 lines)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 5eae1c0753..bececf8a2a 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -13402,7 +13402,7 @@ (define-public texlive-totcount
(copy-recursively (string-append origin "/source") source)
(copy-recursively (string-append origin "/doc") doc))))))))
(propagated-inputs
- (list texlive-latex-graphics))
+ (list texlive-graphics))
(home-page "https://ctan.org/pkg/totcount")
(synopsis "Find the last value of a counter")
(description
--
2.38.1
Simon Tournier wrote 2 years ago
Re: bug#63143: [PATCH 0/6] Replace deprecated TeXLive inputs
(address . 63143@debbugs.gnu.org)
87fs855ywa.fsf@gmail.com
Hi TeX team,

On ven., 28 avril 2023 at 13:01, Simon Tournier <zimon.toutoune@gmail.com> wrote:

Toggle quote (16 lines)
> This fixes minor annoying warnings. There is no large dependencies involved.
>
> Simon Tournier (6):
> gnu: texlive-xetex: Replace deprecated inputs.
> gnu: texlive-soulutf8: Replace deprecated inputs.
> gnu: texlive-ncctools: Replace deprecated input.
> gnu: texlive-totcount: Replace deprecated input.
> gnu: texlive-totpages: Replace deprecated input.
> gnu: texlive-ddphonism: Replace deprecated input.
>
> gnu/packages/tex.scm | 16 ++++++++--------
> 1 file changed, 8 insertions(+), 8 deletions(-)
>
>
> base-commit: aecc6e70587f8412cbbb9b2c13141de4f534518e

Friendly ping. :-)


Cheers,
simon
Josselin Poiret wrote 2 years ago
Re: [bug#63143] [PATCH 0/6] Replace deprecated TeXLive inputs
87pm76d1vp.fsf@jpoiret.xyz
Hi Simon,

Simon Tournier <zimon.toutoune@gmail.com> writes:

Toggle quote (19 lines)
> Hi,
>
> This fixes minor annoying warnings. There is no large dependencies involved.
>
> Cheers,
> simon
>
>
> Simon Tournier (6):
> gnu: texlive-xetex: Replace deprecated inputs.
> gnu: texlive-soulutf8: Replace deprecated inputs.
> gnu: texlive-ncctools: Replace deprecated input.
> gnu: texlive-totcount: Replace deprecated input.
> gnu: texlive-totpages: Replace deprecated input.
> gnu: texlive-ddphonism: Replace deprecated input.
>
> gnu/packages/tex.scm | 16 ++++++++--------
> 1 file changed, 8 insertions(+), 8 deletions(-)

Looking good, pushed as 60cf9866cfd01bd0492bdc427a016e26d779bb4e (yes,
this was my first push to master :) ).

Thanks!

Best,
--
Josselin Poiret
-----BEGIN PGP SIGNATURE-----

iQHEBAEBCgAuFiEEOSSM2EHGPMM23K8vUF5AuRYXGooFAmRdVjoQHGRldkBqcG9p
cmV0Lnh5egAKCRBQXkC5FhcaiuG1C/wLnbbTNLApdA/HRxxrnRMu3g9eJaV4CdSL
0/IpkD34z1KM7SHfmekYMr06pUFSkhfdStk0c0hbxVnjDvt3COXgp6iml/kU2Vfz
YrNpsIEnJUSugGKBLOIWH/rCfjUeRe+3dBDs/x43m/5aNI9dZu+Ue9/1+SFZhKgl
dJ0QZlzxnNTavPk5qXSH3BCfHV6Aasyhr9cz1m1kcv87lIafXB3ZGP3z3K2Sz/wK
aVZG3GXmt1wjxCvpqErMNTHNXP3SBMgECPlVWygsX9u+JEik73an1koNZn63PjMa
65OM1FZs5NvJ2ZeOa3VutfQU6NN2gl3f2JSABWCVbq3qw30hcKHB0RVQAvLMLX/C
fRpEYiZYNID8LqUKGK5hjLEPbJuaj8/3FJxW6XpqMeis0qFe0vhrkbVnOvRYF4cX
37iGhER4cCGyJd1Z6oQ080gCJxzBP/nHgpD49iSFPSEu+sZfljiNwjyLp7bjdHmf
wXo9dKpg1I85UHTyY2vvfV3eBbUGmew=
=xLi8
-----END PGP SIGNATURE-----

Josselin Poiret wrote 2 years ago
(address . control@debbugs.gnu.org)
87lehud1my.fsf@jpoiret.xyz
close 63143

thankyou
--
Josselin Poiret
-----BEGIN PGP SIGNATURE-----

iQHEBAEBCgAuFiEEOSSM2EHGPMM23K8vUF5AuRYXGooFAmRdV3UQHGRldkBqcG9p
cmV0Lnh5egAKCRBQXkC5FhcaiigWC/wL/kgEcwabQNIq2TbY2Sz5ZJPRjS1YyyGu
Q5dgLd6VfFK4v5QMQSlTXneNNRy2Civd+flqVYGLmLyuir/PPFsm8108LiVp/CTY
7oJ2ZzhRD2dayjPKXrVSntpJ7o9oc8oFtLUR3mEuEoWHSWEaoLzDzn5s1iulBCXI
hfLfozcFgeeH4h8dRBkN/d5uBrGvLzrJIi55/57AuTAWnKkHmDxd2E0aM2lI3Z5H
g3BjO0haFEGkZRa8FXpUM0nyG7t/nb3euB5VtXz8JIpyo4DR6LZlIBKWohfRofd3
zQbsN4ftkOVV4hwa7y/Sp69CkcvbTuvbUNy8BVkgHLxLTyZ7sg+jQjzhxofpQRdA
gidiSYDCAGH6deCEynvsKGIY+n5xKbP6TK5CgcpAEYgIuXww8rUQB8fq6+ElZv4N
bzA+yiC5P4G97Twu7EuVOoDdPQbNB0LJGxHSNgu/Hb2mR6rQTDpiSu3+6ZDXYpj3
jAD+gZz7aGUvO5bD4m5sUeLm+tStyiU=
=voFe
-----END PGP SIGNATURE-----

?
Your comment

This issue is archived.

To comment on this conversation send an email to 63143@debbugs.gnu.org

To respond to this issue using the mumi CLI, first switch to it
mumi current 63143
Then, you may apply the latest patchset in this issue (with sign off)
mumi am -- -s
Or, compose a reply to this issue
mumi compose
Or, send patches to this issue
mumi send-email *.patch
You may also tag this issue. See list of standard tags. For example, to set the confirmed and easy tags
mumi command -t +confirmed -t +easy
Or, remove the moreinfo tag and set the help tag
mumi command -t -moreinfo -t +help