Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 24 Sep 2013 02:38:22 +0000 (UTC)
From:      Steve Wills <swills@FreeBSD.org>
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
Message-ID:  <201309240238.r8O2cMV9047382@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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<char>::const_iterator first, std::vector<char>::const_iterator last)
+     {
+         assert(last - first >= 0);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201309240238.r8O2cMV9047382>