- Update to 3.4.13
This commit is contained in:
parent
b3ab751506
commit
ffbf9a6f5a
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=405645
@ -2,8 +2,7 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= exabgp
|
||||
PORTVERSION= 3.4.12
|
||||
PORTREVISION= 1
|
||||
PORTVERSION= 3.4.13
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= GH \
|
||||
http://mirrors.rit.edu/zi/
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (Exa-Networks-exabgp-3.4.12_GH0.tgz) = 5a4fe7cbbb0635969d7ede6cb81a9166416b17ceca64a35d610f3779c86dc59a
|
||||
SIZE (Exa-Networks-exabgp-3.4.12_GH0.tgz) = 538203
|
||||
SHA256 (Exa-Networks-exabgp-3.4.13_GH0.tgz) = e92cf3ff9ac72d1be84f7168f4981bd95973f90ebece86958f3357b24e6c0da3
|
||||
SIZE (Exa-Networks-exabgp-3.4.13_GH0.tgz) = 538286
|
||||
|
@ -1,28 +0,0 @@
|
||||
--- 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([],[])
|
Loading…
Reference in New Issue
Block a user