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 litescope #26093

Merged
merged 3 commits into from
May 10, 2024
Merged
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/litescope/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{% set name = "litescope" %}
{% set version = "2023.12" %}
{% set sha256 = "dfc0ae42c87c315753332f2eab90570eae302ef1526c1cd1d12cae91159175b3" %}

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

source:
fn: {{ version }}.tar.gz
url: https://github.com/enjoy-digital/{{ name }}/archive/refs/tags/{{ version }}.tar.gz
sha256: {{ sha256 }}

build:
number: 0
noarch: python
script: {{ PYTHON }} -m pip install . -vv --no-build-isolation --no-deps
entry_points:
- litescope_cli = litescope.software.litescope_cli:main

requirements:
host:
- python >=3.7
- pip
run:
- python >=3.7
- litex >=2023.08
- migen

test:
imports:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please add a call to pip check or a comment of why you are omitting it.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same as lite* #26117 (comment)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this work is under the umbrella of enjoy-digital/liteeth#159 in case you're curious

- litescope
commands:
- litescope_cli --help

about:
home: https://github.com/enjoy-digital/litescope
license: BSD-2-Clause
license_family: BSD
license_file: LICENSE
summary: Small footprint and configurable embedded FPGA logic analyzer
description: Small footprint and configurable embedded FPGA logic analyzer
dev_url: https://github.com/enjoy-digital/litescope

extra:
recipe-maintainers:
- timkpaine