mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: aspell: Incorporate grafted changes.
* gnu/packages/aspell.scm (aspell)[replacement]: Remove. [source](patches): Add aspell-CVE-2019-25051.patch. * gnu/packages/aspell.scm (aspell/replacement): Remove variable.
This commit is contained in:
parent
191ff93b31
commit
22b6eb8740
1 changed files with 2 additions and 12 deletions
|
@ -47,7 +47,6 @@ (define-public aspell
|
|||
(package
|
||||
(name "aspell")
|
||||
(version "0.60.8")
|
||||
(replacement aspell/replacement)
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
|
@ -56,7 +55,8 @@ (define-public aspell
|
|||
(sha256
|
||||
(base32
|
||||
"1wi60ankalmh8ds7nplz434jd7j94gdvbahdwsr539rlad8pxdzr"))
|
||||
(patches (search-patches "aspell-default-dict-dir.patch"))))
|
||||
(patches (search-patches "aspell-default-dict-dir.patch"
|
||||
"aspell-CVE-2019-25051.patch"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
|
@ -93,16 +93,6 @@ (define-public aspell
|
|||
dictionaries, including personal ones.")
|
||||
(license lgpl2.1+)))
|
||||
|
||||
;; Replacement package with security fixes.
|
||||
(define aspell/replacement
|
||||
(package
|
||||
(inherit aspell)
|
||||
(source
|
||||
(origin
|
||||
(inherit (package-source aspell))
|
||||
(patches (append (origin-patches (package-source aspell))
|
||||
(search-patches "aspell-CVE-2019-25051.patch")))))))
|
||||
|
||||
;;;
|
||||
;;; Dictionaries.
|
||||
;;;
|
||||
|
|
Loading…
Reference in a new issue