From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Nov 7 23:50:26 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8FE1C16A407 for ; Tue, 7 Nov 2006 23:50:26 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 46E2743D49 for ; Tue, 7 Nov 2006 23:50:26 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kA7NoQeg029225 for ; Tue, 7 Nov 2006 23:50:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kA7NoQ3X029224; Tue, 7 Nov 2006 23:50:26 GMT (envelope-from gnats) Date: Tue, 7 Nov 2006 23:50:26 GMT Message-Id: <200611072350.kA7NoQ3X029224@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Matthias Andree Cc: Subject: Re: ports/105112: databases/db44 can't fetch all the necessary patches X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Matthias Andree List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Nov 2006 23:50:26 -0000 The following reply was made to PR ports/105112; it has been noted by GNATS. From: Matthias Andree To: bug-followup@FreeBSD.org, timur@gnu.org Cc: Subject: Re: ports/105112: databases/db44 can't fetch all the necessary patches Date: Wed, 08 Nov 2006 00:45:24 +0100 This is a multi-part message in MIME format. --------------010901060801030202010109 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Please use this version instead. Thank you, Timur! -- Matthias Andree --------------010901060801030202010109 Content-Type: text/x-patch; name="ports105112new.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="ports105112new.diff" --- /usr/ports/databases/db44/Makefile Fri Apr 14 05:44:08 2006 +++ /usr/home/emma/ports/databases/db44/Makefile Wed Nov 8 00:31:28 2006 @@ -6,15 +6,17 @@ # PORTNAME= db44 -PORTVERSION= 4.4.20.2 +PORTVERSION= 4.4.20.4 CATEGORIES= databases -MASTER_SITES= http://downloads.sleepycat.com/ +MASTER_SITES= http://download-east.oracle.com/berkeley-db/ \ + http://download-west.oracle.com/berkeley-db/ \ + http://download-uk.oracle.com/berkeley-db/ PKGNAMESUFFIX?= DISTNAME= db-4.4.20 DIST_SUBDIR= bdb -PATCH_SITES= http://www.sleepycat.com/update/4.4.20/ -PATCHFILES= patch.4.4.20.1 patch.4.4.20.2 +PATCH_SITES= http://www.oracle.com/technology/products/berkeley-db/db/update/4.4.20/ +PATCHFILES= patch.4.4.20.1 patch.4.4.20.2 patch.4.4.20.3 patch.4.4.20.4 PATCH_DIST_STRIP= -d .. # * patch.4.4.20.1: ----------------------------------------------------------- # Fix a bug that could cause a trap during recovery if multiple operations that @@ -22,13 +24,20 @@ # * patch.4.4.20.2: ----------------------------------------------------------- # Fix a bug that could cause traps or hangs if the DB_TXN->set_name function is # used in a multithreaded application. [#14033] +# * patch.4.4.20.3: ----------------------------------------------------------- +# Fix a bug where cursor lookups on secondary databases with off-page +# duplicates could fail. [#14240] +# * patch.4.4.20.4: ----------------------------------------------------------- +# Fix a bug where cache buffer retrieval could race with a checkpoint +# call, potentially causing database environment recovery to fail. [#14657] MAINTAINER= matthias.andree@gmx.de COMMENT= The Berkeley DB package, revision 4.4 WRKSRC= ${WRKDIR}/${DISTNAME}/build_unix -INSTALLS_SHLIB= yes +RANDOMIZE_MASTER_SITES= yes +USE_LDCONFIG= yes GNU_CONFIGURE= yes CONFIGURE_SCRIPT= ../dist/configure LIBTOOLFILES= ${CONFIGURE_SCRIPT} --------------010901060801030202010109--