Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions conda-forge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ github:
provider:
linux_aarch64: default
linux_ppc64le: default
conda_build_tool: rattler-build
test: native_and_emulated
File renamed without changes.
103 changes: 0 additions & 103 deletions recipe/meta.yaml

This file was deleted.

96 changes: 96 additions & 0 deletions recipe/recipe.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
context:
version: "0.10.0"
build_number: 1

package:
name: xeus-r
version: ${{ version }}

source:
url: https://github.com/jupyter-xeus/xeus-r/archive/${{ version }}.tar.gz
sha256: 2c13cab2c362e84e56aa70ed46b4700c6a6346b4ef2366fd4789f6ebe82617bc

build:
number: ${{ build_number }}
rpaths:
- lib/R/lib/
- lib/
missing_dso_whitelist:
- '*/R.dll' # [win]

requirements:
build:
- {{ compiler('cxx') }}
- {{ stdlib("c") }}
- cmake
- make # [unix]
- pkg-config
# Dependencies for hera
- if: build_platform != target_platform
then:
- r-base
- cross-r-base
- r-cli
- r-evaluate
- r-glue
- r-IRDisplay
- r-jsonlite
- r-r6
- r-repr
- r-rlang
host:
- xeus >=6,<7
- xeus-zmq >=4.0,<5.0
- nlohmann_json >=3.11.3,<4
- nlohmann_json-abi
- r-base
# Dependencies for hera
- r-cli
- r-evaluate
- r-glue
- r-IRdisplay
- r-jsonlite
- r-r6
- r-repr
- r-rlang
run:
- r-base
- r-cli
- r-evaluate
- r-glue
- r-IRdisplay
- r-jsonlite
- r-r6
- r-repr
- r-rlang

tests:
- package_contents:
files:
exists:
- ${{ "Library/" if win }}bin/xr
- ${{ "Library/" if win }}share/jupyter/kernels/xr/kernel.json
- ${{ "Library/" if win }}include/xeus-r/xinterpreter.hpp
- ${{ "Library/" if win }}lib/cmake/xeus-r/xeus-rConfig.cmake
- ${{ "Library/" if win }}lib/cmake/xeus-r/xeus-rConfigVersion.cmake
- if: unix
then:
- lib/R/library/hera/R/hera.rdb

about:
homepage: https://github.com/jupyter-xeus/xeus-r
repository: https://github.com/jupyter-xeus/xeus-r
license: GPL-3.0-only
license_family: GPL
license_file: LICENSE
summary: R kernel for Jupyter based on xeus
description: Jupyter kernel for the R programming language
documentation: https://xeus-r.readthedocs.io

extra:
recipe-maintainers:
- IsabelParedes
- JohanMabille
- DerThorsten
- SylvainCorlay
- romainfrancois
Loading