From owner-svn-ports-all@FreeBSD.ORG Sun Sep 22 15:51:34 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 567C86F6; Sun, 22 Sep 2013 15:51:34 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2BE772808; Sun, 22 Sep 2013 15:51:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8MFpYoC007497; Sun, 22 Sep 2013 15:51:34 GMT (envelope-from zi@svn.freebsd.org) Received: (from zi@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8MFpXgI007494; Sun, 22 Sep 2013 15:51:33 GMT (envelope-from zi@svn.freebsd.org) Message-Id: <201309221551.r8MFpXgI007494@svn.freebsd.org> From: Ryan Steinmetz Date: Sun, 22 Sep 2013 15:51:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r327877 - in head/net/exabgp: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Sep 2013 15:51:34 -0000 Author: zi Date: Sun Sep 22 15:51:33 2013 New Revision: 327877 URL: http://svnweb.freebsd.org/changeset/ports/327877 Log: - Update to 3.2.13 Modified: head/net/exabgp/Makefile head/net/exabgp/distinfo head/net/exabgp/files/exabgp.sh.in Modified: head/net/exabgp/Makefile ============================================================================== --- head/net/exabgp/Makefile Sun Sep 22 15:48:15 2013 (r327876) +++ head/net/exabgp/Makefile Sun Sep 22 15:51:33 2013 (r327877) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= exabgp -PORTVERSION= 3.2.9 +PORTVERSION= 3.2.13 CATEGORIES= net MASTER_SITES= GH GHC \ http://mirrors.rit.edu/zi/ @@ -14,9 +14,9 @@ COMMENT= A BGP engine and route injector LICENSE= BSD USE_GITHUB= yes -GH_ACCOUNT= Thomas-Mangin +GH_ACCOUNT= thomas-mangin GH_TAGNAME= ${PORTVERSION} -GH_COMMIT= f0b71c5 +GH_COMMIT= 3ccdb34 USE_PYTHON= yes SUB_FILES= pkg-message exabgp.sh SUB_LIST= PYTHON_LIBDIR=${PYTHON_LIBDIR} PYTHON_CMD=${PYTHON_CMD} \ Modified: head/net/exabgp/distinfo ============================================================================== --- head/net/exabgp/distinfo Sun Sep 22 15:48:15 2013 (r327876) +++ head/net/exabgp/distinfo Sun Sep 22 15:51:33 2013 (r327877) @@ -1,2 +1,2 @@ -SHA256 (exabgp-3.2.9.tgz) = 1128ef40b58f98b66b7c9fefe85649daf0084530ea819ded39a74b07be57fb6e -SIZE (exabgp-3.2.9.tgz) = 578138 +SHA256 (exabgp-3.2.13.tgz) = f156dae61774eba01de889af3bb0519eace3d278eed6fe4326348427810e1697 +SIZE (exabgp-3.2.13.tgz) = 583161 Modified: head/net/exabgp/files/exabgp.sh.in ============================================================================== --- head/net/exabgp/files/exabgp.sh.in Sun Sep 22 15:48:15 2013 (r327876) +++ head/net/exabgp/files/exabgp.sh.in Sun Sep 22 15:51:33 2013 (r327877) @@ -4,13 +4,13 @@ export PYTHONPATH=%%PYTHON_LIBDIR%%:%%PY INTERPRETER=%%PYTHON_CMD%% -APPLICATIONS=`$INTERPRETER -c "import sys,os; print ' '.join(os.path.join(_,'exabgp','application.py') for _ in sys.path if os.path.isfile('/'.join((_,'exabgp/application.py'))))"` +APPLICATIONS=`$INTERPRETER -c "import sys,os; print ' '.join(os.path.join(_,'exabgp','application','bgp.py') for _ in sys.path if os.path.isfile('/'.join((_,'exabgp','application','bgp.py'))))"` APPLICATION=`echo $APPLICATIONS | awk '{ print $1; }'` if [ $# -eq 0 ]; then - $INTERPRETER -m exabgp.debug $APPLICATION -c %%PREFIX%%/etc/exabgp --help + $INTERPRETER -m exabgp.debug $APPLICATION --folder %%PREFIX%%/etc/exabgp --help echo "===> To start exabgp, you should use:" echo "===> service exabgp start" else - exec $INTERPRETER -m exabgp.debug $APPLICATION -c %%PREFIX%%/etc/exabgp $* + exec $INTERPRETER -m exabgp.debug $APPLICATION --folder %%PREFIX%%/etc/exabgp $* fi