aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPo-Chuan Hsieh <sunpoet@FreeBSD.org>2026-04-05 16:51:16 +0000
committerPo-Chuan Hsieh <sunpoet@FreeBSD.org>2026-04-05 17:18:00 +0000
commit0c6cd1ed1e3c8c84d273c75fdb475e92dbf93a32 (patch)
tree407946a2de8160b028d3639ef1637ef5c71c186b
parent1af15cb21094259cda0377a0d35295be43bc4321 (diff)
devel/py-libcst03: Remove obsoleted port
Use devel/py-libcst instead.
-rw-r--r--MOVED1
-rw-r--r--devel/Makefile1
-rw-r--r--devel/py-libcst03/Makefile32
-rw-r--r--devel/py-libcst03/distinfo3
-rw-r--r--devel/py-libcst03/pkg-descr10
5 files changed, 1 insertions, 46 deletions
diff --git a/MOVED b/MOVED
index 96de195e239a..b4822daec8d6 100644
--- a/MOVED
+++ b/MOVED
@@ -5226,3 +5226,4 @@ textproc/lexilla||2026-04-01|Has expired: No consumers left in the tree, the lib
x11-toolkits/scintilla||2026-04-01|Has expired: No consumers left in the tree, the library is intended to be bundled
security/py-shodan|net/py-shodan|2026-04-03|Remove duplicate port. Use net/py-shodan instead
devel/py-jsonschema-spec|devel/py-jsonschema-path|2026-04-05|Remove obsoleted port. Use devel/py-jsonschema-path instead
+devel/py-libcst03|devel/py-libcst|2026-04-05|Remove obsoleted port. Use devel/py-libcst instead
diff --git a/devel/Makefile b/devel/Makefile
index 0578315870bc..1b05727f7718 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -5247,7 +5247,6 @@
SUBDIR += py-legacy-api-wrap
SUBDIR += py-levenshtein
SUBDIR += py-libcst
- SUBDIR += py-libcst03
SUBDIR += py-libevdev
SUBDIR += py-libioc
SUBDIR += py-libpeas
diff --git a/devel/py-libcst03/Makefile b/devel/py-libcst03/Makefile
deleted file mode 100644
index ab5cc77ff7e7..000000000000
--- a/devel/py-libcst03/Makefile
+++ /dev/null
@@ -1,32 +0,0 @@
-PORTNAME= libcst
-PORTVERSION= 0.3.23
-PORTREVISION= 2
-CATEGORIES= devel python
-MASTER_SITES= PYPI
-PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
-PKGNAMESUFFIX= 03
-
-MAINTAINER= sunpoet@FreeBSD.org
-COMMENT= Concrete syntax tree with AST-like properties
-WWW= https://github.com/Instagram/LibCST
-
-LICENSE= MIT
-LICENSE_FILE= ${WRKSRC}/LICENSE
-
-BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>=0:devel/py-setuptools@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}setuptools-scm>=0:devel/py-setuptools-scm@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR}
-RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyyaml>=5.2:devel/py-pyyaml@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}typing-extensions>=3.7.4.2:devel/py-typing-extensions@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}typing-inspect>=0.4.0:devel/py-typing-inspect@${PY_FLAVOR}
-
-USES= python
-USE_PYTHON= autoplist concurrent pep517
-
-NO_ARCH= yes
-
-CONFLICTS_INSTALL= ${PYTHON_PKGNAMEPREFIX}libcst
-
-PORTSCOUT= limit:^0\.3\.
-
-.include <bsd.port.mk>
diff --git a/devel/py-libcst03/distinfo b/devel/py-libcst03/distinfo
deleted file mode 100644
index 2425179ba82f..000000000000
--- a/devel/py-libcst03/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1638556576
-SHA256 (libcst-0.3.23.tar.gz) = 330f9082a309bad808e283e80845a843200303bb256690185b98ca458a62c4f8
-SIZE (libcst-0.3.23.tar.gz) = 579195
diff --git a/devel/py-libcst03/pkg-descr b/devel/py-libcst03/pkg-descr
deleted file mode 100644
index 74375e1c900e..000000000000
--- a/devel/py-libcst03/pkg-descr
+++ /dev/null
@@ -1,10 +0,0 @@
-LibCST is a Concrete Syntax Tree (CST) parser and serializer library for Python.
-
-LibCST parses Python source code as a CST tree that keeps all formatting details
-(comments, whitespaces, parentheses, etc). It's useful for building automated
-refactoring (codemod) applications and linters.
-
-LibCST creates a compromise between an Abstract Syntax Tree (AST) and a
-traditional Concrete Syntax Tree (CST). By carefully reorganizing and naming
-node types and fields, we've created a lossless CST that looks and feels like an
-AST.