mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-13 07:34:50 +00:00
- Update to 1.1.11
- Require PostgreSQL 9.1+ - Strip binaries - Sync pkg-descr - Pass maintainership PR: 197586 Submitted by: Chris Hutchinson <portmaster@bsdforge.com> ChangeLog: - Supports PostgreSQL 9.4 - Change not to wait for transactions in different databases. - Support for DESC, NULLS FIRST/LAST, COLLATE to index keys.
This commit is contained in:
parent
6bd3403a03
commit
67d817cd0c
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=379831
@ -2,11 +2,11 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= pg_reorg
|
||||
PORTVERSION= 1.1.10
|
||||
PORTVERSION= 1.1.11
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= http://pgfoundry.org/frs/download.php/3644/
|
||||
MASTER_SITES= http://pgfoundry.org/frs/download.php/3821/
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
MAINTAINER= portmaster@BSDforge.com
|
||||
COMMENT= PostgreSQL utility to reorganize tables
|
||||
|
||||
LICENSE= BSD3CLAUSE
|
||||
@ -14,10 +14,9 @@ LICENSE_FILE= ${WRKSRC}/COPYRIGHT
|
||||
|
||||
MAKE_ENV= USE_PGXS=0
|
||||
USES= gmake pgsql uidfix
|
||||
WANT_PGSQL=server
|
||||
|
||||
PLIST_FILES= bin/pg_reorg lib/postgresql/pg_reorg.so
|
||||
|
||||
WANT_PGSQL_VER= 91+
|
||||
WANT_PGSQL= server
|
||||
INSTALL_TARGET= install-strip
|
||||
PORTDOCS= *
|
||||
|
||||
OPTIONS_DEFINE= DOCS
|
||||
@ -26,17 +25,4 @@ post-install:
|
||||
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
||||
@(cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}/)
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${PGSQL_VER} >= 9.1
|
||||
PLIST_FILES+= share/postgresql/extension/pg_reorg--1.1.10.sql \
|
||||
share/postgresql/extension/pg_reorg.control \
|
||||
share/postgresql/extension/pg_reorg.sql \
|
||||
share/postgresql/extension/uninstall_pg_reorg.sql
|
||||
.else
|
||||
PLIST_FILES+= share/postgresql/contrib/pg_reorg--1.1.8.sql \
|
||||
share/postgresql/contrib/pg_reorg.sql \
|
||||
share/postgresql/contrib/uninstall_pg_reorg.sql
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (pg_reorg-1.1.10.tar.gz) = 7854cf0a536295abe602008a25ac906dec7cb77699afb95e6b17006d82862ac2
|
||||
SIZE (pg_reorg-1.1.10.tar.gz) = 58371
|
||||
SHA256 (pg_reorg-1.1.11.tar.gz) = 595641e0e6745f99897ffc4c229b084ca0f8b52002469e22a0cf7c0ba676ec33
|
||||
SIZE (pg_reorg-1.1.11.tar.gz) = 74228
|
||||
|
@ -1,4 +1,6 @@
|
||||
pg_reorg allows you to reorganize your tables online,
|
||||
for example, do online vacuum full or cluster.
|
||||
pg_reorg can re-organize tables on a postgres database without any
|
||||
locks so that you can retrieve or update rows in tables being
|
||||
reorganized. The module is developed to be a better alternative of
|
||||
CLUSTER and VACUUM FULL.
|
||||
|
||||
WWW: http://pgfoundry.org/projects/reorg/
|
||||
|
6
databases/pg_reorg/pkg-plist
Normal file
6
databases/pg_reorg/pkg-plist
Normal file
@ -0,0 +1,6 @@
|
||||
bin/pg_reorg
|
||||
lib/postgresql/pg_reorg.so
|
||||
share/postgresql/extension/pg_reorg--1.1.11.sql
|
||||
share/postgresql/extension/pg_reorg.control
|
||||
share/postgresql/extension/pg_reorg.sql
|
||||
share/postgresql/extension/uninstall_pg_reorg.sql
|
Loading…
Reference in New Issue
Block a user