perfsonar-dev - [pS-dev] [GEANT/SA2/SA2T3-OPPD] r665 - in branches/perfsonar-oppd-new-architect: build/debian build/debian/perfsonar-oppd-mp-owamp-debian lib/perfSONAR/MP
Subject: perfsonar development work
List archive
[pS-dev] [GEANT/SA2/SA2T3-OPPD] r665 - in branches/perfsonar-oppd-new-architect: build/debian build/debian/perfsonar-oppd-mp-owamp-debian lib/perfSONAR/MP
Chronological Thread
- From:
- To:
- Subject: [pS-dev] [GEANT/SA2/SA2T3-OPPD] r665 - in branches/perfsonar-oppd-new-architect: build/debian build/debian/perfsonar-oppd-mp-owamp-debian lib/perfSONAR/MP
- Date: Fri, 12 Nov 2010 09:58:25 GMT
Author: dfn.calim
Date: 2010-11-12 09:58:25 +0000 (Fri, 12 Nov 2010)
New Revision: 665
Added:
branches/perfsonar-oppd-new-architect/build/debian/perfsonar-oppd-mp-owamp-debian/
Modified:
branches/perfsonar-oppd-new-architect/build/debian/create-personar-oppd-dpkg.sh
branches/perfsonar-oppd-new-architect/build/debian/perfsonar-oppd-mp-owamp-debian/changelog
branches/perfsonar-oppd-new-architect/build/debian/perfsonar-oppd-mp-owamp-debian/control
branches/perfsonar-oppd-new-architect/build/debian/perfsonar-oppd-mp-owamp-debian/files
branches/perfsonar-oppd-new-architect/build/debian/perfsonar-oppd-mp-owamp-debian/postinst
branches/perfsonar-oppd-new-architect/build/debian/perfsonar-oppd-mp-owamp-debian/preinst
branches/perfsonar-oppd-new-architect/lib/perfSONAR/MP/OWAMP.pm
Log:
Build script for all debian packages added
Modified:
branches/perfsonar-oppd-new-architect/build/debian/create-personar-oppd-dpkg.sh
===================================================================
---
branches/perfsonar-oppd-new-architect/build/debian/create-personar-oppd-dpkg.sh
2010-11-12 07:43:16 UTC (rev 664)
+++
branches/perfsonar-oppd-new-architect/build/debian/create-personar-oppd-dpkg.sh
2010-11-12 09:58:25 UTC (rev 665)
@@ -1,8 +1,27 @@
#!/bin/bash
-if [ -z "$1" ]; then
- echo 'Please chose as option:clean or create'
+
+usage()
+{
+echo -e "Usage:";
+echo -e "\tcreate-personar-oppd-dpkg.sh <ACTION> <MODULE>";
+echo -e "\t\t<ACTION>";
+echo -e "\t\t create\tcreate package";
+echo -e "\t\t clean\tclean all files and directories";
+echo -e "\t\t<MODULE>";
+echo -e "\t\tcore\t do action for perfsonar-oppd";
+echo -e "\t\tbwctl\t do action for perfsonar-oppd-mp-bwctl";
+echo -e "\t\towamp\t do action for perfsonar-oppd-mp-owamp";
+}
+
+
+if [ -z "$1" ]; then
+ usage
exit
fi
+if [ -z "$2" ]; then
+ usage
+ exit
+fi
version="0.53"
@@ -16,6 +35,10 @@
srcpath="../perfSONAR-MP-BWCTL"
fi
+if [ $2 == 'owamp' ] ; then
+ pkg_name="perfsonar-oppd-mp-owamp"
+ srcpath="../perfSONAR-MP-OWAMP"
+fi
if [ $1 == 'create' ] ; then
cd $srcpath
@@ -36,3 +59,4 @@
rm -rf $pkg_name-$version
rm $pkg_name'_'$version*
fi
+
Copied:
branches/perfsonar-oppd-new-architect/build/debian/perfsonar-oppd-mp-owamp-debian
(from rev 664,
branches/perfsonar-oppd-new-architect/build/debian/perfsonar-oppd-mp-bwctl-debian)
Modified:
branches/perfsonar-oppd-new-architect/build/debian/perfsonar-oppd-mp-owamp-debian/changelog
===================================================================
---
branches/perfsonar-oppd-new-architect/build/debian/perfsonar-oppd-mp-bwctl-debian/changelog
2010-11-12 07:43:16 UTC (rev 664)
+++
branches/perfsonar-oppd-new-architect/build/debian/perfsonar-oppd-mp-owamp-debian/changelog
2010-11-12 09:58:25 UTC (rev 665)
@@ -1,4 +1,4 @@
-perfsonar-oppd-mp-bwctl (0.53-0rc1) unstable; urgency=low
+perfsonar-oppd-mp-owamp (0.53-0rc1) unstable; urgency=low
* Initial release
Modified:
branches/perfsonar-oppd-new-architect/build/debian/perfsonar-oppd-mp-owamp-debian/control
===================================================================
---
branches/perfsonar-oppd-new-architect/build/debian/perfsonar-oppd-mp-bwctl-debian/control
2010-11-12 07:43:16 UTC (rev 664)
+++
branches/perfsonar-oppd-new-architect/build/debian/perfsonar-oppd-mp-owamp-debian/control
2010-11-12 09:58:25 UTC (rev 665)
@@ -1,4 +1,4 @@
-Source: perfsonar-oppd-mp-bwctl
+Source: perfsonar-oppd-mp-owamp
Section: net
Priority: extra
Maintainer: DFN Labor
<>
@@ -6,11 +6,11 @@
Standards-Version: 3.7.3
Homepage: http://www.win-labor.dfn.de
-Package: perfsonar-oppd-mp-bwctl
+Package: perfsonar-oppd-mp-owamp
Architecture: all
Depends: ${shlibs:Depends}, ${misc:Depends}
Pre-Depends: perfsonar-oppd ( >= 0.53)
-Description: perfSONAR::MP::BWCTL Perl module, plugin for oppd
+Description: perfSONAR::MP::OWAMP Perl module, plugin for oppd
The README is used to introduce the module and provide instructions on how
to install the module, any machine dependencies it may have (for example C
compilers and installed libraries) and any other information that should be
Modified:
branches/perfsonar-oppd-new-architect/build/debian/perfsonar-oppd-mp-owamp-debian/files
===================================================================
---
branches/perfsonar-oppd-new-architect/build/debian/perfsonar-oppd-mp-bwctl-debian/files
2010-11-12 07:43:16 UTC (rev 664)
+++
branches/perfsonar-oppd-new-architect/build/debian/perfsonar-oppd-mp-owamp-debian/files
2010-11-12 09:58:25 UTC (rev 665)
@@ -1 +1 @@
-perfsonar-oppd-mp-bwctl_0.53-0rc1_all.deb net extra
+perfsonar-oppd-mp-owamp_0.53-0rc1_all.deb net extra
Modified:
branches/perfsonar-oppd-new-architect/build/debian/perfsonar-oppd-mp-owamp-debian/postinst
===================================================================
---
branches/perfsonar-oppd-new-architect/build/debian/perfsonar-oppd-mp-bwctl-debian/postinst
2010-11-12 07:43:16 UTC (rev 664)
+++
branches/perfsonar-oppd-new-architect/build/debian/perfsonar-oppd-mp-owamp-debian/postinst
2010-11-12 09:58:25 UTC (rev 665)
@@ -1,5 +1,5 @@
#!/bin/sh
-# postinst script for perfsonar-oppd-mp-bwctl
+# postinst script for perfsonar-oppd-mp-owamp
#
# see: dh_installdeb(1)
Modified:
branches/perfsonar-oppd-new-architect/build/debian/perfsonar-oppd-mp-owamp-debian/preinst
===================================================================
---
branches/perfsonar-oppd-new-architect/build/debian/perfsonar-oppd-mp-bwctl-debian/preinst
2010-11-12 07:43:16 UTC (rev 664)
+++
branches/perfsonar-oppd-new-architect/build/debian/perfsonar-oppd-mp-owamp-debian/preinst
2010-11-12 09:58:25 UTC (rev 665)
@@ -1,5 +1,5 @@
#!/bin/sh
-# preinst script for perfsonar-oppd
+# preinst script for perfsonar-oppd-mp-owamp
#
# see: dh_installdeb(1)
Modified: branches/perfsonar-oppd-new-architect/lib/perfSONAR/MP/OWAMP.pm
===================================================================
--- branches/perfsonar-oppd-new-architect/lib/perfSONAR/MP/OWAMP.pm
2010-11-12 07:43:16 UTC (rev 664)
+++ branches/perfsonar-oppd-new-architect/lib/perfSONAR/MP/OWAMP.pm
2010-11-12 09:58:25 UTC (rev 665)
@@ -36,7 +36,7 @@
#DEBUG
use version;
-our $VERSION = 0.52;
+our $VERSION = 0.53;
use Log::Log4perl qw(get_logger);
use base qw(perfSONAR::MP);
@@ -268,4 +268,4 @@
return @datalines;
}
-1;
\ No newline at end of file
+1;
- [pS-dev] [GEANT/SA2/SA2T3-OPPD] r665 - in branches/perfsonar-oppd-new-architect: build/debian build/debian/perfsonar-oppd-mp-owamp-debian lib/perfSONAR/MP, svn-noreply, 11/12/2010
Archive powered by MHonArc 2.6.16.