Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 17 Sep 2015 18:21:59 +0000 (UTC)
From:      Ryan Steinmetz <zi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r397199 - in head/net/exabgp: . files
Message-ID:  <201509171821.t8HILxL9034448@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: zi
Date: Thu Sep 17 18:21:58 2015
New Revision: 397199
URL: https://svnweb.freebsd.org/changeset/ports/397199

Log:
  - Merge fix for upstream bug 331
  - Bump PORTREVISION
  
  Submitted by:	Victor Sudakov <sudakov@sibptus.tomsk.ru>

Added:
  head/net/exabgp/files/patch-lib_exabgp_bgp_message_update_attribute_aspath.py   (contents, props changed)
Modified:
  head/net/exabgp/Makefile

Modified: head/net/exabgp/Makefile
==============================================================================
--- head/net/exabgp/Makefile	Thu Sep 17 18:07:25 2015	(r397198)
+++ head/net/exabgp/Makefile	Thu Sep 17 18:21:58 2015	(r397199)
@@ -3,6 +3,7 @@
 
 PORTNAME=	exabgp
 PORTVERSION=	3.4.12
+PORTREVISION=	1
 CATEGORIES=	net
 MASTER_SITES=	GH \
 		http://mirrors.rit.edu/zi/

Added: head/net/exabgp/files/patch-lib_exabgp_bgp_message_update_attribute_aspath.py
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/exabgp/files/patch-lib_exabgp_bgp_message_update_attribute_aspath.py	Thu Sep 17 18:21:58 2015	(r397199)
@@ -0,0 +1,28 @@
+--- lib/exabgp/bgp/message/update/attribute/aspath.py.orig	2015-07-22 10:19:42 UTC
++++ lib/exabgp/bgp/message/update/attribute/aspath.py
+@@ -140,7 +140,7 @@ class ASPath (Attribute):
+ 		return self._json[name]
+ 
+ 	@classmethod
+-	def __new_aspaths (cls, data, asn4, klass=None):
++	def _new_aspaths (cls, data, asn4, klass=None):
+ 		as_set = []
+ 		as_seq = []
+ 		as_cset = []
+@@ -199,7 +199,7 @@ class ASPath (Attribute):
+ 	def unpack (cls, data, negotiated):
+ 		if not data:
+ 			return None  # ASPath.Empty
+-		return cls.__new_aspaths(data,negotiated.asn4,ASPath)
++		return cls._new_aspaths(data,negotiated.asn4,ASPath)
+ 
+ 
+ ASPath.Empty = ASPath([],[])
+@@ -220,6 +220,6 @@ class AS4Path (ASPath):
+ 	def unpack (cls, data, negotiated):
+ 		if not data:
+ 			return None  # AS4Path.Empty
+-		return cls.__new_aspaths(data,True,AS4Path)
++		return cls._new_aspaths(data,True,AS4Path)
+ 
+ AS4Path.Empty = AS4Path([],[])



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