git: a2b527668f42 - main - cleanup: Remove expired ports:
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 31 Aug 2023 20:46:40 UTC
The branch main has been updated by rene: URL: https://cgit.FreeBSD.org/ports/commit/?id=a2b527668f428aa4436239b2b59155bf171f8f31 commit a2b527668f428aa4436239b2b59155bf171f8f31 Author: Rene Ladan <rene@FreeBSD.org> AuthorDate: 2023-08-31 20:46:05 +0000 Commit: Rene Ladan <rene@FreeBSD.org> CommitDate: 2023-08-31 20:46:33 +0000 cleanup: Remove expired ports: 2023-08-31 devel/py-typed-ast: This project is no longer maintained. Use the standard library ast module instead 2023-08-31 devel/py-retype: This project is no longer supported/maintained --- MOVED | 2 ++ devel/Makefile | 2 -- devel/py-retype/Makefile | 29 ----------------------------- devel/py-retype/distinfo | 3 --- devel/py-retype/pkg-descr | 20 -------------------- devel/py-typed-ast/Makefile | 25 ------------------------- devel/py-typed-ast/distinfo | 3 --- devel/py-typed-ast/pkg-descr | 3 --- 8 files changed, 2 insertions(+), 85 deletions(-) diff --git a/MOVED b/MOVED index ec557780e2e7..5bb5293c60d3 100644 --- a/MOVED +++ b/MOVED @@ -7837,3 +7837,5 @@ databases/mysql-connector-java|databases/mysql-connector-j|2023-08-27|Following deskutils/kalendar|deskutils/merkuro|2023-08-28|Renamed upstream www/joomla3|www/joomla4|2023-08-30|Has expired: EOL upstream sysutils/llama|sysutils/walk|2023-08-31|Renamed to match upstream naming +devel/py-typed-ast||2023-08-31|Has expired: This project is no longer maintained. Use the standard library ast module instead +devel/py-retype||2023-08-31|Has expired: This project is no longer supported/maintained diff --git a/devel/Makefile b/devel/Makefile index 04b53656786b..b97c13c8680e 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -5501,7 +5501,6 @@ SUBDIR += py-responses SUBDIR += py-retry2 SUBDIR += py-retrying - SUBDIR += py-retype SUBDIR += py-rfc3339 SUBDIR += py-rfc3339-validator SUBDIR += py-rfc3986-validator @@ -5684,7 +5683,6 @@ SUBDIR += py-txaio SUBDIR += py-txi2p-tahoe SUBDIR += py-typechecks - SUBDIR += py-typed-ast SUBDIR += py-typeguard SUBDIR += py-typer SUBDIR += py-types-Flask diff --git a/devel/py-retype/Makefile b/devel/py-retype/Makefile deleted file mode 100644 index eac75f69070a..000000000000 --- a/devel/py-retype/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -PORTNAME= retype -PORTVERSION= 22.8.0 -CATEGORIES= devel python -MASTER_SITES= PYPI -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} - -MAINTAINER= sunpoet@FreeBSD.org -COMMENT= Re-apply types from .pyi stub files to your codebase -WWW= https://github.com/ambv/retype - -LICENSE= MIT -LICENSE_FILE= ${WRKSRC}/LICENSE - -DEPRECATED= This project is no longer supported/maintained -EXPIRATION_DATE=2023-08-31 - -BUILD_DEPENDS= ${PY_SETUPTOOLS} \ - ${PYTHON_PKGNAMEPREFIX}setuptools_scm>=3.4:devel/py-setuptools_scm@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}wheel>=0.30:devel/py-wheel@${PY_FLAVOR} -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}click>=7:devel/py-click@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pathspec>=0.5.9<1:devel/py-pathspec@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}typed-ast>=1.3:devel/py-typed-ast@${PY_FLAVOR} - -USES= python -USE_PYTHON= autoplist concurrent distutils - -NO_ARCH= yes - -.include <bsd.port.mk> diff --git a/devel/py-retype/distinfo b/devel/py-retype/distinfo deleted file mode 100644 index 7639221068d3..000000000000 --- a/devel/py-retype/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -TIMESTAMP = 1684104462 -SHA256 (retype-22.8.0.tar.gz) = 4439b553c509741f3d08542decdde63365556dced1f4390eae0e22738d839fd9 -SIZE (retype-22.8.0.tar.gz) = 38395 diff --git a/devel/py-retype/pkg-descr b/devel/py-retype/pkg-descr deleted file mode 100644 index 9624033937fd..000000000000 --- a/devel/py-retype/pkg-descr +++ /dev/null @@ -1,20 +0,0 @@ -Re-apply type annotations from .pyi stubs to your codebase. - -It's smart enough to do the following: -- reapply typing imports -- reapply function argument annotations -- reapply function return value annotations -- reapply method argument and return value annotations -- reapply function-level variable annotations -- reapply module-level name annotations -- reapply module-level type aliases -- reapply class-level field annotations -- reapply instance-level field annotations -- validate existing source annotations against the .pyi file -- validate source function signatures against the .pyi file -- read function signature type comments in .pyi files -- read variable type comments in .pyi files -- consider existing source type comments as annotations -- remove duplicate type comments from source when annotations are applied -- normalize remaining type comments in the source to annotations; this is done - even if the corresponding .pyi file is missing diff --git a/devel/py-typed-ast/Makefile b/devel/py-typed-ast/Makefile deleted file mode 100644 index a476010e95f2..000000000000 --- a/devel/py-typed-ast/Makefile +++ /dev/null @@ -1,25 +0,0 @@ -PORTNAME= typed-ast -PORTVERSION= 1.5.5 -CATEGORIES= devel python -MASTER_SITES= PYPI -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTNAME= typed_ast-${PORTVERSION} - -MAINTAINER= sunpoet@FreeBSD.org -COMMENT= Fork of Python ast modules with type comment support -WWW= https://github.com/python/typed_ast - -LICENSE= APACHE20 PSFL -LICENSE_COMB= multi -LICENSE_FILE_APACHE20= ${WRKSRC}/LICENSE - -DEPRECATED= This project is no longer maintained. Use the standard library ast module instead -EXPIRATION_DATE=2023-08-31 - -USES= python -USE_PYTHON= autoplist concurrent distutils - -post-install: - ${FIND} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR} -name '*.so' -exec ${STRIP_CMD} {} + - -.include <bsd.port.mk> diff --git a/devel/py-typed-ast/distinfo b/devel/py-typed-ast/distinfo deleted file mode 100644 index a257d20ca511..000000000000 --- a/devel/py-typed-ast/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -TIMESTAMP = 1688902155 -SHA256 (typed_ast-1.5.5.tar.gz) = 94282f7a354f36ef5dbce0ef3467ebf6a258e370ab33d5b40c249fa996e590dd -SIZE (typed_ast-1.5.5.tar.gz) = 252841 diff --git a/devel/py-typed-ast/pkg-descr b/devel/py-typed-ast/pkg-descr deleted file mode 100644 index 46d80cf14b24..000000000000 --- a/devel/py-typed-ast/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -Typed AST is a fork of the CPython 2.7 and 3.6 ast modules with the ability to -parse PEP 484 type comments. The primary goals of Typed AST are correctness and -speed.