aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMuhammad Moinur Rahman <bofh@FreeBSD.org>2023-06-30 01:21:38 +0000
committerMuhammad Moinur Rahman <bofh@FreeBSD.org>2023-06-30 01:31:23 +0000
commit021591aa32c367ac34849f05bb84a68f1d0c6df7 (patch)
tree7a820aa9e4723a31abffe6a16997c5693beb8649
parent9e408afece57eb1c16689648a545beaaaca8659d (diff)
downloadports-021591aa32c367ac34849f05bb84a68f1d0c6df7.tar.gz
ports-021591aa32c367ac34849f05bb84a68f1d0c6df7.zip
databases/mysqlbigram: Remove expired port
2023-06-30 databases/mysqlbigram: Requires upstream EOL MySQL 5.6 Approved by: portmgr (blanket)
-rw-r--r--MOVED1
-rw-r--r--databases/Makefile1
-rw-r--r--databases/mysqlbigram/Makefile31
-rw-r--r--databases/mysqlbigram/distinfo2
-rw-r--r--databases/mysqlbigram/pkg-descr12
5 files changed, 1 insertions, 46 deletions
diff --git a/MOVED b/MOVED
index ed6d6c95bea3..939ddcbe52a6 100644
--- a/MOVED
+++ b/MOVED
@@ -7659,3 +7659,4 @@ security/krb5-118|security/krb5|2023-06-25|Has expired: EOL one year after the r
x11-wm/pager|x11-wm/sawfish-pager|2023-06-27|Renamed to match upstream naming
lang/python37|lang/python38|2023-06-27|Has expired: Upgrade to a newer Python version. 3.7 is in maintenance status and gets security fixes only. End-of-Life: 2023-06-27. See https://devguide.python.org/versions/
databases/mysql-q4m||2023-06-30|Has expired: Requires upstream EOL MySQL 5.6
+databases/mysqlbigram||2023-06-30|Has expired: Requires upstream EOL MySQL 5.6
diff --git a/databases/Makefile b/databases/Makefile
index 10a41a06568d..e0f56ad38a63 100644
--- a/databases/Makefile
+++ b/databases/Makefile
@@ -217,7 +217,6 @@
SUBDIR += mysql80-client
SUBDIR += mysql80-server
SUBDIR += mysqlbackup
- SUBDIR += mysqlbigram
SUBDIR += mysqldump-secure
SUBDIR += mysqlreport
SUBDIR += mysqlsla
diff --git a/databases/mysqlbigram/Makefile b/databases/mysqlbigram/Makefile
deleted file mode 100644
index cdfde458dc92..000000000000
--- a/databases/mysqlbigram/Makefile
+++ /dev/null
@@ -1,31 +0,0 @@
-PORTNAME= mysqlbigram
-PORTVERSION= 1.0.1
-PORTREVISION= 1
-CATEGORIES= databases
-MASTER_SITES= http://mysqlbigram.googlepages.com/
-DISTNAME= bi_gram-src-${PORTVERSION}
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Simple n-gram (bi-gram) fulltext parser plugin for MySQL
-WWW= http://mysqlbigram.googlepages.com/
-
-LICENSE= LGPL21
-
-DEPRECATED= Requires upstream EOL MySQL 5.6
-EXPIRATION_DATE= 2023-06-30
-
-USES= libtool mysql
-
-GNU_CONFIGURE= yes
-IGNORE_WITH_MYSQL= 57 80 101m 102m 103m 57p 57w
-INSTALL_TARGET= install-strip
-WRKSRC= ${WRKDIR}/bi_gram
-
-PLIST_FILES= lib/mysql/bi_gramlib.so \
- lib/mysql/bi_gramlib.so.0 \
- lib/mysql/bi_gramlib.so.0.0.0
-
-post-patch:
- @${REINPLACE_CMD} -e 's,bool ,my_&,' ${WRKSRC}/bi_gram_plugin.c
-
-.include <bsd.port.mk>
diff --git a/databases/mysqlbigram/distinfo b/databases/mysqlbigram/distinfo
deleted file mode 100644
index 25b0ab97ca40..000000000000
--- a/databases/mysqlbigram/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (bi_gram-src-1.0.1.tar.gz) = 06ebc2d61ac4809f3a3122def3600dbdcef15fb83a7277c4f8eba32e01b85ca8
-SIZE (bi_gram-src-1.0.1.tar.gz) = 308085
diff --git a/databases/mysqlbigram/pkg-descr b/databases/mysqlbigram/pkg-descr
deleted file mode 100644
index ba3ad5f4d179..000000000000
--- a/databases/mysqlbigram/pkg-descr
+++ /dev/null
@@ -1,12 +0,0 @@
-MySQL has fulltext index search ability for text field, but it is word
-based index: it cannot be used for no word delimiter language like
-Japanese or Chinese. It also can't search characters in the middle of
-a word (e.g. searching 'in' will not match word 'ping').
-
-Starting from MySQL 5.1, MySQL supports a plugin that allows to change
-server components (fulltext search parser) without restarting and/or
-recompiling the server.
-
-This n-gram parser uses this plugin interface to implement a simple
-n-gram (bi-gram) fulltext index parser which can be used for languages
-without word delimiters.