me
/
guix
Archived
1
0
Fork 0

gnu: r-jpeg: Move to (gnu packages cran).

* gnu/packages/image.scm (r-jpeg): Move from here...
* gnu/packages/cran.scm (r-jpeg): ...to here.
master
Ricardo Wurmus 2019-11-28 18:03:44 +01:00
parent c09f598d94
commit 77e7158c1b
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
2 changed files with 20 additions and 21 deletions

View File

@ -1305,6 +1305,26 @@ applications. That is, compute distances and related measures for angular
(longitude/latitude) locations.")
(license license:gpl3+)))
(define-public r-jpeg
(package
(name "r-jpeg")
(version "0.1-8.1")
(source
(origin
(method url-fetch)
(uri (cran-uri "jpeg" version))
(sha256
(base32
"1a8mi70x79a691r40yiw684jkg1mr9n8agkxlcksxcnrdybs9c0x"))))
(build-system r-build-system)
(inputs `(("libjpeg" ,libjpeg)))
(home-page "http://www.rforge.net/jpeg/")
(synopsis "Read and write JPEG images with R")
(description "This package provides a way to read, write and display
bitmap images stored in the JPEG format with R. It can read and write both
files and in-memory raw vectors.")
(license license:gpl2+)))
(define-public r-ggmap
(package
(name "r-ggmap")

View File

@ -81,7 +81,6 @@
#:use-module (guix build-system cmake)
#:use-module (guix build-system meson)
#:use-module (guix build-system python)
#:use-module (guix build-system r)
#:use-module (guix build-system scons)
#:use-module (srfi srfi-1))
@ -1671,26 +1670,6 @@ Features:
@end itemize\n")
(license license:gpl3+)))
(define-public r-jpeg
(package
(name "r-jpeg")
(version "0.1-8.1")
(source
(origin
(method url-fetch)
(uri (cran-uri "jpeg" version))
(sha256
(base32
"1a8mi70x79a691r40yiw684jkg1mr9n8agkxlcksxcnrdybs9c0x"))))
(build-system r-build-system)
(inputs `(("libjpeg" ,libjpeg)))
(home-page "http://www.rforge.net/jpeg/")
(synopsis "Read and write JPEG images with R")
(description "This package provides a way to read, write and display bitmap
images stored in the JPEG format with R. It can read and write both files and
in-memory raw vectors.")
(license license:gpl2+)))
(define-public gifsicle
(package
(name "gifsicle")