GNU bug report logs -
#34692
[PATCH] gnu: add r-statcheck.
Previous Next
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your bug report
#34692: [PATCH] gnu: add r-statcheck.
which was filed against the guix-patches package, has been closed.
The explanation is attached below, along with your original report.
If you require more details, please reply to 34692 <at> debbugs.gnu.org.
--
34692: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=34692
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
Nicolò Balzarotti <anothersms <at> gmail.com> writes:
> I have to admit, today is not March 24th, but finally here's the updated
> patch (no new versions have been released since btw).
Excellent, thank you! I have applied it (after reflowing the
description with M-q).
--
Ricardo
[Message part 3 (message/rfc822, inline)]
---
gnu/packages/cran.scm | 38 +++++++++++++++++++++++++++++++-------
1 file changed, 31 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 54031fa87a..111152d2d0 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -3736,19 +3736,43 @@ published results; and a routine for graphical display.")
supports arbitrary vertex/edge/graph attributes.")
(license license:gpl2+)))
+(define-public r-statcheck
+ (package
+ (name "r-statcheck")
+ (version "1.3.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "statcheck" version))
+ (sha256
+ (base32
+ "0ivybdcrymlsfv6pg6p5bv70qdvgxf2vgp0kf4r0pf2fcvav1mcp"))))
+ (build-system r-build-system)
+ (propagated-inputs
+ `(("r-ggplot2" ,r-ggplot2)
+ ("r-plyr" ,r-plyr)
+ ("r-rmarkdown" ,r-rmarkdown)))
+ (home-page
+ "https://cran.r-project.org/web/packages/statcheck")
+ (synopsis
+ "Extract Statistics from Articles and Recompute p Values")
+ (description
+ "Extract statistics from articles and recompute p values.")
+ (license license:gpl2)))
+
(define-public r-statnet-common
(package
(name "r-statnet-common")
(version "4.2.0")
(source
- (origin
- (method url-fetch)
- (uri (cran-uri "statnet.common" version))
- (sha256
- (base32
- "0q942g6kqmqxfss1cxb3yg8y5r1k1h5cyy99s1cfisrn6hqc6xhi"))))
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "statnet.common" version))
+ (sha256
+ (base32
+ "0q942g6kqmqxfss1cxb3yg8y5r1k1h5cyy99s1cfisrn6hqc6xhi"))))
(properties
- `((upstream-name . "statnet.common")))
+ `((upstream-name . "statnet.common")))
(build-system r-build-system)
(propagated-inputs
`(("r-coda" ,r-coda)))
--
2.20.1
This bug report was last modified 5 years and 163 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.