Archived
1
0
Fork 0

gnu: r-haven: Update to 2.4.3.

* gnu/packages/cran.scm (r-haven): Update to 2.4.3.
[source]: Simplify snippet.
[synopsis]: Remove quotes.
[description]: Fix typo and remove one word.
This commit is contained in:
Ricardo Wurmus 2021-08-04 15:35:38 +02:00
parent 2705572eb5
commit e3f766324c
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -2769,20 +2769,18 @@ including functions for geolocation and routing.")
(define-public r-haven (define-public r-haven
(package (package
(name "r-haven") (name "r-haven")
(version "2.4.1") (version "2.4.3")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (cran-uri "haven" version)) (uri (cran-uri "haven" version))
(sha256 (sha256
(base32 (base32
"1san6dc7kg2wy6f1jr5p1br28zdrand8wwgg7p6xxnx45h773320")) "0pr9jcdk1r9pi9iz0xm1g5yy5qyjk5r7hh9467abx4kpwx3hzdwm"))
(modules '((guix build utils))) (modules '((guix build utils)))
(snippet (snippet
'(begin ;; unvendor readstat
;; unvendor readstat '(delete-file-recursively "src/readstat"))))
(delete-file-recursively "src/readstat")
#t))))
(build-system r-build-system) (build-system r-build-system)
(arguments (arguments
'(#:phases '(#:phases
@ -2791,8 +2789,7 @@ including functions for geolocation and routing.")
(lambda _ (lambda _
;; Not required, since were not building readstat. ;; Not required, since were not building readstat.
(substitute* "src/Makevars" (substitute* "src/Makevars"
(("-lz") "-lreadstat")) (("-lz") "-lreadstat")))))))
#t)))))
(inputs (inputs
`(("readstat" ,readstat))) `(("readstat" ,readstat)))
(native-inputs (native-inputs
@ -2807,10 +2804,10 @@ including functions for geolocation and routing.")
("r-tidyselect" ,r-tidyselect) ("r-tidyselect" ,r-tidyselect)
("r-vctrs" ,r-vctrs))) ("r-vctrs" ,r-vctrs)))
(home-page "https://haven.tidyverse.org") (home-page "https://haven.tidyverse.org")
(synopsis "Import and Export 'SPSS', 'Stata' and 'SAS' Files") (synopsis "Import and export SPSS, Stata and SAS files")
(description (description
"This package lets you mport foreign statistical formats into R via the "This package lets you import foreign statistical formats into R via the
embedded @url{https://github.com/WizardMac/ReadStat,ReadStat} C library.") @url{https://github.com/WizardMac/ReadStat,ReadStat} C library.")
(license license:expat))) (license license:expat)))
(define-public r-amap (define-public r-amap