Received: by mail.netbsd.org (Postfix, from userid 605) id DC1D684D65; Wed, 29 Aug 2018 01:03:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D617D84D63 for ; Wed, 29 Aug 2018 01:03:15 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id Y43hjeCAYmvQ for ; Wed, 29 Aug 2018 01:03:15 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 00A0984D46 for ; Wed, 29 Aug 2018 01:03:14 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id EE5EDFBF8; Wed, 29 Aug 2018 01:03:14 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1535504594177720" MIME-Version: 1.0 Date: Wed, 29 Aug 2018 01:03:14 +0000 From: "Emmanuel Dreyfus" Subject: CVS commit: pkgsrc To: pkgsrc-changes@NetBSD.org Reply-To: manu@netbsd.org X-Mailer: log_accum Message-Id: <20180829010314.EE5EDFBF8@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1535504594177720 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: manu Date: Wed Aug 29 01:03:14 UTC 2018 Modified Files: pkgsrc/doc: CHANGES-2018 Added Files: pkgsrc/databases/postgresql96-fuzzystrmatch: DESCR MESSAGE Makefile PLIST Log Message: Added databases/postgresql96-fuzzystrmatch The fuzzystrmatch contribution provides function to match close strings using various methods. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/databases/postgresql96-fuzzystrmatch/DESCR \ pkgsrc/databases/postgresql96-fuzzystrmatch/MESSAGE \ pkgsrc/databases/postgresql96-fuzzystrmatch/Makefile \ pkgsrc/databases/postgresql96-fuzzystrmatch/PLIST cvs rdiff -u -r1.3821 -r1.3822 pkgsrc/doc/CHANGES-2018 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1535504594177720 Content-Disposition: inline Content-Length: 3399 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/doc/CHANGES-2018 diff -u pkgsrc/doc/CHANGES-2018:1.3821 pkgsrc/doc/CHANGES-2018:1.3822 --- pkgsrc/doc/CHANGES-2018:1.3821 Wed Aug 29 00:50:12 2018 +++ pkgsrc/doc/CHANGES-2018 Wed Aug 29 01:03:14 2018 @@ -1,4 +1,4 @@ -$NetBSD: CHANGES-2018,v 1.3821 2018/08/29 00:50:12 manu Exp $ +$NetBSD: CHANGES-2018,v 1.3822 2018/08/29 01:03:14 manu Exp $ Changes to the packages collection and infrastructure in 2018: @@ -5410,3 +5410,4 @@ Changes to the packages collection and i Updated graphics/gimp to 2.10.6 [ryoon 2018-08-28] Updated x11/sakura to 3.6.0 [ryoon 2018-08-28] Updated mbone/mdd to 20180824 [manu 2018-08-29] + Added databases/postgresql96-fuzzystrmatch 9.6.9 [manu 2018-08-29] Added files: Index: pkgsrc/databases/postgresql96-fuzzystrmatch/DESCR diff -u /dev/null pkgsrc/databases/postgresql96-fuzzystrmatch/DESCR:1.1 --- /dev/null Wed Aug 29 01:03:14 2018 +++ pkgsrc/databases/postgresql96-fuzzystrmatch/DESCR Wed Aug 29 01:03:14 2018 @@ -0,0 +1,9 @@ +PostgreSQL is a robust, next-generation, Object-Relational DBMS (ORDBMS), +derived from the Berkeley Postgres database management system. While +PostgreSQL retains the powerful object-relational data model, rich data types +and easy extensibility of Postgres, it replaces the PostQuel query language +with an extended subset of SQL. + +PostgreSQL is free and the complete source is available. + +This package contains the fuzzystrmatch contribution Index: pkgsrc/databases/postgresql96-fuzzystrmatch/MESSAGE diff -u /dev/null pkgsrc/databases/postgresql96-fuzzystrmatch/MESSAGE:1.1 --- /dev/null Wed Aug 29 01:03:14 2018 +++ pkgsrc/databases/postgresql96-fuzzystrmatch/MESSAGE Wed Aug 29 01:03:14 2018 @@ -0,0 +1,8 @@ +=========================================================================== +$NetBSD: MESSAGE,v 1.1 2018/08/29 01:03:14 manu Exp $ + +To enable this package, run the following command as pgsql superuser + + psql database < ${PREFIX}/share/postgresql/contrib/fuzzystrmatch.sql + +=========================================================================== Index: pkgsrc/databases/postgresql96-fuzzystrmatch/Makefile diff -u /dev/null pkgsrc/databases/postgresql96-fuzzystrmatch/Makefile:1.1 --- /dev/null Wed Aug 29 01:03:14 2018 +++ pkgsrc/databases/postgresql96-fuzzystrmatch/Makefile Wed Aug 29 01:03:14 2018 @@ -0,0 +1,15 @@ +# $NetBSD: Makefile,v 1.1 2018/08/29 01:03:14 manu Exp $ + +PKGNAME= ${DISTNAME:C/-/96-fuzzystrmatch-/} +COMMENT= PostgreSQL fuzzystrmatch contribution + +DEPENDS+= postgresql96-server>=${PKGVERSION_NOREV}:../../databases/postgresql96-server + +.include "../../databases/postgresql96/Makefile.common" + +BUILD_MAKE_FLAGS= USE_PGXS=1 + +BUILD_DIRS= contrib/fuzzystrmatch + +.include "../../databases/postgresql96-client/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/databases/postgresql96-fuzzystrmatch/PLIST diff -u /dev/null pkgsrc/databases/postgresql96-fuzzystrmatch/PLIST:1.1 --- /dev/null Wed Aug 29 01:03:14 2018 +++ pkgsrc/databases/postgresql96-fuzzystrmatch/PLIST Wed Aug 29 01:03:14 2018 @@ -0,0 +1,6 @@ +@comment $NetBSD: PLIST,v 1.1 2018/08/29 01:03:14 manu Exp $ +lib/postgresql/fuzzystrmatch.so +share/postgresql/extension/fuzzystrmatch--1.0--1.1.sql +share/postgresql/extension/fuzzystrmatch--1.1.sql +share/postgresql/extension/fuzzystrmatch--unpackaged--1.0.sql +share/postgresql/extension/fuzzystrmatch.control --_----------=_1535504594177720--