Commit a2b52766 authored by Rene Ladan's avatar Rene Ladan
Browse files

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
parent 9376c665
Loading
Loading
Loading
Loading
+2 −0
Original line number Original line Diff line number Diff line
@@ -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
deskutils/kalendar|deskutils/merkuro|2023-08-28|Renamed upstream
www/joomla3|www/joomla4|2023-08-30|Has expired: EOL upstream
www/joomla3|www/joomla4|2023-08-30|Has expired: EOL upstream
sysutils/llama|sysutils/walk|2023-08-31|Renamed to match upstream naming
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
+0 −2
Original line number Original line Diff line number Diff line
@@ -5501,7 +5501,6 @@
    SUBDIR += py-responses
    SUBDIR += py-responses
    SUBDIR += py-retry2
    SUBDIR += py-retry2
    SUBDIR += py-retrying
    SUBDIR += py-retrying
    SUBDIR += py-retype
    SUBDIR += py-rfc3339
    SUBDIR += py-rfc3339
    SUBDIR += py-rfc3339-validator
    SUBDIR += py-rfc3339-validator
    SUBDIR += py-rfc3986-validator
    SUBDIR += py-rfc3986-validator
@@ -5684,7 +5683,6 @@
    SUBDIR += py-txaio
    SUBDIR += py-txaio
    SUBDIR += py-txi2p-tahoe
    SUBDIR += py-txi2p-tahoe
    SUBDIR += py-typechecks
    SUBDIR += py-typechecks
    SUBDIR += py-typed-ast
    SUBDIR += py-typeguard
    SUBDIR += py-typeguard
    SUBDIR += py-typer
    SUBDIR += py-typer
    SUBDIR += py-types-Flask
    SUBDIR += py-types-Flask

devel/py-retype/Makefile

deleted100644 → 0
+0 −29
Original line number Original line Diff line number Diff line
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>

devel/py-retype/distinfo

deleted100644 → 0
+0 −3
Original line number Original line Diff line number Diff line
TIMESTAMP = 1684104462
SHA256 (retype-22.8.0.tar.gz) = 4439b553c509741f3d08542decdde63365556dced1f4390eae0e22738d839fd9
SIZE (retype-22.8.0.tar.gz) = 38395

devel/py-retype/pkg-descr

deleted100644 → 0
+0 −20
Original line number Original line Diff line number Diff line
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
Loading