GNU bug report logs - #57592
[PATCH 0/1] Add texlive-latex-frankenstein.

Previous Next

Package: guix-patches;

Reported by: Wiktor Żelazny <wz <at> freeshell.de>

Date: Mon, 5 Sep 2022 08:49:02 UTC

Severity: normal

Tags: patch

Done: Ludovic Courtès <ludo <at> gnu.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 57592 in the body.
You can then email your comments to 57592 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#57592; Package guix-patches. (Mon, 05 Sep 2022 08:49:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Wiktor Żelazny <wz <at> freeshell.de>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Mon, 05 Sep 2022 08:49:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Wiktor Żelazny <wz <at> freeshell.de>
To: guix-patches <at> gnu.org
Cc: Wiktor Żelazny <wz <at> freeshell.de>
Subject: [PATCH 0/1] Add texlive-latex-frankenstein.
Date: Mon,  5 Sep 2022 10:48:14 +0200
Half-baked, but good enough to scratch my itch. Maybe it will be of use
for somebody else.

Wiktor Żelazny (1):
  gnu: Add texlive-latex-frankenstein.

 gnu/packages/tex.scm | 39 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)


base-commit: 31b4eea5c0d361dfbca119c27cbc1e8c6f65782a
-- 
2.37.2





Information forwarded to guix-patches <at> gnu.org:
bug#57592; Package guix-patches. (Mon, 05 Sep 2022 09:10:01 GMT) Full text and rfc822 format available.

Message #8 received at 57592 <at> debbugs.gnu.org (full text, mbox):

From: Wiktor Żelazny <wz <at> freeshell.de>
To: 57592 <at> debbugs.gnu.org
Cc: Wiktor Żelazny <wzelazny <at> vurv.cz>
Subject: [PATCH 1/1] gnu: Add texlive-latex-frankenstein.
Date: Mon,  5 Sep 2022 11:09:20 +0200
From: Wiktor Żelazny <wzelazny <at> vurv.cz>

* gnu/packages/tex.scm (texlive-latex-frankenstein): New variable.
---
 gnu/packages/tex.scm | 39 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 56308c4cf9..4123ab9d94 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -6171,6 +6171,45 @@ (define-public texlive-latex-footmisc
 footnotes with symbols rather than numbers.")
     (license license:lppl1.3+)))
 
