From 6481cd3bda3cdfffe1946580e3a8b326d70c2199 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sun, 16 Jul 2023 09:57:04 +0200 Subject: [PATCH] gnu: Add texlive-ctanupload. * gnu/packages/tex.scm (texlive-ctanupload): New variable. --- gnu/packages/tex.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index e7d2c0a422..3e77197453 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -1528,6 +1528,29 @@ (define-public texlive-ctanify incorporate it in a distribution.") (license license:lppl1.3c))) +(define-public texlive-ctanupload + (package + (name "texlive-ctanupload") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/support/ctanupload/" + "scripts/ctanupload/") + (base32 + "0w4k9sslhnpn5l90wbr7cr7pv8fhiiabasbi6l6gw3w3nrfmarh4"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (arguments (list #:link-scripts #~(list "ctanupload.pl"))) + (inputs (list perl)) + (home-page "https://ctan.org/pkg/ctanupload") + (synopsis "Support for users uploading to CTAN") + (description + "The package provides a Perl script that allows the uploads of +a contribution to CTAN from the command line. The aim is to simplify the +release process for LaTeX package authors. Note by the CTAN +team (2015-02-05): It seems that this script is currently not working.") + (license license:gpl3))) + (define-public texlive-dvipsconfig (package (name "texlive-dvipsconfig")