-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
80e7c3b
commit 7d19a20
Showing
1 changed file
with
22 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{% set version = '1.1.0' %} | ||
{% set version = '2.1.0' %} | ||
|
||
{% set posix = 'm2-' if win else '' %} | ||
{% set native = 'm2w64-' if win else '' %} | ||
|
@@ -11,7 +11,7 @@ source: | |
url: | ||
- {{ cran_mirror }}/src/contrib/farver_{{ version }}.tar.gz | ||
- {{ cran_mirror }}/src/contrib/Archive/farver/farver_{{ version }}.tar.gz | ||
sha256: 2086f309135f37705280fe2df851ad91dc886ad8f2a6eb1f3983aa20427f94b6 | ||
sha256: e5c8630607049f682fb3002b99ca4f5e7c6b94f8b2a4342df594e7853b77cef4 | ||
|
||
build: | ||
merge_build_host: True # [win] | ||
|
@@ -24,27 +24,25 @@ build: | |
- lib/R/lib/ | ||
- lib/ | ||
|
||
# Suggests: testthat, covr | ||
# Suggests: testthat (>= 2.1.0), covr | ||
requirements: | ||
build: | ||
- {{ compiler('c') }} # [not win] | ||
- {{ compiler('m2w64_c') }} # [win] | ||
- {{ compiler('cxx') }} # [not win] | ||
- {{ compiler('m2w64_cxx') }} # [win] | ||
- {{posix}}filesystem # [win] | ||
- {{posix}}make | ||
- {{posix}}sed # [win] | ||
- {{posix}}coreutils # [win] | ||
- {{posix}}zip # [win] | ||
- {{ posix }}filesystem # [win] | ||
- {{ posix }}make | ||
- {{ posix }}sed # [win] | ||
- {{ posix }}coreutils # [win] | ||
- {{ posix }}zip # [win] | ||
|
||
host: | ||
- r-base | ||
- r-rcpp >=0.12.15 | ||
|
||
run: | ||
- r-base | ||
- {{native}}gcc-libs # [win] | ||
- r-rcpp >=0.12.15 | ||
|
||
test: | ||
commands: | ||
|
@@ -59,14 +57,14 @@ test: | |
# Put any additional test requirements here. | ||
|
||
about: | ||
home: https://github.com/thomasp85/farver | ||
home: https://farver.data-imaginist.com, https://github.com/thomasp85/farver | ||
license: MIT | ||
summary: The encoding of colour can be handled in many different ways, using different colour | ||
spaces. As different colour spaces have different uses, efficient conversion between | ||
these representations are important. The 'farver' package provides a set of functions | ||
these representations are important. The 'farver' package provides a set of functions | ||
that gives access to very fast colour space conversion and comparisons implemented | ||
in C++, and offers 100-fold speed improvements over the 'convertColor' function | ||
in the 'grDevices' package. | ||
in C++, and offers speed improvements over the 'convertColor' function in the 'grDevices' | ||
package. | ||
license_family: MIT | ||
license_file: | ||
- '{{ environ["PREFIX"] }}/lib/R/share/licenses/MIT' | ||
|
@@ -80,26 +78,23 @@ extra: | |
|
||
# Package: farver | ||
# Type: Package | ||
# Title: Vectorised Colour Conversion and Comparison | ||
# Version: 1.1.0 | ||
# Date: 2018-11-20 | ||
# Authors@R: c(person(given = "Thomas Lin", family = "Pedersen", role = c("cre", "aut"), email = "[email protected]"), person(given = "Berendea", family = "Nicolae", role = "aut", comment = "Author of the ColorSpace C++ library"), person(given = "Romain", family = "Francois", role = "aut", email = "[email protected]", comment = c(ORCID = "0000-0002-2444-4226")) ) | ||
# Title: High Performance Colour Space Manipulation | ||
# Version: 2.1.0 | ||
# Authors@R: c(person(given = "Thomas Lin", family = "Pedersen", role = c("cre", "aut"), email = "[email protected]", comment = c(ORCID = "0000-0002-5147-4711")), person(given = "Berendea", family = "Nicolae", role = "aut", comment = "Author of the ColorSpace C++ library"), person(given = "Romain", family = "Francois", role = "aut", email = "[email protected]", comment = c(ORCID = "0000-0002-2444-4226")) ) | ||
# Maintainer: Thomas Lin Pedersen <[email protected]> | ||
# Description: The encoding of colour can be handled in many different ways, using different colour spaces. As different colour spaces have different uses, efficient conversion between these representations are important. The 'farver' package provides a set of functions that gives access to very fast colour space conversion and comparisons implemented in C++, and offers 100-fold speed improvements over the 'convertColor' function in the 'grDevices' package. | ||
# Description: The encoding of colour can be handled in many different ways, using different colour spaces. As different colour spaces have different uses, efficient conversion between these representations are important. The 'farver' package provides a set of functions that gives access to very fast colour space conversion and comparisons implemented in C++, and offers speed improvements over the 'convertColor' function in the 'grDevices' package. | ||
# License: MIT + file LICENSE | ||
# Encoding: UTF-8 | ||
# SystemRequirements: C++11 | ||
# Imports: Rcpp (>= 0.12.15) | ||
# LinkingTo: Rcpp | ||
# RoxygenNote: 6.1.1 | ||
# URL: https://github.com/thomasp85/farver | ||
# RoxygenNote: 7.1.1 | ||
# URL: https://farver.data-imaginist.com, https://github.com/thomasp85/farver | ||
# BugReports: https://github.com/thomasp85/farver/issues | ||
# Suggests: testthat, covr | ||
# Suggests: testthat (>= 2.1.0), covr | ||
# NeedsCompilation: yes | ||
# Packaged: 2018-11-20 20:28:26 UTC; thomas | ||
# Author: Thomas Lin Pedersen [cre, aut], Berendea Nicolae [aut] (Author of the ColorSpace C++ library), Romain Francois [aut] (<https://orcid.org/0000-0002-2444-4226>) | ||
# Packaged: 2021-02-28 19:00:15 UTC; thomas | ||
# Author: Thomas Lin Pedersen [cre, aut] (<https://orcid.org/0000-0002-5147-4711>), Berendea Nicolae [aut] (Author of the ColorSpace C++ library), Romain Francois [aut] (<https://orcid.org/0000-0002-2444-4226>) | ||
# Repository: CRAN | ||
# Date/Publication: 2018-11-20 20:50:08 UTC | ||
# Date/Publication: 2021-02-28 19:30:02 UTC | ||
|
||
# See | ||
# https://docs.conda.io/projects/conda-build for | ||
|