diff options
author | zi <zi@FreeBSD.org> | 2016-01-10 01:31:53 +0800 |
---|---|---|
committer | zi <zi@FreeBSD.org> | 2016-01-10 01:31:53 +0800 |
commit | 3e95eb2aea06408efa4c0ae324be01fe0fb96df8 (patch) | |
tree | 986bbb60a2de027e238508dc9e814c0982a5a738 /net/exabgp | |
parent | 9899c128f027e8dd811c60cdb5feb5b1955267f5 (diff) | |
download | freebsd-ports-gnome-3e95eb2aea06408efa4c0ae324be01fe0fb96df8.tar.gz freebsd-ports-gnome-3e95eb2aea06408efa4c0ae324be01fe0fb96df8.tar.zst freebsd-ports-gnome-3e95eb2aea06408efa4c0ae324be01fe0fb96df8.zip |
- Update to 3.4.13
Diffstat (limited to 'net/exabgp')
-rw-r--r-- | net/exabgp/Makefile | 3 | ||||
-rw-r--r-- | net/exabgp/distinfo | 4 | ||||
-rw-r--r-- | net/exabgp/files/patch-lib_exabgp_bgp_message_update_attribute_aspath.py | 28 |
3 files changed, 3 insertions, 32 deletions
diff --git a/net/exabgp/Makefile b/net/exabgp/Makefile index 6dcb22511688..dafcf3ff1aff 100644 --- a/net/exabgp/Makefile +++ b/net/exabgp/Makefile @@ -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/ diff --git a/net/exabgp/distinfo b/net/exabgp/distinfo index 2070fbccc5b2..a5656f83d803 100644 --- a/net/exabgp/distinfo +++ b/net/exabgp/distinfo @@ -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 diff --git a/net/exabgp/files/patch-lib_exabgp_bgp_message_update_attribute_aspath.py b/net/exabgp/files/patch-lib_exabgp_bgp_message_update_attribute_aspath.py deleted file mode 100644 index 151ccc5b7332..000000000000 --- a/net/exabgp/files/patch-lib_exabgp_bgp_message_update_attribute_aspath.py +++ /dev/null @@ -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([],[]) |