Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add bug demo #17192

Closed
wants to merge 1 commit into from
Closed
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
47 changes: 47 additions & 0 deletions recipes/bug/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# Note: there are many handy hints in comments in this example -- remove them when you've finalized your recipe

# Jinja variables help maintain the recipe as you'll update the version only here.
# Using the name variable with the URL in line 14 is convenient
# when copying and pasting from another recipe, but not really needed.
{% set name = "simplejson" %}
{% set version = "3.8.2" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://github.com/michaeleisel/zld/archive/refs/tags/1.3.3.zip
sha256: 89d9682a8d923ecd7fffd73753b32127326543d9ad678595fe63c25aae373b5b

build:
skip: True # [not (linux and cdt_name == 'cos7')]
number: 0
script: wormhole --help

requirements:
build:
- magic-wormhole # [linux]
- sysroot_linux-64 2.17 # [linux]

test:
commands:
- echo done

about:
home: https://github.com/michaeleisel/zld
# Remember to specify the license variants for BSD, Apache, GPL, and LGPL.
# Use the SPDX identifier, e.g: GPL-2.0-only instead of GNU General Public License version 2.0
# See https://spdx.org/licenses/
license: MIT
# The license_family, i.e. "BSD" if license is "BSD-3-Clause". (optional)
license_family: MIT
# It is strongly encouraged to include a license file in the package,
# (even if the license doesn't require it) using the license_file entry.
# See https://docs.conda.io/projects/conda-build/en/latest/resources/define-metadata.html#license-file
license_file: LICENSE
summary: 'Bug demo'

extra:
recipe-maintainers:
- matter-it-does