Commit 3839b197 authored by Rene Ladan's avatar Rene Ladan
Browse files

databases/postgresql10-*: Remove expired ports

2023-03-07 databases/postgresql10-client: PostgreSQL 10 has reached end-of-life
2023-03-07 databases/postgresql10-contrib: PostgreSQL 10 has reached end-of-life
2023-03-07 databases/postgresql10-docs: PostgreSQL 10 has reached end-of-life
2023-03-07 databases/postgresql10-pgtcl: PostgreSQL-10 has reached end-of-life
2023-03-07 databases/postgresql10-plperl: PostgreSQL 10 has reached end-of-life
2023-03-07 databases/postgresql10-plpython: PostgreSQL 10 has reached end-of-life
2023-03-07 databases/postgresql10-pltcl: PostgreSQL 10 has reached end-of-life
2023-03-07 databases/postgresql10-server: PostgreSQL 10 has reached end-of-life
parent 47c9ea70
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -17777,3 +17777,11 @@ net/tshark|net/wireshark@nox11|2023-03-03|Tshark is now the nox11 flavor of wire
net/tshark-lite|net/wireshark@nox11|2023-03-03|Tshark is now the nox11 flavor of wireshark
net/wireshark-lite|net/wireshark|2023-03-03|The lite port of wireshark can be controlled with OPTIONS
lang/gcc-ecj45|java/eclipse-ecj|2023-03-06|Has expired: Long time unsupported upstream, use java/eclipse-ecj instead
databases/postgresql10-client||2023-03-07|Has expired: PostgreSQL 10 has reached end-of-life
databases/postgresql10-contrib||2023-03-07|Has expired: PostgreSQL 10 has reached end-of-life
databases/postgresql10-docs||2023-03-07|Has expired: PostgreSQL 10 has reached end-of-life
databases/postgresql10-pgtcl||2023-03-07|Has expired: PostgreSQL-10 has reached end-of-life
databases/postgresql10-plperl||2023-03-07|Has expired: PostgreSQL 10 has reached end-of-life
databases/postgresql10-plpython||2023-03-07|Has expired: PostgreSQL 10 has reached end-of-life
databases/postgresql10-pltcl||2023-03-07|Has expired: PostgreSQL 10 has reached end-of-life
databases/postgresql10-server||2023-03-07|Has expired: PostgreSQL 10 has reached end-of-life
+0 −8
Original line number Diff line number Diff line
@@ -666,14 +666,6 @@
    SUBDIR += postgresql-semver
    SUBDIR += postgresql-tds_fdw
    SUBDIR += postgresql-zhparser
    SUBDIR += postgresql10-client
    SUBDIR += postgresql10-contrib
    SUBDIR += postgresql10-docs
    SUBDIR += postgresql10-pgtcl
    SUBDIR += postgresql10-plperl
    SUBDIR += postgresql10-plpython
    SUBDIR += postgresql10-pltcl
    SUBDIR += postgresql10-server
    SUBDIR += postgresql11-client
    SUBDIR += postgresql11-contrib
    SUBDIR += postgresql11-docs
+0 −18
Original line number Diff line number Diff line
PORTNAME=	postgresql
PORTREVISION=	0

COMMENT=	PostgreSQL database (client)

MASTERDIR=	${.CURDIR}/../postgresql10-server

BUILD_DIRS=	config src/include src/interfaces src/port \
		src/bin/pg_dump src/bin/psql src/bin/scripts src/bin/pg_config \
		src/bin/pgbench doc src/makefiles src/test/regress
INSTALL_DIRS=	${BUILD_DIRS}

CLIENT_ONLY=	yes
COMPONENT=	-client
USE_LDCONFIG=	yes
USES=		pkgconfig

.include "${MASTERDIR}/Makefile"
+0 −37
Original line number Diff line number Diff line
PORTNAME=	postgresql
PORTREVISION=	0
CATEGORIES=	databases

MAINTAINER=	pgsql@FreeBSD.org
COMMENT=	The contrib utilities from the PostgreSQL distribution

MASTERDIR=	${.CURDIR}/../postgresql10-server

USES=		bison pgsql:${DISTVERSION:C/([0-9]\.?[0-9]).*/\1/g}

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+=--with-openssl --disable-nls --with-uuid=bsd
LDFLAGS+=	-lpthread -L${PREFIX}/lib

OPTIONS_DEFINE=	DOCS XML
OPTIONS_DEFAULT=XML
OPTIONS_SUB=	yes

XML_LIB_DEPENDS=libxslt.so:textproc/libxslt \
		libxml2.so:textproc/libxml2
XML_CONFIGURE_WITH=	libxml libxslt

post-configure:
		@cd ${WRKSRC}/src/backend && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} symlinks

post-install:
	@- ${INSTALL_DATA} ${WRKSRC}/contrib/README ${STAGEDIR}${DOCSDIR}/extension/README

.include "${MASTERDIR}/Makefile"
+0 −21
Original line number Diff line number Diff line
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.
Loading