You've already forked macports-ports
mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
ab54401bcb
OmegaConf requires antlr4-python3-runtime==4.9.* at runtime. Signed-off-by: Paul Guyot <pguyot@kallisys.net>
46 lines
1.6 KiB
Tcl
46 lines
1.6 KiB
Tcl
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
|
|
|
|
PortSystem 1.0
|
|
PortGroup github 1.0
|
|
PortGroup python 1.0
|
|
PortGroup java 1.0
|
|
|
|
github.setup omry omegaconf 2.3.0 v
|
|
# Change github.tarball_from to 'releases' or 'archive' next update
|
|
github.tarball_from tarball
|
|
revision 1
|
|
name py-${github.project}
|
|
|
|
license BSD
|
|
maintainers nomaintainer
|
|
platforms {darwin any}
|
|
supported_archs noarch
|
|
|
|
description Flexible Python configuration system. The last one you will ever need.
|
|
|
|
long_description OmegaConf is a hierarchical configuration system, \
|
|
with support for merging configurations from \
|
|
multiple sources (YAML config files, \
|
|
dataclasses/objects and CLI arguments) providing a \
|
|
consistent API regardless of how the configuration \
|
|
was created.
|
|
|
|
checksums rmd160 8e0e345424fc02a11e1c6cc6d922d4bca6f76a46 \
|
|
sha256 e3c8351a5a27c0186ef1e6fdf346d2ad9c55fd29addb8c1637e249afdcb1104c \
|
|
size 3342698
|
|
|
|
python.versions 310 311 312 313 314
|
|
|
|
if {${name} ne ${subport}} {
|
|
# Runs a bundled ANTLR .jar
|
|
java.version 11+
|
|
java.fallback openjdk11
|
|
java.deptypes build
|
|
|
|
# OmegaConf requires antlr4-python3-runtime==4.9.*
|
|
depends_lib-append \
|
|
port:py${python.version}-antlr4-python3-runtime-49
|
|
|
|
test.run yes
|
|
}
|