all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Liliana Marie Prikler <liliana.prikler@gmail.com>
To: 69212@debbugs.gnu.org
Subject: [bug#69212] [PATCH RFC 3/4] gnu: Add perl-arxiv.
Date: Sat, 17 Feb 2024 23:45:03 +0100	[thread overview]
Message-ID: <24808bdbad7760f287615e15d5a1f698386185c3.1708211806.git.liliana.prikler@gmail.com> (raw)
In-Reply-To: <cover.1708211806.git.liliana.prikler@gmail.com>

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 2687 bytes --]

* gnu/packages/perl-tex.scm: New file.
* gnu/local.mk (GNU_SYSTEM_MODULES): Register it here.
---
 gnu/local.mk              |  1 +
 gnu/packages/perl-tex.scm | 44 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 45 insertions(+)
 create mode 100644 gnu/packages/perl-tex.scm

diff --git a/gnu/local.mk b/gnu/local.mk
index becca7dd56..aec8e7eab6 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -510,6 +510,7 @@ GNU_SYSTEM_MODULES =				\
   %D%/packages/perl-check.scm			\
   %D%/packages/perl-compression.scm		\
   %D%/packages/perl-maths.scm			\
+  %D%/packages/perl-tex.scm			\
   %D%/packages/perl-web.scm			\
   %D%/packages/perl6.scm			\
   %D%/packages/photo.scm			\
diff --git a/gnu/packages/perl-tex.scm b/gnu/packages/perl-tex.scm
new file mode 100644
index 0000000000..315d34856f
--- /dev/null
+++ b/gnu/packages/perl-tex.scm
@@ -0,0 +1,44 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2024 Liliana Marie Prikler <liliana.prikler@gmail.com>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (gnu packages perl-tex)
+  #:use-module ((guix licenses) #:prefix license:)
+  #:use-module (guix packages)
+  #:use-module (guix download)
+  #:use-module (guix build-system perl)
+  #:use-module (gnu packages)
+  #:use-module (gnu packages perl)
+  #:use-module (gnu packages tex))
+
+(define-public perl-arxiv
+  (package
+    (name "perl-arxiv")
+    (version "1.01")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://cpan/authors/id/S/SI/SIMEON/arXiv-" version
+                           ".tar.gz"))
+       (sha256
+        (base32 "0swcgkncc0vk220g5jwpz9j5zyg2995csklmfv09lhwxf6ndrin2"))))
+    (build-system perl-build-system)
+    (home-page "https://metacpan.org/release/arXiv")
+    (synopsis "Utilities from arXiv.org")
+    (description "This package contains perl modules with utility procedures
+used by other perl software at arXiv.org, most notably AutoTeX.")
+    (license license:perl-license)))
-- 
2.41.0





  reply	other threads:[~2024-02-19 20:42 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-02-17 23:16 [bug#69212] [PATCH RFC 0/4] Add AutoTeX Liliana Marie Prikler
2024-02-17 22:45 ` Liliana Marie Prikler [this message]
2024-02-17 22:46 ` [bug#69212] [PATCH RFC 2/4] gnu: Add perl-cam-pdf Liliana Marie Prikler
2024-02-17 22:48 ` [bug#69212] [PATCH RFC 1/4] gnu: Add perl-text-pdf Liliana Marie Prikler
2024-02-17 23:16 ` [bug#69212] [PATCH RFC 4/4] gnu: Add perl-tex-autotex Liliana Marie Prikler
2024-05-22  7:10   ` Nicolas Goaziou via Guix-patches via
2024-05-22 16:55     ` Liliana Marie Prikler
2024-05-23  9:56       ` Nicolas Goaziou via Guix-patches via

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=24808bdbad7760f287615e15d5a1f698386185c3.1708211806.git.liliana.prikler@gmail.com \
    --to=liliana.prikler@gmail.com \
    --cc=69212@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.