From 5c5bf23f57bd72f446509cb04e4759c35baf7f4a Mon Sep 17 00:00:00 2001 From: Thomas Mangin Date: Wed, 28 Aug 2013 21:19:39 +0100 Subject: [PATCH] ready for 3.2.5 release --- README.md | 11 ++++++----- debian/copyright | 4 ++-- lib/exabgp/version.py | 2 +- sbin/exabgp | 2 +- sbin/exabmp | 2 +- setup.py | 2 +- 6 files changed, 12 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 988ddcc5e..b193678d2 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Presentation Control your network using [BGP](http://www.ietf.org/rfc/rfc4271.txt) from any commodity servers and reap the benefit of software defined networking without [OpenFlow](http://www.wired.com/wiredenterprise/2012/04/going-with-the-flow-google/) -The list of supported RFC is available [here](http://code.google.com/p/exabgp/wiki/RFC) +The list of supported RFC is available [here](https://github.com/Thomas-Mangin/exabgp/wiki/RFC-Information) Receive parsed BGP updates in a friendly form (plain text or JSON) and manipulate them with shell scripts, for example this [looking glass](https://code.google.com/p/gixlg/wiki/sample_maps) use ExaBGP, PHP and MySQL and let you see how a prefix is routed through your network. @@ -21,7 +21,7 @@ These organisations told us they use ExaBGP : [MICROSOFT](http://www.nanog.org/sites/default/files/wed.general.brainslug.lapukhov.20.pdf) [DAILYMOTION](https://twitter.com/fgabut) [BBC](http://www.bbc.co.uk/) -[WIKIMEDIA](https://code.google.com/p/exabgp/issues/detail?id=4) +[WIKIMEDIA](https://github.com/Thomas-Mangin/exabgp/issues/4) [AMSIX](https://ripe64.ripe.net/presentations/49-Follow_Up_AMS-IX_route-server_test_Euro-IX_20th_RIPE64.pdf) [NEO TELECOM](http://media.frnog.org/FRnOG_18/FRnOG_18-6.pdf) [VIDEOPLATZA](http://www.videoplaza.com/wp-content/uploads/2013/04/Junior-Operations-Engineer-Spring-2013.pdf) @@ -93,9 +93,10 @@ Keep up to date, follow our [**google community**](https://plus.google.com/u/0/c Please consult any of : - * the [changelog](http://code.google.com/p/exabgp/wiki/changelog) or [RFC compliance](http://code.google.com/p/exabgp/wiki/RFC) pages - * the [wiki](http://code.google.com/p/exabgp/wiki/Home) and [the FAQ](http://code.google.com/p/exabgp/wiki/FAQ) - * some [talks and presentations, ...](http://code.google.com/p/exabgp/wiki/related) + * the [changelog](https://raw.github.com/Thomas-Mangin/exabgp/master/CHANGELOG) + * or [RFC compliance](https://github.com/Thomas-Mangin/exabgp/wiki/RFC-Information) pages + * the [wiki](https://github.com/Thomas-Mangin/exabgp/wiki) with some some talks and presentations, ... + * and [the FAQ](https://github.com/Thomas-Mangin/exabgp/wiki/FAQ) Development is done on python 2.7, the code is kept compatible with python 2.4 in ExaBGP 2.x.x and python 2.5 in ExaBGP 3.1.x. ExaBGP 3.2.x will rely on python 2.7, and we are likely to required python 3.4+ for ExaBGP 4.x.x diff --git a/debian/copyright b/debian/copyright index 580c55eaa..712257243 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,7 +1,7 @@ -This work was packaged for Debian by Henry-Nicolas Tourneur on +This work was packaged for Debian by Henry-Nicolas Tourneur on Thu, 21 Apr 2011 19:35:15 +0000 -It was downloaded from: http://code.google.com/p/exabgp/source/list +It was downloaded from: https://github.com/Thomas-Mangin/exabgp/releases Upstream Authors: Thomas Mangin diff --git a/lib/exabgp/version.py b/lib/exabgp/version.py index 6057bc5b4..325fa560a 100644 --- a/lib/exabgp/version.py +++ b/lib/exabgp/version.py @@ -1,4 +1,4 @@ -version="3.2.4" +version="3.2.5" # Do not change the first line as it is parsed by scripts diff --git a/sbin/exabgp b/sbin/exabgp index ed09e10f7..62d3efdf2 100755 --- a/sbin/exabgp +++ b/sbin/exabgp @@ -15,7 +15,7 @@ case $dirname in ;; esac -export PYTHONPATH=$path/lib:/usr/share/exabgp/lib/3.2.4 +export PYTHONPATH=$path/lib:/usr/share/exabgp/lib/3.2.5 if [ "$INTERPRETER" != "" ] then diff --git a/sbin/exabmp b/sbin/exabmp index 9ca90eb46..91f2886f8 100755 --- a/sbin/exabmp +++ b/sbin/exabmp @@ -15,7 +15,7 @@ case $dirname in ;; esac -export PYTHONPATH=$path/lib:/usr/share/exabgp/lib/3.2.4 +export PYTHONPATH=$path/lib:/usr/share/exabgp/lib/3.2.5 if [ "$INTERPRETER" != "" ] then diff --git a/setup.py b/setup.py index fa77f946b..4410d4b6c 100644 --- a/setup.py +++ b/setup.py @@ -53,7 +53,7 @@ def configuration (etc): package_dir = {'': 'lib'}, packages=packages('lib'), scripts=['sbin/exabgp',], - download_url='http://exabgp.googlecode.com/files/exabgp-%s.tgz' % version, + download_url='https://github.com/Thomas-Mangin/exabgp/archive/%s.zip' % version, data_files=[ ('etc/exabgp',configuration('etc/exabgp')), ('usr/lib/systemd/system',configuration('etc/systemd')),