git: d6db6bd18b42 - main - */*: Remove expired ports:

Rene Ladan rene at FreeBSD.org
Thu Jul 1 14:35:58 UTC 2021


The branch main has been updated by rene:

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

commit d6db6bd18b42829b9bf5cb7a638051a7ff53ab5b
Author:     Rene Ladan <rene at FreeBSD.org>
AuthorDate: 2021-07-01 14:35:43 +0000
Commit:     Rene Ladan <rene at FreeBSD.org>
CommitDate: 2021-07-01 14:35:43 +0000

    */*: Remove expired ports:
    
    2021-06-30 databases/pgpool-II-35: EOL since January 2021, please use one of the other pgpool-II-* ports
---
 MOVED                                  |  1 +
 databases/Makefile                     |  1 -
 databases/pgpool-II-35/Makefile        | 46 ----------------------------------
 databases/pgpool-II-35/distinfo        |  3 ---
 databases/pgpool-II-35/files/pgpool.in | 34 -------------------------
 databases/pgpool-II-35/pkg-descr       |  8 ------
 databases/pgpool-II-35/pkg-message     | 15 -----------
 databases/pgpool-II-35/pkg-plist       | 31 -----------------------
 8 files changed, 1 insertion(+), 138 deletions(-)

diff --git a/MOVED b/MOVED
index 32846b8e040f..6e89a57e1041 100644
--- a/MOVED
+++ b/MOVED
@@ -16456,3 +16456,4 @@ www/blastbeat||2021-06-26|Removed, abandoned upstream, broken on 12.X since 2019
 www/demoroniser||2021-06-26|Removed, made for Microsoft Powerpoint 9x with Perl 4.0
 x11-toolkits/v||2021-06-27|Has expired: Dead upstream, unmaintained and no consumers
 sysutils/ssid|sysutils/setsid|2021-06-27|Move to more obvious package name
+databases/pgpool-II-35||2021-07-01|Has expired: EOL since January 2021, please use one of the other pgpool-II-* ports
diff --git a/databases/Makefile b/databases/Makefile
index bc80aeaf5bb7..352a82ff0f63 100644
--- a/databases/Makefile
+++ b/databases/Makefile
@@ -588,7 +588,6 @@
     SUBDIR += pglogical
     SUBDIR += pgmetrics
     SUBDIR += pgmodeler
-    SUBDIR += pgpool-II-35
     SUBDIR += pgpool-II-36
     SUBDIR += pgpool-II-37
     SUBDIR += pgpool-II-40
