You've already forked macports-ports
mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
60 lines
2.2 KiB
Tcl
60 lines
2.2 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 python 1.0
|
|
|
|
name py-tomli
|
|
version 2.4.1
|
|
license MIT
|
|
platforms {darwin any}
|
|
supported_archs noarch
|
|
maintainers {toby @tobypeterson} openmaintainer
|
|
description A lil' TOML parser
|
|
long_description Tomli is a Python library for parsing TOML. Tomli is fully \
|
|
compatible with TOML v1.0.0.
|
|
|
|
homepage https://github.com/hukkin/tomli
|
|
|
|
checksums rmd160 b1cd00c798bea70430e0f8e2f9406d9085bb00c6 \
|
|
sha256 7c7e1a961a0b2f2472c1ac5b69affa0ae1132c39adcb67aba98568702b9cc23f \
|
|
size 17543
|
|
|
|
# Do not add additional versions, nothing should be using this in Python 3.11 or newer.
|
|
python.versions 36 37 38 39 310 311
|
|
|
|
if {${name} ne ${subport}} {
|
|
if {${python.version} == 36} {
|
|
version 1.2.3
|
|
revision 0
|
|
checksums rmd160 cbdb7cfc45e9183147842cd799b5e4bbb0aef34b \
|
|
sha256 05b6166bff487dc068d322585c7ea4ef78deed501cc124060e0f238e89a9231f \
|
|
size 15094
|
|
set bootstrap_portname py36-bootstrap-modules
|
|
} elseif {${python.version} == 37} {
|
|
version 2.0.1
|
|
revision 0
|
|
checksums rmd160 08391b8bdece5ba4b13e0e67e0bb3f0a3de9cc55 \
|
|
sha256 de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f \
|
|
size 15164
|
|
set bootstrap_portname py-bootstrap-modules
|
|
} else {
|
|
set bootstrap_portname py-bootstrap-modules
|
|
}
|
|
|
|
python.pep517 yes
|
|
python.pep517_backend flit
|
|
|
|
if {${python.version} < 311} {
|
|
# Break circular dependencies with py-build and friends when
|
|
# there is no tomllib in the stdlib.
|
|
python.add_dependencies no
|
|
depends_build port:${bootstrap_portname}
|
|
depends_lib port:python${python.version}
|
|
build.env-append PYTHONPATH=${prefix}/share/${bootstrap_portname}
|
|
build.args --skip-dependency-check
|
|
destroot.env-append PYTHONPATH=${prefix}/share/${bootstrap_portname}
|
|
}
|
|
|
|
livecheck.type none
|
|
}
|