aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2025-01-01 12:00:44 +0000
committerRene Ladan <rene@FreeBSD.org>2025-01-01 12:00:44 +0000
commitf22e3bac762b99f4aa2f5db31d56284469de8cf9 (patch)
tree6ff9c11b035192aba034b3fa154458466441ffcf
parent50afe91201634612efc61bb20a9ae1a302c9faed (diff)
databases/postgresql12-contrib: Remove expired port
2024-12-31 databases/postgresql12-contrib: PostgreSQL-12 is end-of-life
-rw-r--r--MOVED1
-rw-r--r--databases/Makefile1
-rw-r--r--databases/postgresql12-contrib/Makefile41
-rw-r--r--databases/postgresql12-contrib/pkg-descr21
4 files changed, 1 insertions, 63 deletions
diff --git a/MOVED b/MOVED
index 6182aee64c55..acd40813f00a 100644
--- a/MOVED
+++ b/MOVED
@@ -3823,3 +3823,4 @@ lang/parrot||2025-01-01|Has expired: Development stopped in 2017
net-im/purple-plugin-pack||2025-01-01|Has expired: Uses deprecated gtk2 libraries
security/sssd|security/sssd2|2025-01-01|Has expired: Not supported, please use deve/sssd2
databases/ldb22||2025-01-01|Has expired: Required only by security/sssd, which expires on 2024-12-31
+databases/postgresql12-contrib||2025-01-01|Has expired: PostgreSQL-12 is end-of-life
diff --git a/databases/Makefile b/databases/Makefile
index e0e06ff66b21..a4bbf99f88d0 100644
--- a/databases/Makefile
+++ b/databases/Makefile
@@ -670,7 +670,6 @@
SUBDIR += postgresql-wal2json
SUBDIR += postgresql-zhparser
SUBDIR += postgresql12-client
- SUBDIR += postgresql12-contrib
SUBDIR += postgresql12-docs
SUBDIR += postgresql12-pgtcl
SUBDIR += postgresql12-plperl
diff --git a/databases/postgresql12-contrib/Makefile b/databases/postgresql12-contrib/Makefile
deleted file mode 100644
index a59562e889f8..000000000000
--- a/databases/postgresql12-contrib/Makefile
+++ /dev/null
@@ -1,41 +0,0 @@
-PORTNAME= postgresql
-PORTREVISION= 0
-CATEGORIES= databases
-
-MAINTAINER= pgsql@FreeBSD.org
-COMMENT= The contrib utilities from the PostgreSQL distribution
-
-MASTERDIR= ${.CURDIR}/../postgresql12-server
-
-USES= bison pgsql:${PORTVERSION:R}
-
-BUILD_DIRS= src/port src/include src/common contrib
-INSTALL_DIRS= contrib
-
-# this port fails to build in parallel
-MAKE_JOBS_UNSAFE= yes
-
-SLAVE_ONLY= yes
-COMPONENT= -contrib
-CONFIGURE_ARGS= --disable-nls --with-uuid=bsd
-LDFLAGS+= -lpthread -L${PREFIX}/lib
-
-OPTIONS_DEFINE= DOCS OPENSSL XML
-OPTIONS_DEFAULT=OPENSSL XML
-OPTIONS_SUB= yes
-
-OPENSSL_DESC= Build with OpenSSL support
-OPENSSL_USES= ssl
-OPENSSL_CONFIGURE_WITH= openssl
-
-XML_CONFIGURE_WITH= libxslt libxml
-XML_LIB_DEPENDS=libxslt.so:textproc/libxslt \
- libxml2.so:textproc/libxml2
-
-post-configure:
- @cd ${WRKSRC}/src/backend && ${SETENVI} ${WRK_ENV} ${MAKE_ENV} ${MAKE_CMD} symlinks
-
-post-install:
- @- ${INSTALL_DATA} ${WRKSRC}/contrib/README ${STAGEDIR}${DOCSDIR}/extension/README
-
-.include "${MASTERDIR}/Makefile"
diff --git a/databases/postgresql12-contrib/pkg-descr b/databases/postgresql12-contrib/pkg-descr
deleted file mode 100644
index a384c76fdbde..000000000000
--- a/databases/postgresql12-contrib/pkg-descr
+++ /dev/null
@@ -1,21 +0,0 @@
-This is the port for all stuff that comes in the contrib subtree of
-the postgresql distribution. This subtree contains porting tools,
-analysis utilities, and plug-in features that are not part of the core
-PostgreSQL system, mainly because they address a limited audience or
-are too experimental to be part of the main source tree. This does
-not preclude their usefulness.
-
-Each subdirectory contains a README file with information about the
-module. Some directories supply new user-defined functions, operators,
-or types. After you have installed the files you need to register the
-new entities in the database system by running the commands in the
-supplied .sql file. For example,
-
- $ psql -d dbname -f module.sql
-
-The .sql files are installed into /usr/local/share/postgresql/contrib
-
-For more information, please see
-/usr/local/share/doc/postgresql/contrib/README*
-
-This software is part of the standard PostgreSQL distribution.