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 py3 antlr4 python runtime. #10415

Merged
merged 1 commit into from
Dec 26, 2023
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
46 changes: 46 additions & 0 deletions py3-antlr4-python3-runtime.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
package:
name: py3-antlr4-python3-runtime
version: 4.13.1
epoch: 0
description: ANTLR runtime for Python 3
copyright:
- license: BSD-3
dependencies:
runtime:
- python-3

environment:
contents:
packages:
- build-base
- busybox
- ca-certificates-bundle
- py3-gpep517
- py3-pip
- py3-setuptools
- py3-wheel
- wolfi-base

pipeline:
- uses: git-checkout
with:
expected-commit: 7ed420ff2c78d62883875c442d75f32e73bc86c8
repository: https://github.com/antlr/antlr4
tag: ${{package.version}}

- runs: |
cd runtime/Python3
export SETUPTOOLS_SCM_PRETEND_VERSION=${{package.version}}
python3 -m pip install -U poetry
python3 -m gpep517 build-wheel \
--wheel-dir dist \
--output-fd 3 3>&1 >&2
python3 -m installer -d "${{targets.destdir}}" \
dist/*.whl

- uses: strip

update:
enabled: true
github:
identifier: antlr/antlr4
Loading