[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
121/452: gnu: texlive-fonts-iwona -> texlive-iwona.
From: |
guix-commits |
Subject: |
121/452: gnu: texlive-fonts-iwona -> texlive-iwona. |
Date: |
Fri, 9 Jun 2023 13:43:07 -0400 (EDT) |
ngz pushed a commit to branch tex-team-next
in repository guix.
commit 30bcdef45441ea8083c441ee1d7fa794e5900269
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Sun May 14 21:44:45 2023 +0200
gnu: texlive-fonts-iwona -> texlive-iwona.
* gnu/packages/tex.scm (texlive-iwona): New variable.
(texlive-fonts-iwona): Deprecate variable.
* gnu/packages/guile-xyz.scm (guile-cv)[native-inputs]: Use new name.
---
gnu/packages/guile-xyz.scm | 13 ++++++------
gnu/packages/tex.scm | 53 +++++++++++++++++++---------------------------
2 files changed, 29 insertions(+), 37 deletions(-)
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index d8684bb818..3196510c24 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -4039,12 +4039,13 @@ feature-set, fully programmable in Guile Scheme.")
(inputs
(list vigra vigra-c guile-2.2))
(native-inputs
- `(("texlive" ,(texlive-updmap.cfg (list texlive-booktabs
- texlive-lm
- texlive-siunitx
- texlive-standalone
- texlive-xcolor
- texlive-fonts-iwona)))
+ `(("texlive" ,(texlive-updmap.cfg
+ (list texlive-booktabs
+ texlive-iwona
+ texlive-lm
+ texlive-siunitx
+ texlive-standalone
+ texlive-xcolor)))
("pkg-config" ,pkg-config)))
(propagated-inputs
`(("guile-lib" ,guile2.2-lib)))
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 6ec71b221d..c99b792410 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -7895,39 +7895,28 @@ TeX metrics (VF and TFM files) and macros for use with
LaTeX.")
(define-deprecated-package texlive-fonts-txfonts texlive-txfonts)
-(define-public texlive-fonts-iwona
+(define-public texlive-iwona
(package
- (name "texlive-fonts-iwona")
- (version "0.995b")
- (source (origin
- (method url-fetch)
- (uri (string-append "http://jmn.pl/pliki/Iwona-tex-"
- (string-map (lambda (c)
- (if (char=? c #\.)
- #\_ c))
- version)
- ".zip"))
- (sha256
- (base32
- "13684iqx5granpc5rfvqnmyvdpgpbr1x9y7i7y7bcaq0qxv7ph1x"))))
- (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/"))
- (unzip (search-input-file %build-inputs "/bin/unzip")))
- (invoke unzip (assoc-ref %build-inputs "source"))
- (mkdir-p target)
- (copy-recursively "iwona" target)
- #t))))
- (native-inputs
- (list unzip))
- (home-page "http://jmn.pl/en/kurier-i-iwona/")
+ (name "texlive-iwona")
+ (version (number->string %texlive-revision))
+ (source (texlive-origin
+ name version
+ (list "doc/fonts/iwona/"
+ "fonts/afm/nowacki/iwona/"
+ "fonts/enc/dvips/iwona/"
+ "fonts/map/dvips/iwona/"
+ "fonts/opentype/nowacki/iwona/"
+ "fonts/tfm/nowacki/iwona/"
+ "fonts/type1/nowacki/iwona/"
+ "tex/latex/iwona/"
+ "tex/plain/iwona/")
+ (base32
+ "1gk80zj711rcnk06cvszic7lpm06nj47kbypg13rpijdzfsvmi8m")))
+ (outputs '("out" "doc"))
+ (build-system texlive-build-system)
+ (home-page "https://ctan.org/pkg/iwona")
(synopsis "Sans-serif typeface for TeX")
- (description "Iwona is a two-element sans-serif typeface. It was created
+ (description "Iwona is a two-element sans-serif typeface. It was created
as an alternative version of the Kurier typeface, which was designed in 1975
for a diploma in typeface design at the Warsaw Academy of Fine Arts under the
supervision of Roman Tomaszewski. Kurier was designed for linotype
@@ -7936,6 +7925,8 @@ alternative version of the Kurier fonts. The difference
lies in the absence
of ink traps which typify the Kurier font.")
(license license:gfl1.0)))
+(define-deprecated-package texlive-fonts-iwona texlive-iwona)
+
(define-public texlive-jknappen
(package
(inherit (simple-texlive-package
- 448/452: gnu: Add texlive-pslatex., (continued)
- 448/452: gnu: Add texlive-pslatex., guix-commits, 2023/06/09
- 21/452: gnu: Add texlive-filehook., guix-commits, 2023/06/09
- 42/452: gnu: texlive-latex-ifplatform -> texlive-ifplatform., guix-commits, 2023/06/09
- 47/452: gnu: texlive-latex-seqsplit -> texlive-seqsplit., guix-commits, 2023/06/09
- 48/452: gnu: texlive-generic-listofitems -> texlive-listofitems., guix-commits, 2023/06/09
- 70/452: gnu: texlive-latex-xkeyval -> texlive-xkeyval., guix-commits, 2023/06/09
- 66/452: gnu: Add texlive-atenddvi., guix-commits, 2023/06/09
- 73/452: gnu: texlive-latex-changebar -> texlive-changebar., guix-commits, 2023/06/09
- 100/452: gnu: texlive-latex-ucs -> texlive-ucs., guix-commits, 2023/06/09
- 95/452: gnu: Add texlive-luatexbase., guix-commits, 2023/06/09
- 121/452: gnu: texlive-fonts-iwona -> texlive-iwona.,
guix-commits <=
- 112/452: gnu: texlive-latex-bussproofs -> texlive-bussproofs., guix-commits, 2023/06/09
- 130/452: gnu: texlive-ydoc: Refresh package definition., guix-commits, 2023/06/09
- 169/452: gnu: texlive-endfloat: Refresh package definition., guix-commits, 2023/06/09
- 205/452: gnu: texlive-csquotes: Refresh package definition., guix-commits, 2023/06/09
- 225/452: gnu: Add texlive-xmltexconfig., guix-commits, 2023/06/09
- 230/452: gnu: texlive-csplain: Refresh package definition., guix-commits, 2023/06/09
- 231/452: gnu: texlive-babel-french: Refresh package definition., guix-commits, 2023/06/09
- 239/452: gnu: texlive-capt-of: Refresh package definition., guix-commits, 2023/06/09
- 241/452: gnu: texlive-metalogo: Refresh package definition., guix-commits, 2023/06/09
- 245/452: gnu: texlive-polyglossia: Refresh package definition., guix-commits, 2023/06/09