From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 15 07:20:02 2009 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 536711065697 for ; Tue, 15 Dec 2009 07:20:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2E5C08FC1B for ; Tue, 15 Dec 2009 07:20:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nBF7K2If081337 for ; Tue, 15 Dec 2009 07:20:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nBF7K2eK081336; Tue, 15 Dec 2009 07:20:02 GMT (envelope-from gnats) Resent-Date: Tue, 15 Dec 2009 07:20:02 GMT Resent-Message-Id: <200912150720.nBF7K2eK081336@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Andrei Lavreniyuk Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7D457106566C for ; Tue, 15 Dec 2009 07:15:06 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 6BC9F8FC15 for ; Tue, 15 Dec 2009 07:15:06 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id nBF7F54N080025 for ; Tue, 15 Dec 2009 07:15:05 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id nBF7F5LR080024; Tue, 15 Dec 2009 07:15:05 GMT (envelope-from nobody) Message-Id: <200912150715.nBF7F5LR080024@www.freebsd.org> Date: Tue, 15 Dec 2009 07:15:05 GMT From: Andrei Lavreniyuk To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/141579: [UPDATE] databases/slony1: to 1.2.20 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Dec 2009 07:20:02 -0000 >Number: 141579 >Category: ports >Synopsis: [UPDATE] databases/slony1: to 1.2.20 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Dec 15 07:20:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Andrei Lavreniyuk >Release: FreeBSD 8.0-STABLE >Organization: Technica-03, Inc. >Environment: FreeBSD datacenter.technica-03.local 8.0-STABLE FreeBSD 8.0-STABLE #0: Sat Dec 12 21:41:15 EET 2009 root@datacenter.technica-03.local:/usr/obj/usr/src/sys/SMP64 amd64 >Description: Release 1.2.20 - Fix problem with logging where vsnprintf would, with very large output, clobber the byte after malloc()ed output - Change "long long" to "int64" Release 1.2.19 - fix problem (noticed by Vivek Khera) with drop_if_exists() handling of schemas - Duct tape test altered to bump event serial number to a near-2^31-1 level in order that things that might break will break upon that rollover. Also altered to run "update functions." Release 1.2.18 - autoconf change + change to src/backend/slony1_funcs.c to accomodate change in # of arguments for ScanKeywordLookup in PostgreSQL 8.5 - Reloading of functions needs to have an emulation of "DROP FUNCTION IF EXISTS" because a couple of functions have had their return value type changed, which doesn't fit happily into CREATE OR REPLACE FUNCTION. - Revisions to copyright notices to indicate 2009 - Fixing 8.4ism in SUBSCRIBE SET process - see Release 1.2.17 - Apply changes to logshipper that went into the 2.0 branch but not 1.2 - Change minimum debugging level to -1 to allow suppressing logging - Bug #92 - compression of event numbers had a bug where events > 2^31-1 would overflow the "int" value - Fix to race condition where file descriptor copies were being made at the wrong time in the scheduler - Fix return types to use bigint when returning event #'s - Establish compatibility with PostgreSQL 8.4: - autovac data is on pg_class rather than pg_autovacuum - Need to use GetActiveSnapshot() rather than expecting to have SerializableSnapshot in the backend - createdb needs to copy from template0 to ensure it can match locales - pg_class.reltriggers no longer exists in 8.4 and thus shouldn't be touched >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN slony1.bak/Makefile slony1/Makefile --- slony1.bak/Makefile 2009-12-15 08:57:59.000000000 +0200 +++ slony1/Makefile 2009-12-15 09:06:55.000000000 +0200 @@ -6,7 +6,7 @@ # PORTNAME= slony1 -PORTVERSION= 1.2.18 +PORTVERSION= 1.2.20 CATEGORIES= databases MASTER_SITES= http://main.slony.info/downloads/1.2/source/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ diff -ruN slony1.bak/distinfo slony1/distinfo --- slony1.bak/distinfo 2009-12-15 08:57:59.000000000 +0200 +++ slony1/distinfo 2009-12-15 09:07:11.000000000 +0200 @@ -1,6 +1,6 @@ -MD5 (slony1-1.2.18.tar.bz2) = 1fe08b01825e5c978c2a1aeebc956099 -SHA256 (slony1-1.2.18.tar.bz2) = 010588d64eb46ad7860360d1f53661a0b5d01b6d5671d084c6b6925806e4e222 -SIZE (slony1-1.2.18.tar.bz2) = 879298 -MD5 (slony1-1.2.18-docs.tar.bz2) = ea1078c04faa7477f3990310669a2488 -SHA256 (slony1-1.2.18-docs.tar.bz2) = 5502c5e12c9bbeaef7d058971771d5454259124931351ea3d987bc9a7940906c -SIZE (slony1-1.2.18-docs.tar.bz2) = 232151 +MD5 (slony1-1.2.20.tar.bz2) = 8d5beb315fff4b54d91c4e2f35eab031 +SHA256 (slony1-1.2.20.tar.bz2) = 57008e4534259e7c922c699b525289be81e1d838e4ac9cbc5dc4a20ec49995e7 +SIZE (slony1-1.2.20.tar.bz2) = 878983 +MD5 (slony1-1.2.20-docs.tar.bz2) = c74340b15b45f03dbf55c83856367b83 +SHA256 (slony1-1.2.20-docs.tar.bz2) = e914d5c1bfbfcdb678ae2d8e1d412440edbbbc379835142f10e40a91be016b28 +SIZE (slony1-1.2.20-docs.tar.bz2) = 231821 >Release-Note: >Audit-Trail: >Unformatted: