Skip to content

Commit c1ef266

Browse files
authored
docs: mention feedrattler (#1644)
1 parent 561c070 commit c1ef266

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

docs/converting_from_conda_build.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,3 +180,24 @@ The `script` tests also take a `requirements` section with `run` and `build`
180180
requirements. The `build` requirements can be used to install emulators and
181181
similar tools that need to run to execute tests in a cross-compilation
182182
environment.
183+
184+
# Automatic feedstock conversion
185+
186+
Use the tool [`feedrattler`](https://github.com/hadim/feedrattler) by [hadim](https://github.com/hadim) to go directly from an existing conda-forge v0 recipe feedstock to the new v1 recipe used by rattler-build.
187+
188+
You can install and use it directly by running `pixi exec`:
189+
```
190+
pixi exec feedrattler my-awesome-feedstock
191+
```
192+
193+
It uses the `conda-recipe-manager` for the generation of the recipe and `gh` or a `GITHUB_TOKEN` for creating the conversion PR in your name.
194+
195+
Alternative installation:
196+
```
197+
# Globally install the tool
198+
pixi global install feedrattler
199+
# or in a workspace
200+
pixi add feedrattler
201+
# or using conda/mamba
202+
conda install -c conda-forge feedrattler
203+
```

0 commit comments

Comments
 (0)