me
/
guix
Archived
1
0
Fork 0

gnu: kicad-i18l: Fix typo in… name.

* gnu/packages/engineering.scm (kicad-i18n): New old variable previously…
(kicad-i18l): …this.  Redefine using DEPRECATED-PACKAGE.
(kicad)[arguments, native-inputs]: Adjust accordingly.
master
Tobias Geerinckx-Rice 2020-05-15 19:11:47 +02:00
parent 5225626ffc
commit cb014f64a5
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 7 additions and 4 deletions

View File

@ -823,7 +823,7 @@ language.")
(modify-phases %standard-phases (modify-phases %standard-phases
(add-after 'install 'install-translations (add-after 'install 'install-translations
(lambda* (#:key inputs outputs #:allow-other-keys) (lambda* (#:key inputs outputs #:allow-other-keys)
(copy-recursively (assoc-ref inputs "kicad-i18l") (copy-recursively (assoc-ref inputs "kicad-i18n")
(assoc-ref outputs "out")) (assoc-ref outputs "out"))
#t)) #t))
(add-after 'install 'wrap-program (add-after 'install 'wrap-program
@ -861,7 +861,7 @@ language.")
`(("boost" ,boost) `(("boost" ,boost)
("desktop-file-utils" ,desktop-file-utils) ("desktop-file-utils" ,desktop-file-utils)
("gettext" ,gettext-minimal) ("gettext" ,gettext-minimal)
("kicad-i18l" ,kicad-i18l) ("kicad-i18n" ,kicad-i18n)
("pkg-config" ,pkg-config) ("pkg-config" ,pkg-config)
("swig" ,swig) ("swig" ,swig)
("zlib" ,zlib))) ("zlib" ,zlib)))
@ -887,9 +887,9 @@ perform specific functions, for example, pcbnew (Editing PCB), eeschema (editing
electrical diagrams), gerbview (viewing Gerber files) and others.") electrical diagrams), gerbview (viewing Gerber files) and others.")
(license license:gpl3+))) (license license:gpl3+)))
(define kicad-i18l (define kicad-i18n
(package (package
(name "kicad-i18l") (name "kicad-i18n")
(version "5.1.5") (version "5.1.5")
(source (origin (source (origin
(method git-fetch) (method git-fetch)
@ -914,6 +914,9 @@ electrical diagrams), gerbview (viewing Gerber files) and others.")
translations for KiCad.") translations for KiCad.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public kicad-i18l
(deprecated-package "kicad-i18l" kicad-i18n))
(define-public kicad-symbols (define-public kicad-symbols
(package (package
(name "kicad-symbols") (name "kicad-symbols")