git: 0930e64bfd87 - main - databases/py-alembic14: Remove expired port

From: Rene Ladan <rene_at_FreeBSD.org>
Date: Tue, 11 Jun 2024 15:25:34 UTC
The branch main has been updated by rene:

URL: https://cgit.FreeBSD.org/ports/commit/?id=0930e64bfd878af29e7aaed940867664ada8d721

commit 0930e64bfd878af29e7aaed940867664ada8d721
Author:     Rene Ladan <rene@FreeBSD.org>
AuthorDate: 2024-06-11 15:25:27 +0000
Commit:     Rene Ladan <rene@FreeBSD.org>
CommitDate: 2024-06-11 15:25:27 +0000

    databases/py-alembic14: Remove expired port
    
    2024-06-04 databases/py-alembic14: Depends on expired databases/py-sqlalchemy12
---
 MOVED                            |  1 +
 databases/Makefile               |  1 -
 databases/py-alembic14/Makefile  | 38 --------------------------------------
 databases/py-alembic14/distinfo  |  3 ---
 databases/py-alembic14/pkg-descr | 12 ------------
 5 files changed, 1 insertion(+), 54 deletions(-)

diff --git a/MOVED b/MOVED
index 1a81e4fd6765..4393893ca091 100644
--- a/MOVED
+++ b/MOVED
@@ -3279,3 +3279,4 @@ devel/rubygem-gettext_i18n_rails111|devel/rubygem-gettext_i18n_rails|2024-06-09|
 databases/rubygem-redis-clustering50|databases/rubygem-redis-clustering|2024-06-09|Obsolete use databases/rubygem-redis-clustering instead
 databases/rubygem-redis50|databases/rubygem-redis|2024-06-09|Obsolete use databases/rubygem-redis instead
 math/py-optuna||2024-06-11|Has expired: Depends on expired databases/py-sqlalchemy12
+databases/py-alembic14||2024-06-11|Has expired: Depends on expired databases/py-sqlalchemy12
diff --git a/databases/Makefile b/databases/Makefile
index c77891ba3f2c..a0fdfee835e2 100644
--- a/databases/Makefile
+++ b/databases/Makefile
@@ -727,7 +727,6 @@
     SUBDIR += py-aioredis
     SUBDIR += py-aiosqlite
     SUBDIR += py-alembic
-    SUBDIR += py-alembic14
     SUBDIR += py-apache-arrow
     SUBDIR += py-apsw
     SUBDIR += py-asyncmy
diff --git a/databases/py-alembic14/Makefile b/databases/py-alembic14/Makefile
deleted file mode 100644
index bc5ca65413be..000000000000
--- a/databases/py-alembic14/Makefile
+++ /dev/null
@@ -1,38 +0,0 @@
-PORTNAME=	alembic
-PORTVERSION=	1.4.3
-PORTREVISION=	1
-CATEGORIES=	databases python
-MASTER_SITES=	PYPI
-PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
-PKGNAMESUFFIX=	14
-
-MAINTAINER=	bofh@FreeBSD.org
-COMMENT=	Database migration tool for SQLAlchemy (1.4.X branch)
-WWW=		https://alembic.zzzcomputing.com/
-
-LICENSE=	MIT
-LICENSE_FILE=	${WRKSRC}/LICENSE
-
-DEPRECATED=	Depends on expired databases/py-sqlalchemy12
-EXPIRATION_DATE=2024-06-04
-
-RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}python-dateutil>=0:devel/py-python-dateutil@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}mako>=0:textproc/py-mako@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}python-editor>=0.3:devel/py-python-editor@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}sqlalchemy12>=1.1.0:databases/py-sqlalchemy12@${PY_FLAVOR}
-
-TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}tox>0:devel/py-tox@${PY_FLAVOR}
-
-USES=		python
-USE_PYTHON=	autoplist concurrent distutils
-
-CONFLICTS_INSTALL=	py*-alembic* # lib/python3.8/site-packages/alembic/__init__.py'
-
-NO_ARCH=	yes
-PORTSCOUT=	limit:^1\.4\.
-
-do-test:
-	@cd ${WRKSRC} && ${LOCALBASE}/bin/tox -e ${PY_FLAVOR}
-
-.include <bsd.port.mk>
diff --git a/databases/py-alembic14/distinfo b/databases/py-alembic14/distinfo
deleted file mode 100644
index 4fec524ff11a..000000000000
--- a/databases/py-alembic14/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1601486131
-SHA256 (alembic-1.4.3.tar.gz) = 5334f32314fb2a56d86b4c4dd1ae34b08c03cae4cb888bc699942104d66bc245
-SIZE (alembic-1.4.3.tar.gz) = 1108131
diff --git a/databases/py-alembic14/pkg-descr b/databases/py-alembic14/pkg-descr
deleted file mode 100644
index 4592a8bd3c1c..000000000000
--- a/databases/py-alembic14/pkg-descr
+++ /dev/null
@@ -1,12 +0,0 @@
-Alembic is a new database migrations tool, written by the author of
-SQLAlchemy. A migrations tool offers the following functionality:
-
-- Can emit ALTER statements to a database in order to change the structure of
-  tables and other constructs
-- Provides a system whereby "migration scripts" may be constructed; each
-  script indicates a particular series of steps that can "upgrade" a target
-  database to a new version, and optionally a series of steps that can
-  "downgrade" similarly, doing the same steps in reverse.
-- Allows the scripts to execute in some sequential manner.
-
-This is 1.4.X branch that works with sqlalchemy 1.2.X branch.