Skip to Content.
Sympa Menu

perfsonar-dev - [pS-dev] [GEANT/SA2/SA2T3-OPPD] r639 - in branches/perfsonar-oppd-new-architect: build/perfSONAR build/perfSONAR/t t

Subject: perfsonar development work

List archive

[pS-dev] [GEANT/SA2/SA2T3-OPPD] r639 - in branches/perfsonar-oppd-new-architect: build/perfSONAR build/perfSONAR/t t


Chronological Thread 
  • From:
  • To:
  • Subject: [pS-dev] [GEANT/SA2/SA2T3-OPPD] r639 - in branches/perfsonar-oppd-new-architect: build/perfSONAR build/perfSONAR/t t
  • Date: Tue, 21 Sep 2010 14:55:06 +0100

Author: dfn.calim
Date: 2010-09-21 14:55:05 +0100 (Tue, 21 Sep 2010)
New Revision: 639

Modified:
branches/perfsonar-oppd-new-architect/build/perfSONAR/Build.PL
branches/perfsonar-oppd-new-architect/build/perfSONAR/MANIFEST
branches/perfsonar-oppd-new-architect/build/perfSONAR/MANIFEST.SKIP
branches/perfsonar-oppd-new-architect/build/perfSONAR/t/00-load.t
branches/perfsonar-oppd-new-architect/t/perfSONAR-001-SOAP-Message.t
branches/perfsonar-oppd-new-architect/t/perfSONAR-002-Core.t
Log:
changing some debian build information

Modified: branches/perfsonar-oppd-new-architect/build/perfSONAR/Build.PL
===================================================================
--- branches/perfsonar-oppd-new-architect/build/perfSONAR/Build.PL
2010-09-21 10:51:12 UTC (rev 638)
+++ branches/perfsonar-oppd-new-architect/build/perfSONAR/Build.PL
2010-09-21 13:55:05 UTC (rev 639)
@@ -41,11 +41,11 @@
'etc/LS_KeyRequest.xml' => 'etc/oppd/LS_KeyRequest.xml',
},
init_files => {
- 'etc/oppd.init.redhat' => 'init/init.d/oppd',
+ 'etc/oppd.init.debian' => 'init/init.d/oppd',
},
- sysconfig_files => {
- 'etc/oppd.sysconfig.redhat' => 'init/sysconfig/oppd',
- },
+ #sysconfig_files => {
+ # 'etc/oppd.sysconfig.redhat' => 'init/sysconfig/oppd',
+ #},
add_to_cleanup => [ 'perfSONAR-*' ],
#install_path => { etc => '/etc' },
create_makefile_pl => 'small',

Modified: branches/perfsonar-oppd-new-architect/build/perfSONAR/MANIFEST
===================================================================
--- branches/perfsonar-oppd-new-architect/build/perfSONAR/MANIFEST
2010-09-21 10:51:12 UTC (rev 638)
+++ branches/perfsonar-oppd-new-architect/build/perfSONAR/MANIFEST
2010-09-21 13:55:05 UTC (rev 639)
@@ -7,8 +7,9 @@
etc/LS_keepalive.xml
etc/LS_KeyRequest.xml
etc/LS_register.xml
+etc/oppd.init.debian
etc/oppd-mdm.conf
-#etc/oppd.conf.example
+etc/oppd.conf.example
lib/perfSONAR.pm
lib/perfSONAR/Auth.pm
lib/perfSONAR/Client/LS.pm

Modified: branches/perfsonar-oppd-new-architect/build/perfSONAR/MANIFEST.SKIP
===================================================================
--- branches/perfsonar-oppd-new-architect/build/perfSONAR/MANIFEST.SKIP
2010-09-21 10:51:12 UTC (rev 638)
+++ branches/perfsonar-oppd-new-architect/build/perfSONAR/MANIFEST.SKIP
2010-09-21 13:55:05 UTC (rev 639)
@@ -39,7 +39,7 @@
\bperfsonar-oppd-[\d\.\_]+

#Avoid debian dir
-\bdebian\b
+\bdebian

#Build debian packages so avoid redhat specific files
\bredhat

Modified: branches/perfsonar-oppd-new-architect/build/perfSONAR/t/00-load.t
===================================================================
--- branches/perfsonar-oppd-new-architect/build/perfSONAR/t/00-load.t
2010-09-21 10:51:12 UTC (rev 638)
+++ branches/perfsonar-oppd-new-architect/build/perfSONAR/t/00-load.t
2010-09-21 13:55:05 UTC (rev 639)
@@ -1,4 +1,6 @@
-#!perl -T
+#!perl -w
+use FindBin;
+use lib "$FindBin::RealBin/../lib";

use Test::More tests => 1;


Modified: branches/perfsonar-oppd-new-architect/t/perfSONAR-001-SOAP-Message.t
===================================================================
--- branches/perfsonar-oppd-new-architect/t/perfSONAR-001-SOAP-Message.t
2010-09-21 10:51:12 UTC (rev 638)
+++ branches/perfsonar-oppd-new-architect/t/perfSONAR-001-SOAP-Message.t
2010-09-21 13:55:05 UTC (rev 639)
@@ -7,6 +7,10 @@

use Test::More tests => 75;

+use FindBin;
+use lib "$FindBin::RealBin/../lib";
+
+
BEGIN {
# Third party modules:
use_ok('XML::LibXML');

Modified: branches/perfsonar-oppd-new-architect/t/perfSONAR-002-Core.t
===================================================================
--- branches/perfsonar-oppd-new-architect/t/perfSONAR-002-Core.t
2010-09-21 10:51:12 UTC (rev 638)
+++ branches/perfsonar-oppd-new-architect/t/perfSONAR-002-Core.t
2010-09-21 13:55:05 UTC (rev 639)
@@ -3,8 +3,13 @@
use strict;
use warnings;

-use Test::More tests => 48;
+use Test::More tests => 50;

+
+use FindBin;
+use lib "$FindBin::RealBin/../lib";
+
+
BEGIN {
# Third party modules:
use_ok('XML::LibXML');
@@ -15,6 +20,9 @@
use_ok('perfSONAR::SOAP::HTTP::Request');
use_ok('perfSONAR::SOAP::HTTP::Response');
use_ok('perfSONAR::SOAP::HTTP::UserAgent');
+ #DataStruct is availible
+ use_ok('perfSONAR::DataStruct');
+ use_ok('perfSONAR::DataStruct::NMWG');
}





  • [pS-dev] [GEANT/SA2/SA2T3-OPPD] r639 - in branches/perfsonar-oppd-new-architect: build/perfSONAR build/perfSONAR/t t, svn-noreply, 09/21/2010

Archive powered by MHonArc 2.6.16.

Top of Page