Skip to content

Commit 4cac0b2

Browse files
committed
Actually add test YAML files
1 parent ac02c67 commit 4cac0b2

File tree

2 files changed

+142
-0
lines changed

2 files changed

+142
-0
lines changed
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
schema_version: 1
2+
3+
context:
4+
version: 2.0.0
5+
posix: ${{'m2-' if win else ''}}
6+
native: ${{'m2w64-' if win else ''}}
7+
8+
package:
9+
name: r-magrittr
10+
version: ${{ version|replace("-", "_") }}
11+
12+
source:
13+
url:
14+
- https://cran.r-project.org/src/contrib/magrittr_${{ version }}.tar.gz
15+
- https://cran.r-project.org/src/contrib/Archive/magrittr/magrittr_${{ version }}.tar.gz
16+
sha256: 05c45943ada9443134caa0ab24db4a962b629f00b755ccf039a2a2a7b2c92ae8
17+
18+
build:
19+
number: 1
20+
dynamic_linking:
21+
rpaths:
22+
- lib/R/lib/
23+
- lib/
24+
25+
requirements:
26+
build:
27+
- if: not win
28+
then: ${{ compiler('c') }}
29+
- if: win
30+
then: ${{ compiler('m2w64_c') }}
31+
- if: win
32+
then: ${{ posix }}filesystem
33+
- ${{ posix }}make
34+
- if: win
35+
then: ${{ posix }}sed
36+
- if: win
37+
then: ${{ posix }}coreutils
38+
- if: win
39+
then: ${{ posix }}zip
40+
host:
41+
- r-base
42+
- r-rlang
43+
run:
44+
- r-base
45+
- r-rlang
46+
- if: win
47+
then: ${{ native }}gcc-libs
48+
49+
tests:
50+
- script:
51+
- if: not win
52+
then: "$R -e \"library('magrittr')\""
53+
- if: win
54+
then: "\"%R%\" -e \"library('magrittr')\""
55+
56+
about:
57+
license: MIT
58+
summary: |
59+
Provides a mechanism for chaining commands with a new forward-pipe operator, %>%. This operator will forward a value, or the result of an expression, into the next function call/expression. There is flexible support for the type of right-hand side expressions. For more information, see package vignette. To quote
60+
Rene Magritte, "Ceci n'est pas un pipe."
61+
license_file:
62+
- lib/R/share/licenses/MIT
63+
- LICENSE
64+
homepage: https://magrittr.tidyverse.org
65+
66+
extra:
67+
recipe-maintainers:
68+
- conda-forge/r
69+
- ocefpaf
Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
schema_version: 1
2+
3+
context:
4+
version: "2.0.1"
5+
posix: ${{'m2-' if win else ''}}
6+
native: ${{'m2w64-' if win else ''}}
7+
8+
package:
9+
name: r-magrittr
10+
version: ${{ version|replace("-", "_") }}
11+
12+
source:
13+
url:
14+
- https://cran.r-project.org/src/contrib/magrittr_${{ version }}.tar.gz
15+
- https://cran.r-project.org/src/contrib/Archive/magrittr/magrittr_${{ version }}.tar.gz
16+
sha256: 75c265d51cc2b34beb27040edb09823c7b954d3990a7a931e40690b75d4aad5f
17+
18+
build:
19+
number: 0
20+
dynamic_linking:
21+
rpaths:
22+
- lib/R/lib/
23+
- lib/
24+
25+
requirements:
26+
build:
27+
- if: build_platform != target_platform
28+
then:
29+
- cross-r-base ${{ r_base }}
30+
- r-rlang
31+
- if: not win
32+
then: ${{ compiler('c') }}
33+
- if: win
34+
then: ${{ compiler('m2w64_c') }}
35+
- if: win
36+
then: ${{ posix }}filesystem
37+
- ${{ posix }}make
38+
- if: win
39+
then: ${{ posix }}sed
40+
- if: win
41+
then: ${{ posix }}coreutils
42+
- if: win
43+
then: ${{ posix }}zip
44+
host:
45+
- r-base
46+
- r-rlang
47+
run:
48+
- r-base
49+
- r-rlang
50+
- if: win
51+
then: ${{ native }}gcc-libs
52+
53+
tests:
54+
- script:
55+
- if: not win
56+
then: "$R -e \"library('magrittr')\""
57+
- if: win
58+
then: "\"%R%\" -e \"library('magrittr')\""
59+
60+
about:
61+
license: MIT
62+
summary: |
63+
Provides a mechanism for chaining commands with a new forward-pipe operator, %>%. This operator will forward a value, or the result of an expression, into the next function call/expression. There is flexible support for the type of right-hand side expressions. For more information, see package vignette. To quote
64+
Rene Magritte, "Ceci n'est pas un pipe."
65+
license_file:
66+
- lib/R/share/licenses/MIT
67+
- LICENSE
68+
homepage: https://magrittr.tidyverse.org
69+
70+
extra:
71+
recipe-maintainers:
72+
- conda-forge/r
73+
- ocefpaf

0 commit comments

Comments
 (0)