You've already forked macports-ports
mirror of
https://github.com/macports/macports-ports.git
synced 2026-03-31 14:42:53 -07:00
41 lines
1.2 KiB
Tcl
41 lines
1.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-python-lsp-ruff
|
|
version 2.3.0
|
|
revision 0
|
|
|
|
categories-append devel
|
|
platforms {darwin any}
|
|
supported_archs noarch
|
|
license MIT
|
|
maintainers {reneeotten @reneeotten} openmaintainer
|
|
|
|
description Ruff linting plugin for pylsp
|
|
long_description {*}${description}
|
|
|
|
homepage https://github.com/python-lsp/python-lsp-ruff
|
|
|
|
distname python_lsp_ruff-${version}
|
|
|
|
checksums rmd160 c95bc55c632542d9ad958ab0af4b21ef3e06a9d6 \
|
|
sha256 647745b7f3010ac101e3c53a797b8f9deb1f52228b608d70ad0e8e056978c3b7 \
|
|
size 17268
|
|
|
|
python.versions 310 311 312 313 314
|
|
|
|
if {${name} ne ${subport}} {
|
|
depends_lib-append \
|
|
port:py${python.version}-cattrs \
|
|
port:py${python.version}-lsprotocol \
|
|
port:py${python.version}-python-lsp-server \
|
|
port:ruff
|
|
|
|
if {${python.version} < 311} {
|
|
depends_lib-append \
|
|
port:py${python.version}-tomli
|
|
}
|
|
}
|