forked from conda-forge/staged-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding conda-recipe-manager as a conda-forge feedstock
- This will allow us to start publishing versions that others can consume - The most immediate need is for an [ask in Grayskull](conda/grayskull#486)
- Loading branch information
1 parent
920d1cd
commit 658c9f9
Showing
2 changed files
with
91 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
BSD 3-Clause License | ||
|
||
Copyright (c) 2024, conda-incubator | ||
Copyright (c) 2012, Anaconda, Inc. | ||
Copyright (c) 2015-2022, conda-forge | ||
Copyright (c) 2015-2022 The Bioconda team | ||
Copyright (c) 2015-2022, conda-forge contributors | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
|
||
1. Redistributions of source code must retain the above copyright notice, this | ||
list of conditions and the following disclaimer. | ||
|
||
2. Redistributions in binary form must reproduce the above copyright notice, | ||
this list of conditions and the following disclaimer in the documentation | ||
and/or other materials provided with the distribution. | ||
|
||
3. Neither the name of the copyright holder nor the names of its | ||
contributors may be used to endorse or promote products derived from | ||
this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE | ||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
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 |
---|---|---|
@@ -0,0 +1,59 @@ | ||
{% set name = "conda-recipe-manager" %} | ||
{% set version = "0.2.0" %} | ||
|
||
package: | ||
name: {{ name|lower }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://github.com/conda-incubator/conda-recipe-manager/archive/refs/tags/v{{ version }}.tar.gz | ||
sha256: e26102b317ff6bb2d63040db10cfee4db9d660447c3f1c076ddd524805abd1b2 | ||
|
||
build: | ||
number: 0 | ||
noarch: python | ||
script: pip install . --no-deps --no-build-isolation -vv | ||
entry_points: | ||
- conda-recipe-manager = conda_recipe_manager.commands.conda_recipe_manager:conda_recipe_manager | ||
|
||
requirements: | ||
host: | ||
- python | ||
- pip | ||
- setuptools | ||
- wheel | ||
run: | ||
- python >=3.11 | ||
- click >=8.1.7 | ||
- conda | ||
- jinja2 | ||
- pyyaml | ||
- jsonschema | ||
- requests | ||
|
||
test: | ||
imports: | ||
- conda_recipe_manager.commands | ||
- conda_recipe_manager.licenses | ||
- conda_recipe_manager.parser | ||
source_files: | ||
- tests/ | ||
requires: | ||
- pip | ||
- pytest | ||
- pytest-xdist | ||
commands: | ||
- pip check | ||
- python -m pytest -n auto tests/ | ||
|
||
about: | ||
home: https://github.com/anaconda/conda-recipe-manager | ||
license: BSD-3-Clause | ||
license_family: BSD | ||
license_file: LICENSE | ||
license_url: https://github.com/anaconda/conda-recipe-manager/blob/main/LICENSE | ||
summary: Helper tool for recipes on aggregate. | ||
description: | | ||
Renders local recipes, provides build orders, find outdated recipes. | ||
doc_url: https://github.com/anaconda/conda-recipe-manager | ||
dev_url: https://github.com/anaconda/conda-recipe-manager |