all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#57592] [PATCH 0/1] Add texlive-latex-frankenstein.
@ 2022-09-05  8:48 Wiktor Żelazny
  2022-09-05  9:09 ` [bug#57592] [PATCH 1/1] gnu: " Wiktor Żelazny
  0 siblings, 1 reply; 4+ messages in thread
From: Wiktor Żelazny @ 2022-09-05  8:48 UTC (permalink / raw)
  To: 57592; +Cc: Wiktor Żelazny

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





^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#57592] [PATCH 1/1] gnu: Add texlive-latex-frankenstein.
  2022-09-05  8:48 [bug#57592] [PATCH 0/1] Add texlive-latex-frankenstein Wiktor Żelazny
@ 2022-09-05  9:09 ` Wiktor Żelazny
  2022-09-10 10:52   ` Christopher Baines
  0 siblings, 1 reply; 4+ messages in thread
From: Wiktor Żelazny @ 2022-09-05  9:09 UTC (permalink / raw)
  To: 57592; +Cc: Wiktor Żelazny

From: Wiktor Żelazny <wzelazny@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





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#57592] [PATCH 1/1] gnu: Add texlive-latex-frankenstein.
  2022-09-05  9:09 ` [bug#57592] [PATCH 1/1] gnu: " Wiktor Żelazny
@ 2022-09-10 10:52   ` Christopher Baines
  2022-09-24 13:09     ` bug#57592: [PATCH 0/1] " Ludovic Courtès
  0 siblings, 1 reply; 4+ messages in thread
From: Christopher Baines @ 2022-09-10 10:52 UTC (permalink / raw)
  To: Wiktor Żelazny; +Cc: Wiktor Żelazny, 57592

[-- Attachment #1: Type: text/plain, Size: 583 bytes --]


Wiktor Żelazny <wz@freeshell.de> writes:

> From: Wiktor Żelazny <wzelazny@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

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 987 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#57592: [PATCH 0/1] Add texlive-latex-frankenstein.
  2022-09-10 10:52   ` Christopher Baines
@ 2022-09-24 13:09     ` Ludovic Courtès
  0 siblings, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2022-09-24 13:09 UTC (permalink / raw)
  To: Christopher Baines; +Cc: Wiktor Żelazny, Wiktor Żelazny, 57592-done

Hi,

Christopher Baines <mail@cbaines.net> skribis:

> Wiktor Żelazny <wz@freeshell.de> writes:
>
>> From: Wiktor Żelazny <wzelazny@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’.




^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-09-24 13:13 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-05  8:48 [bug#57592] [PATCH 0/1] Add texlive-latex-frankenstein Wiktor Żelazny
2022-09-05  9:09 ` [bug#57592] [PATCH 1/1] gnu: " Wiktor Żelazny
2022-09-10 10:52   ` Christopher Baines
2022-09-24 13:09     ` bug#57592: [PATCH 0/1] " Ludovic Courtès

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.