You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, I am trying to create conda packages for IMAS-related libraries.
To retrieve dependencies through the conda-forge repository, I propose providing UDA-related conda packages.
I would like to share configure files I created, which are used by rattler-build conda package build tool:
recipe.yaml
context:
name: UDAversion: "2.8.0"username: ukaearecipe:
name: ${{ name|lower }}version: ${{ version }}source:
url: https://github.com//${{ username }}/${{ name }}/archive/refs/tags/${{ version }}.tar.gzsha256: decfe8af6a6cdf1913695f8ed8ae6eadbe86aa6eaf995af0d665bb7e39bf3650outputs:
- package:
name: ${{ name|lower }}-client-cppversion: ${{ version }}build:
number: 0script:
- if: unixthen: build-client-cpp.sh
- if: winthen: build-client-cpp.batrequirements:
build:
- ${{ compiler("cxx") }}
- git
- cmake
- ninja
- pkg-confighost:
- libxml2
- libboost-devel
- fmt
- openssl
- capnprotorun_exports:
- uda-client-cppabout:
homepage: https://ukaea.github.io/UDA/summary: Universal Data Access library to provide data over the network in a unified data object.description: | The UDA can be either run as a client-server API, running as thin client with all functionality being handled on a remote server, or as fat-client API where both the client access and plugin functionality is run on the local machine.license: Apache-2.0license_file: LICENCE.txtdocumentation: https://ukaea.github.io/UDA/repository: https://github.com/ukaea/UDAextra:
feedstock-name: uda-feedstockrecipe-maintainers:
- munechika-koyo
Hello!
Currently, I am trying to create conda packages for IMAS-related libraries.
To retrieve dependencies through the conda-forge repository, I propose providing UDA-related conda packages.
I would like to share configure files I created, which are used by
rattler-build
conda package build tool:recipe.yaml
build-client-cpp.sh
variants.yaml
The recipe is designed to reproduce several output packages like
How to build conda package by
rattler-build
If you install
rattler-build
, please run the following commands:I would appreciate it if you would consider this proposal and share what outputs we should offer.
The text was updated successfully, but these errors were encountered: