From owner-svn-ports-head@FreeBSD.ORG Fri Feb 27 19:51:12 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5292A362; Fri, 27 Feb 2015 19:51:12 +0000 (UTC) Received: from mail-ie0-f181.google.com (mail-ie0-f181.google.com [209.85.223.181]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 177D1F97; Fri, 27 Feb 2015 19:51:11 +0000 (UTC) Received: by iecrd18 with SMTP id rd18so33677564iec.5; Fri, 27 Feb 2015 11:51:05 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=7lwD79W8i9sUkx/Qd18CwMnm1f94HqjPexg8TzgE0+4=; b=aOshhcrbNRxoQf/nx5knErd00saefPJzt9I4ZUYo2kazGfHawNPPFrabbkqsy/xU8A 8D3df2K9YFkejdArMHJrWZMempe/3IMVSAXOVPzx+cbXuLLrqfVUf1UttO/L9e8waMpm PAtrjhyZoecGabbaUkqHWTcYKS/cqEHzM9LohGVhYwFx0jBvjWHHQwqzcMDbcMroWh+R JdpnxdeGOYdScMgeaHTf8YRL9Rk1VIlWfrS2TAOQWXX37C2mVU8t9UDDpEYl0JzHt7au kt/H4IZJAGLveVSi1ly/n+Tooex75RH4pCMiV/winUEAXUe6MW2dJByu3ZXvRMpgKcQv +8uQ== X-Received: by 10.50.30.130 with SMTP id s2mr6563513igh.11.1425066665024; Fri, 27 Feb 2015 11:51:05 -0800 (PST) Received: from mail-ig0-f171.google.com (mail-ig0-f171.google.com. [209.85.213.171]) by mx.google.com with ESMTPSA id y5sm1804322ign.7.2015.02.27.11.51.04 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 27 Feb 2015 11:51:04 -0800 (PST) Received: by igdh15 with SMTP id h15so3238520igd.4; Fri, 27 Feb 2015 11:51:04 -0800 (PST) MIME-Version: 1.0 X-Received: by 10.42.249.2 with SMTP id mi2mr17387638icb.36.1425066664408; Fri, 27 Feb 2015 11:51:04 -0800 (PST) Received: by 10.64.192.70 with HTTP; Fri, 27 Feb 2015 11:51:04 -0800 (PST) In-Reply-To: <201502271653.t1RGrLxT082354@svn.freebsd.org> References: <201502271653.t1RGrLxT082354@svn.freebsd.org> Date: Sat, 28 Feb 2015 01:51:04 +0600 Message-ID: Subject: Re: svn commit: r380110 - head/databases/db48 From: Muhammad Moinur Rahman To: Antoine Brodin Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 Cc: "svn-ports-head@freebsd.org" , "svn-ports-all@freebsd.org" , "ports-committers@freebsd.org" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Feb 2015 19:51:12 -0000 Hi, I believe that it can be overridden by following some rules. Most of the coin system uses their portable wallet based on db48 format. These allows the wallet to be moved to another system without any hassle. However most of the coin based system allows installing/configuring with db5 with some knobs but in that case the wallets wont be portable. That is those dat files won't be accessible using db48 on another system. However if we add a pkg-message mentioning that before moving please use a db_dump and in the next system use a db_load it sounds promising. I haven't checked the work ability but theoretically it should work. If you give a positive feedback I might think of implementing those. BR, bofh On Fri, Feb 27, 2015 at 10:53 PM, Antoine Brodin wrote: > Author: antoine > Date: Fri Feb 27 16:53:21 2015 > New Revision: 380110 > URL: https://svnweb.freebsd.org/changeset/ports/380110 > QAT: https://qat.redports.org/buildarchive/r380110/ > > Log: > Extend expiration date of 4 months, *coin ports still need it > > Modified: > head/databases/db48/Makefile > > Modified: head/databases/db48/Makefile > > ============================================================================== > --- head/databases/db48/Makefile Fri Feb 27 16:48:43 2015 > (r380109) > +++ head/databases/db48/Makefile Fri Feb 27 16:53:21 2015 > (r380110) > @@ -16,7 +16,7 @@ COMMENT= The Berkeley DB package, revisi > DEPRECATED= Please migrate to db5 or db6 > # The port is not to be removed unless the bitcoin-related ports can > # go without this. > -EXPIRATION_DATE= 2015-02-28 > +EXPIRATION_DATE= 2015-06-30 > > LICENSE= BSD3CLAUSE > LICENSE_FILE= ${WRKDIR}/${DISTNAME}/LICENSE > >