- Update to 4.7.0

Changes:	https://github.com/nodejs/node/blob/master/doc/changelogs/CHANGELOG_V4.md
		https://nodejs.org/en/blog/release/v4.7.0/
PR:		215168
Submitted by:	Bradley T. Hughes <bradleythughes@fastmail.fm> (maintainer)
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2016-12-09 12:57:44 +00:00
parent fea6f436fc
commit 19b93982e5
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=428200
5 changed files with 4 additions and 49 deletions

View file

@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= node
PORTVERSION= 4.6.2
PORTREVISION= 1
PORTVERSION= 4.7.0
DISTVERSIONPREFIX= v
CATEGORIES= www
MASTER_SITES= http://nodejs.org/dist/v${PORTVERSION}/

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1478724819
SHA256 (node-v4.6.2.tar.gz) = 3c8f3af398c348cdf90fef9b983e4b46aae96a56238236542925e0bb4ee27ee8
SIZE (node-v4.6.2.tar.gz) = 22821027
TIMESTAMP = 1481149235
SHA256 (node-v4.7.0.tar.gz) = 0bc45fc02e425746001a8f012d6781fa5da6e629a43654c84ab7e767368fec61
SIZE (node-v4.7.0.tar.gz) = 22851509

View file

@ -1,11 +0,0 @@
--- deps/v8/src/compiler/instruction.h.orig 2016-04-01 00:47:45 UTC
+++ deps/v8/src/compiler/instruction.h
@@ -1011,7 +1011,7 @@ class InstructionBlock final : public Zo
typedef ZoneDeque<Constant> ConstantDeque;
typedef std::map<int, Constant, std::less<int>,
- zone_allocator<std::pair<int, Constant> > > ConstantMap;
+ zone_allocator<std::pair<const int, Constant> > > ConstantMap;
typedef ZoneDeque<Instruction*> InstructionDeque;
typedef ZoneDeque<ReferenceMap*> ReferenceMapDeque;

View file

@ -1,15 +0,0 @@
--- deps/v8/src/compiler/js-type-feedback.h.orig 2016-04-01 00:47:45 UTC
+++ deps/v8/src/compiler/js-type-feedback.h
@@ -33,9 +33,10 @@ class JSTypeFeedbackTable : public ZoneO
private:
friend class JSTypeFeedbackSpecializer;
typedef std::map<NodeId, TypeFeedbackId, std::less<NodeId>,
- zone_allocator<TypeFeedbackId> > TypeFeedbackIdMap;
+ zone_allocator<std::pair<const NodeId, TypeFeedbackId> > >
+ TypeFeedbackIdMap;
typedef std::map<NodeId, FeedbackVectorICSlot, std::less<NodeId>,
- zone_allocator<FeedbackVectorICSlot> >
+ zone_allocator<std::pair<const NodeId, FeedbackVectorICSlot> > >
FeedbackVectorICSlotMap;
TypeFeedbackIdMap type_feedback_id_map_;

View file

@ -1,18 +0,0 @@
--- deps/v8/src/zone-containers.h.orig 2016-04-01 00:47:46 UTC
+++ deps/v8/src/zone-containers.h
@@ -114,12 +114,12 @@ class ZoneSet : public std::set<K, Compa
// a zone allocator.
template <typename K, typename V, typename Compare = std::less<K>>
class ZoneMap
- : public std::map<K, V, Compare, zone_allocator<std::pair<K, V>>> {
+ : public std::map<K, V, Compare, zone_allocator<std::pair<const K, V>>> {
public:
// Constructs an empty map.
explicit ZoneMap(Zone* zone)
- : std::map<K, V, Compare, zone_allocator<std::pair<K, V>>>(
- Compare(), zone_allocator<std::pair<K, V>>(zone)) {}
+ : std::map<K, V, Compare, zone_allocator<std::pair<const K, V>>>(
+ Compare(), zone_allocator<std::pair<const K, V>>(zone)) {}
};