diff --git a/databases/pgpool-II-35/Makefile b/databases/pgpool-II-35/Makefile
deleted file mode 100644
index 4475b04c53d4..000000000000
--- a/databases/pgpool-II-35/Makefile
+++ /dev/null
@@ -1,46 +0,0 @@
-# Created by: Choe, Cheng-Dae <whitekid at gmail.com>
-
-PORTNAME=	pgpool-II
-PORTVERSION=	3.5.25
-CATEGORIES=	databases
-MASTER_SITES=	http://www.pgpool.net/mediawiki/images/
-PKGNAMESUFFIX=	35
-
-MAINTAINER=	tz at FreeBSD.org
-COMMENT=	Connection pool server for PostgreSQL
-
-LICENSE=	MIT
-LICENSE_FILE=	${WRKSRC}/COPYING
-
-DEPRECATED=	EOL since January 2021, please use one of the other pgpool-II-* ports
-EXPIRATION_DATE=	2021-06-30
-
-PORTSCOUT=	limit:^3.5.[0-9]*
-
-USES=		gmake libtool pgsql:9.3+
-GNU_CONFIGURE=	yes
-USE_LDCONFIG=	yes
-
-USE_RC_SUBR=	pgpool
-CONFLICTS=	pgpool-II-[0-9]*
-
-PORTDOCS=	*
-
-OPTIONS_DEFINE=	DOCS SSL
-OPTIONS_DEFAULT=	SSL
-
-SSL_CONFIGURE_WITH=	openssl
-SSL_USES=		ssl
-
-post-install:
-	@${MKDIR} ${STAGEDIR}/var/run/pgpool
-	${INSTALL_LIB} ${WRKSRC}/src/libs/pcp/.libs/libpcp.so.1.0.0 ${STAGEDIR}${PREFIX}/lib
-
-post-install-DOCS-on:
-	@${MKDIR} ${STAGEDIR}${DOCSDIR}
-	cd ${WRKSRC} && ${COPYTREE_SHARE} doc ${STAGEDIR}${DOCSDIR} "-not -name Makefile.\*"
-.for f in AUTHORS ChangeLog NEWS TODO
-	${INSTALL_DATA} ${WRKSRC}/$f ${STAGEDIR}${DOCSDIR}
-.endfor
-
-.include <bsd.port.mk>
diff --git a/databases/pgpool-II-35/distinfo b/databases/pgpool-II-35/distinfo
deleted file mode 100644
index da73a213046c..000000000000
--- a/databases/pgpool-II-35/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1594799196
-SHA256 (pgpool-II-3.5.25.tar.gz) = dddea93e0fdf3bef03abcdc127696b8e2efcf7b3d2819561a926514ab2f71aff
-SIZE (pgpool-II-3.5.25.tar.gz) = 2287943
diff --git a/databases/pgpool-II-35/files/pgpool.in b/databases/pgpool-II-35/files/pgpool.in
deleted file mode 100644
index b58811d92986..000000000000
--- a/databases/pgpool-II-35/files/pgpool.in
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/bin/sh
-
-# PROVIDE: pgpool
-# REQUIRE: LOGIN
-# KEYWORD: shutdown
-#
-# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
-# to enable this service:
-#
-# pgpool_enable (bool):		Set to NO by default.
-#				Set it to YES to enable pgpool.
-# pgpool_conf (file):		Set location of your config.
-#				Default is "%%PREFIX%%/etc/pgpool.conf"
-# pgpool_user (uid):		User ID to run as (default nobody)
-#
-
-. /etc/rc.subr
-
-name=pgpool
-rcvar=pgpool_enable
-
-load_rc_config $name
-
-: ${pgpool_enable="NO"}
-: ${pgpool_conf="%%PREFIX%%/etc/pgpool.conf"}
-: ${pgpool_user="nobody"}
-
-command="%%PREFIX%%/bin/pgpool"
-command_args="-f ${pgpool_conf}"
-stop_cmd="${command} ${command_args} stop"
-
-required_files="${pgpool_conf}"
-
-run_rc_command "$1"
diff --git a/databases/pgpool-II-35/pkg-descr b/databases/pgpool-II-35/pkg-descr
deleted file mode 100644
index 474bcbe9a30e..000000000000
--- a/databases/pgpool-II-35/pkg-descr
+++ /dev/null
@@ -1,8 +0,0 @@
-pgpool is a connection pool server for PostgreSQL. pgpool runs between
-PostgreSQL's clients(front ends) and servers(back ends). A PostgreSQL client can
-connect to pgpool as if it were a standard PostgreSQL server.
-
-pgpool caches the connection to PostgreSQL server to reduce the overhead to
-establish the connection to it.
-
-WWW: https://pgpool.net/
diff --git a/databases/pgpool-II-35/pkg-message b/databases/pgpool-II-35/pkg-message
deleted file mode 100644
index 1df287cd433a..000000000000
--- a/databases/pgpool-II-35/pkg-message
+++ /dev/null
@@ -1,15 +0,0 @@
-[
-{ type: install
-  message: <<EOM
-In order to start pgpool you need some more configuration:
-
-# sysrc -f /etc/rc.conf pgpool_enable="YES"
-# sysrc -f /etc/rc.conf pgpool_user="root"
-
-Please consider the usage of another user. The user is
-required to have read/write access to /var/run/pgpool.
-
-Using the root user is - as always - an security issue.
-EOM
-}
-]
diff --git a/databases/pgpool-II-35/pkg-plist b/databases/pgpool-II-35/pkg-plist
deleted file mode 100644
index 7f1ed316c744..000000000000
--- a/databases/pgpool-II-35/pkg-plist
+++ /dev/null
@@ -1,31 +0,0 @@
-bin/pcp_attach_node
-bin/pcp_detach_node
-bin/pcp_node_count
-bin/pcp_node_info
-bin/pcp_pool_status
-bin/pcp_proc_count
-bin/pcp_proc_info
-bin/pcp_promote_node
-bin/pcp_recovery_node
-bin/pcp_stop_pgpool
-bin/pcp_watchdog_info
-bin/pg_md5
-bin/pgpool
- at sample etc/pcp.conf.sample
- at sample etc/pgpool.conf.sample
-etc/pgpool.conf.sample-master-slave
-etc/pgpool.conf.sample-replication
-etc/pgpool.conf.sample-stream
- at sample etc/pool_hba.conf.sample
-include/libpcp_ext.h
-include/pcp.h
-include/pool_process_reporting.h
-include/pool_type.h
-lib/libpcp.a
-lib/libpcp.so
-lib/libpcp.so.1
-lib/libpcp.so.1.0.0
-man/man8/pgpool.8.gz
-%%DATADIR%%/insert_lock.sql
-%%DATADIR%%/pgpool.pam
- at dir /var/run/pgpool


More information about the dev-commits-ports-main mailing list