git: c3a50f7a36b9 - main - textproc/mysqlviz: Remove expired port

From: Rene Ladan <rene_at_FreeBSD.org>
Date: Sun, 04 May 2025 11:13:11 UTC
The branch main has been updated by rene:

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

commit c3a50f7a36b95b82420d844869387fe5822e1c1a
Author:     Rene Ladan <rene@FreeBSD.org>
AuthorDate: 2025-05-04 11:13:05 +0000
Commit:     Rene Ladan <rene@FreeBSD.org>
CommitDate: 2025-05-04 11:13:05 +0000

    textproc/mysqlviz: Remove expired port
    
    2025-04-30 textproc/mysqlviz: Repo deleted upstream
---
 MOVED                                  |  1 +
 textproc/Makefile                      |  1 -
 textproc/mysqlviz/Makefile             | 39 ----------------------------------
 textproc/mysqlviz/distinfo             |  3 ---
 textproc/mysqlviz/files/patch-mysqlviz | 25 ----------------------
 textproc/mysqlviz/pkg-descr            |  7 ------
 6 files changed, 1 insertion(+), 75 deletions(-)

diff --git a/MOVED b/MOVED
index aaea6dfe75a4..0daacee625a6 100644
--- a/MOVED
+++ b/MOVED
@@ -4340,3 +4340,4 @@ audio/linux-c7-sdl_mixer|misc/linux-c7-sdl12-extralibs|2025-05-03|Merged into mi
 audio/linux-rl9-sdl_sound|misc/linux-rl9-sdl12-extralibs|2025-05-03|Merged into misc/linux-rl9-sdl12-extralibs
 graphics/acidwarp-sdl||2025-05-04|Has expired: Unmaintained by upstream as last release was in 2022
 games/xjewel||2025-05-04|Has expired: Unmaintained as last release was in 1994
+textproc/mysqlviz||2025-05-04|Has expired: Repo deleted upstream
diff --git a/textproc/Makefile b/textproc/Makefile
index df9d95672e2e..73b9f2e556f7 100644
--- a/textproc/Makefile
+++ b/textproc/Makefile
@@ -514,7 +514,6 @@
     SUBDIR += multimarkdown
     SUBDIR += muse
     SUBDIR += mxml
-    SUBDIR += mysqlviz
     SUBDIR += mythes
     SUBDIR += nb-aspell
     SUBDIR += nds-aspell
diff --git a/textproc/mysqlviz/Makefile b/textproc/mysqlviz/Makefile
deleted file mode 100644
index 8719f2ba0243..000000000000
--- a/textproc/mysqlviz/Makefile
+++ /dev/null
@@ -1,39 +0,0 @@
-PORTNAME=	mysqlviz
-PORTVERSION=	0.3
-PORTREVISION=	1
-CATEGORIES=	textproc
-
-MAINTAINER=	tota@FreeBSD.org
-COMMENT=	MySQL and SQLite Database Visualisation Tool
-WWW=		https://github.com/globalcitizen/mysqlviz
-
-LICENSE=	GPLv3
-
-BROKEN=		Unfetchable
-DEPRECATED=	Repo deleted upstream
-EXPIRATION_DATE=2025-04-30
-
-NO_BUILD=	yes
-USES=	php:cli tar:bzip2
-USE_GITHUB=	yes
-GH_ACCOUNT=	globalcitizen
-
-PLIST_FILES=	bin/${PORTNAME}
-
-PORTEXAMPLES=	eg.png eg.sql sqlite-eg.sql
-
-OPTIONS_DEFINE=	EXAMPLES
-
-post-patch:
-	@${REINPLACE_CMD} \
-		-e 's|/usr/bin/php|${LOCALBASE}/bin/php|' \
-		${WRKSRC}/${PORTNAME}
-
-do-install:
-	${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
-
-do-install-EXAMPLES-on:
-	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
-	cd ${WRKSRC} && ${INSTALL_DATA} ${PORTEXAMPLES} ${STAGEDIR}${EXAMPLESDIR}
-
-.include <bsd.port.mk>
diff --git a/textproc/mysqlviz/distinfo b/textproc/mysqlviz/distinfo
deleted file mode 100644
index 4141571ddf0a..000000000000
--- a/textproc/mysqlviz/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1490527116
-SHA256 (globalcitizen-mysqlviz-0.3_GH0.tar.gz) = 0e95b85258ca8908c59459eaf170176d34ac70b1f4cc5ffbd216640037c5f89f
-SIZE (globalcitizen-mysqlviz-0.3_GH0.tar.gz) = 14749
diff --git a/textproc/mysqlviz/files/patch-mysqlviz b/textproc/mysqlviz/files/patch-mysqlviz
deleted file mode 100644
index 219230ccbc44..000000000000
--- a/textproc/mysqlviz/files/patch-mysqlviz
+++ /dev/null
@@ -1,25 +0,0 @@
---- mysqlviz.orig	2010-11-12 23:53:55 UTC
-+++ mysqlviz
-@@ -184,17 +184,16 @@ exit(0);
- 
- # usage information
- function usage() {
-- global $argv;
-- print '[' . basename($argv[0]) . " - mysql + sqlite database visualisation tool]\n\n";
-+ print "[mysqlviz - mysql + sqlite database visualisation tool]\n\n";
-  print "usage:\n";
-- print "  " . $argv[0] . " -f <sqldumpfile> [-r]\n";
-- print "                                 ^--- 'redump' mode: generates a\n";
-- print "                                      mysqldump command line to redump.\n";
-+ print "  mysqlviz -f <sqldumpfile> [-r]\n";
-+ print "                               ^--- 'redump' mode: generates a\n";
-+ print "                                    mysqldump command line to redump.\n";
-  print "toolchain:\n";
-  print " $ mysqldump -d db >db.sql          # MySQL: -d = 'no data', only structure\n";
-  print "    - OR -\n";
-  print " $ sqlite database.db .dump >db.sql # SQLite (also: 'sqlite3 ...')\n";
-- print " $ $argv[0] -f ./db.sql >./db.dot # 'dot' is a graphviz format.\n";
-+ print " $ mysqlviz -f ./db.sql >./db.dot # 'dot' is a graphviz format.\n";
-  print " $ dot -Tpng db.dot >db.png         # generate image with graphviz\n\n";
-  print "notes:\n";
-  print " if you do not have any foreign keys defined, relationships will be\n";
diff --git a/textproc/mysqlviz/pkg-descr b/textproc/mysqlviz/pkg-descr
deleted file mode 100644
index bb2105e57173..000000000000
--- a/textproc/mysqlviz/pkg-descr
+++ /dev/null
@@ -1,7 +0,0 @@
-Render a graphical representation of a MySQL or SQLite database
-from a mysqldump or sqlite3 .dump file.
-
-Features:
-- Can infer foreign key relationships if you do not have them defined
-- Handles partial dumps (FK to tables that are not defined within the dump)
-- Fast! Uses sed and grep for data extraction (MySQL only)