+(define-public texlive-latex-frankenstein
+  (package
+    (name "texlive-latex-frankenstein")
+    (version (number->string %texlive-revision))
+    (source (origin
+              (method svn-fetch)
+              (uri (svn-reference (url (string-append
+                                        "svn://www.tug.org/texlive/tags/"
+                                        %texlive-tag "/Master/texmf-dist/"
+                                        "/tex/latex/frankenstein"))
+                                  (revision %texlive-revision)))
+              (file-name (string-append name "-" version "-checkout"))
+              (sha256
+               (base32
+                "1zhdvn3zgdarlzfcyq8nzilvw0v0bqgl4m0y7j233cbqw8wiil4z"))))
+    (build-system trivial-build-system)
+    (arguments
+     `(#:modules ((guix build utils))
+       #:builder (begin
+                   (use-modules (guix build utils))
+                   (let ((target (string-append (assoc-ref %outputs "out")
+                                  "/share/texmf-dist/tex/latex/frankenstein")))
+                     (mkdir-p target)
+                     (copy-recursively (assoc-ref %build-inputs "source")
+                                       target) #t))))
+    (home-page "https://ctan.org/pkg/frankenstein")
+    (synopsis "Collection of unrelated LaTeX packages")
+    (description
+     "Frankenstein is a bundle of LaTeX packages serving various purposes and a
+BibTeX bibliography style.  The individual packages are: @code{abbrevs},
+@code{achicago}, @code{achicago} bibstyle, @code{attrib}, @code{blkcntrl},
+@code{compsci}, @code{dialogue}, @code{lips}, @code{moredefs}, @code{newclude},
+@code{slemph} and @code{titles}.  Note: The installation follows the suboptimal
+``Quick and dirty'' recipe, rendering some features unavailable.")
+    ;; README mentions an unspecified version of GNU GPL and points to COPYING,
+    ;; which is missing. However, the individual files mention LPPL 1.2 or
+    ;; later.
+    (license license:lppl1.2+)))
+
 (define-public texlive-latex-letltxmacro
   (package
     (inherit (simple-texlive-package
-- 
2.37.2





Information forwarded to guix-patches <at> gnu.org:
bug#57592; Package guix-patches. (Sat, 10 Sep 2022 10:55:02 GMT) Full text and rfc822 format available.

Message #11 received at 57592 <at> debbugs.gnu.org (full text, mbox):

From: Christopher Baines <mail <at> cbaines.net>
To: Wiktor Żelazny <wz <at> freeshell.de>
Cc: Wiktor Żelazny <wzelazny <at> vurv.cz>, 57592 <at> debbugs.gnu.org
Subject: Re: [bug#57592] [PATCH 1/1] gnu: Add texlive-latex-frankenstein.
Date: Sat, 10 Sep 2022 11:52:46 +0100
[Message part 1 (text/plain, inline)]
Wiktor Żelazny <wz <at> freeshell.de> writes:

> From: Wiktor Żelazny <wzelazny <at> vurv.cz>
>
> * gnu/packages/tex.scm (texlive-latex-frankenstein): New variable.
> ---
>  gnu/packages/tex.scm | 39 +++++++++++++++++++++++++++++++++++++++
>  1 file changed, 39 insertions(+)

Thanks Wiktor, I did have a look at this, but I think it would be useful
if someone more familiar with texlive stuff in Guix had a look as well.

Given this is some kind of combination of bits, some of which may
already be in Guix, I'm a bit hesitant about whether it's a good fit as
is.

Chris
[signature.asc (application/pgp-signature, inline)]

Reply sent to Ludovic Courtès <ludo <at> gnu.org>:
You have taken responsibility. (Sat, 24 Sep 2022 13:10:02 GMT) Full text and rfc822 format available.

Notification sent to Wiktor Żelazny <wz <at> freeshell.de>:
bug acknowledged by developer. (Sat, 24 Sep 2022 13:10:02 GMT) Full text and rfc822 format available.

Message #16 received at 57592-done <at> debbugs.gnu.org (full text, mbox):

From: Ludovic Courtès <ludo <at> gnu.org>
To: Christopher Baines <mail <at> cbaines.net>
Cc: Wiktor Żelazny <wz <at> freeshell.de>,
 Wiktor Żelazny <wzelazny <at> vurv.cz>, 57592-done <at> debbugs.gnu.org
Subject: Re: bug#57592: [PATCH 0/1] Add texlive-latex-frankenstein.
Date: Sat, 24 Sep 2022 15:09:15 +0200
Hi,

Christopher Baines <mail <at> cbaines.net> skribis:

> Wiktor Żelazny <wz <at> freeshell.de> writes:
>
>> From: Wiktor Żelazny <wzelazny <at> vurv.cz>
>>
>> * gnu/packages/tex.scm (texlive-latex-frankenstein): New variable.
>> ---
>>  gnu/packages/tex.scm | 39 +++++++++++++++++++++++++++++++++++++++
>>  1 file changed, 39 insertions(+)
>
> Thanks Wiktor, I did have a look at this, but I think it would be useful
> if someone more familiar with texlive stuff in Guix had a look as well.
>
> Given this is some kind of combination of bits, some of which may
> already be in Guix, I'm a bit hesitant about whether it's a good fit as
> is.

Apparently some (or all?) of the packages mentioned in the description
are unavailable in Guix, and I wonder if they’re in TeX Live.

So I went ahead and applied it.  We can always remove it later if/when
the individual packages are added.

Thanks,
Ludo’.




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sun, 23 Oct 2022 11:24:15 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 183 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.