From: Peter C. <pc...@us...> - 2010-02-03 01:26:59
|
Update of /cvsroot/ipbench/ipbench2/debian In directory sfp-cvsdas-1.v30.ch3.sourceforge.com:/tmp/cvs-serv20202/debian Modified Files: control ipbench-client.install ipbench-controller.install ipbench-target.install Log Message: Many minor mods: --- rename ipbench.py and ipbenchd.py to remove suffix --- Check return values on system() , nice() etc., to allow building with -Werror --- Fix installation varation between Ubuntu and Debian: site-packages vs dist-packages. Index: ipbench-client.install =================================================================== RCS file: /cvsroot/ipbench/ipbench2/debian/ipbench-client.install,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ipbench-client.install 22 Dec 2004 03:30:17 -0000 1.1 --- ipbench-client.install 3 Feb 2010 01:26:51 -0000 1.2 *************** *** 1,3 **** ! debian/tmp/usr/bin/ipbenchd.py ! debian/tmp/usr/lib/python*/site-packages/*client* ! debian/tmp/usr/lib/python*/site-packages/*Client* --- 1 ---- ! debian/tmp/usr/lib/python*/{site,dist}-packages/*[cC]lient* Index: ipbench-controller.install =================================================================== RCS file: /cvsroot/ipbench/ipbench2/debian/ipbench-controller.install,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ipbench-controller.install 22 Dec 2004 03:30:17 -0000 1.1 --- ipbench-controller.install 3 Feb 2010 01:26:51 -0000 1.2 *************** *** 1 **** ! debian/tmp/usr/bin/ipbench.py \ No newline at end of file --- 1 ---- ! debian/tmp/usr/bin/ipbench Index: control =================================================================== RCS file: /cvsroot/ipbench/ipbench2/debian/control,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** control 1 Feb 2010 23:59:43 -0000 1.7 --- control 3 Feb 2010 01:26:51 -0000 1.8 *************** *** 8,12 **** Package: ipbench-client Architecture: any ! Depends: ${shlibs:Depends}, ipbench-plugins, python Description: Client machine files for ipbench2 ipbench is a distributed networking suite with a variety of tests and --- 8,12 ---- Package: ipbench-client Architecture: any ! Depends: ${shlibs:Depends}, ipbench-plugins, python, ipbench-daemon Description: Client machine files for ipbench2 ipbench is a distributed networking suite with a variety of tests and *************** *** 18,22 **** Package: ipbench-target Architecture: any ! Depends: ${shlibs:Depends}, ipbench-plugins, python Description: Target machine files for ipbench2 ipbench is a distributed networking suite with a variety of tests and --- 18,22 ---- Package: ipbench-target Architecture: any ! Depends: ${shlibs:Depends}, ipbench-plugins, python, ipbench-daemon Description: Target machine files for ipbench2 ipbench is a distributed networking suite with a variety of tests and *************** *** 61,62 **** --- 61,75 ---- a easiliy extended API for writing new ones. More information can be found at http://ipbench.sf.net + + Package: ipbench-controller + Architecture: all + Depends: ${shlibs:Depends}, python, ipbench-client, ipbench-target + Description: Controller script for ipbench2 + ipbench is a distributed networking suite with a variety of tests and + a easiliy extended API for writing new ones. More information can be + found at http://ipbench.sf.net, + This package contains the control script. + + Package: ipbench-daemon + Architecture: all + Depends: python Index: ipbench-target.install =================================================================== RCS file: /cvsroot/ipbench/ipbench2/debian/ipbench-target.install,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ipbench-target.install 22 Dec 2004 03:30:17 -0000 1.1 --- ipbench-target.install 3 Feb 2010 01:26:51 -0000 1.2 *************** *** 1,3 **** ! debian/tmp/usr/bin/ipbenchd.py ! debian/tmp/usr/lib/python*/site-packages/*target* ! debian/tmp/usr/lib/python*/site-packages/*Target* --- 1 ---- ! debian/tmp/usr/lib/python*/{site,dist}-packages/*[Tt]arget* |