From owner-svn-ports-head@FreeBSD.ORG Tue Sep 24 02:38:23 2013 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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 8CB4744C; Tue, 24 Sep 2013 02:38:23 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6038A2949; Tue, 24 Sep 2013 02:38:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8O2cNpT047388; Tue, 24 Sep 2013 02:38:23 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8O2cMV9047382; Tue, 24 Sep 2013 02:38:22 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201309240238.r8O2cMV9047382@svn.freebsd.org> From: Steve Wills Date: Tue, 24 Sep 2013 02:38:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r328086 - in head/net-p2p/litecoin: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 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: Tue, 24 Sep 2013 02:38:23 -0000 Author: swills Date: Tue Sep 24 02:38:22 2013 New Revision: 328086 URL: http://svnweb.freebsd.org/changeset/ports/328086 Log: - Update to 0.8.5.1 - Fix build on 10.0-ALPHA2 Added: head/net-p2p/litecoin/files/patch-src__serialize.h (contents, props changed) Modified: head/net-p2p/litecoin/Makefile head/net-p2p/litecoin/distinfo Modified: head/net-p2p/litecoin/Makefile ============================================================================== --- head/net-p2p/litecoin/Makefile Tue Sep 24 02:22:24 2013 (r328085) +++ head/net-p2p/litecoin/Makefile Tue Sep 24 02:38:22 2013 (r328086) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= litecoin -PORTVERSION= 0.8.3.7 +PORTVERSION= 0.8.5.1 CATEGORIES= net-p2p finance MASTER_SITES= LOCAL/swills \ GH @@ -14,7 +14,7 @@ LIB_DEPENDS= boost_date_time:${PORTSDIR} USE_GITHUB= yes GH_ACCOUNT= litecoin-project -GH_COMMIT= 2884342 +GH_COMMIT= 6cef39c GH_TAGNAME= v${PORTVERSION} USE_OPENSSL= yes Modified: head/net-p2p/litecoin/distinfo ============================================================================== --- head/net-p2p/litecoin/distinfo Tue Sep 24 02:22:24 2013 (r328085) +++ head/net-p2p/litecoin/distinfo Tue Sep 24 02:38:22 2013 (r328086) @@ -1,2 +1,2 @@ -SHA256 (litecoin-0.8.3.7.tar.gz) = d80753ffb734f99376af1c361b3330fcc761675bda3821f95933bbd362642209 -SIZE (litecoin-0.8.3.7.tar.gz) = 4781956 +SHA256 (litecoin-0.8.5.1.tar.gz) = 7588349de2b006153bde642468dbddd215986ca18ca7d5ef896092cab5488c49 +SIZE (litecoin-0.8.5.1.tar.gz) = 4783538 Added: head/net-p2p/litecoin/files/patch-src__serialize.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-p2p/litecoin/files/patch-src__serialize.h Tue Sep 24 02:38:22 2013 (r328086) @@ -0,0 +1,22 @@ +--- src/serialize.h.orig 2013-09-21 15:05:20.000000000 +0000 ++++ src/serialize.h 2013-09-21 15:06:01.000000000 +0000 +@@ -895,19 +895,6 @@ + iterator insert(iterator it, const char& x=char()) { return vch.insert(it, x); } + void insert(iterator it, size_type n, const char& x) { vch.insert(it, n, x); } + +- void insert(iterator it, const_iterator first, const_iterator last) +- { +- assert(last - first >= 0); +- if (it == vch.begin() + nReadPos && (unsigned int)(last - first) <= nReadPos) +- { +- // special case for inserting at the front when there's room +- nReadPos -= (last - first); +- memcpy(&vch[nReadPos], &first[0], last - first); +- } +- else +- vch.insert(it, first, last); +- } +- + void insert(iterator it, std::vector::const_iterator first, std::vector::const_iterator last) + { + assert(last - first >= 0);