Skip to Content.
Sympa Menu

perfsonar-dev - [pS-dev] [GEANT/SA2/SA2T3-OPPD] r718 - in trunk/build: . perfSONAR-MP-LSToolreg perfSONAR-MP-LSToolreg/_build perfSONAR-MP-LSToolreg/etc perfSONAR-MP-LSToolreg/lib perfSONAR-MP-LSToolreg/lib/perfSONAR perfSONAR-MP-LSToolreg/lib/perfSONAR/MP rpm/0.53-1

Subject: perfsonar development work

List archive

[pS-dev] [GEANT/SA2/SA2T3-OPPD] r718 - in trunk/build: . perfSONAR-MP-LSToolreg perfSONAR-MP-LSToolreg/_build perfSONAR-MP-LSToolreg/etc perfSONAR-MP-LSToolreg/lib perfSONAR-MP-LSToolreg/lib/perfSONAR perfSONAR-MP-LSToolreg/lib/perfSONAR/MP rpm/0.53-1


Chronological Thread 
  • From:
  • To:
  • Subject: [pS-dev] [GEANT/SA2/SA2T3-OPPD] r718 - in trunk/build: . perfSONAR-MP-LSToolreg perfSONAR-MP-LSToolreg/_build perfSONAR-MP-LSToolreg/etc perfSONAR-MP-LSToolreg/lib perfSONAR-MP-LSToolreg/lib/perfSONAR perfSONAR-MP-LSToolreg/lib/perfSONAR/MP rpm/0.53-1
  • Date: Wed, 29 Jun 2011 14:28:58 +0100

Author: dfn.calim
Date: 2011-06-29 14:28:58 +0100 (Wed, 29 Jun 2011)
New Revision: 718

Added:
trunk/build/perfSONAR-MP-LSToolreg/
trunk/build/perfSONAR-MP-LSToolreg/Build
trunk/build/perfSONAR-MP-LSToolreg/Build.PL
trunk/build/perfSONAR-MP-LSToolreg/Changes
trunk/build/perfSONAR-MP-LSToolreg/MANIFEST
trunk/build/perfSONAR-MP-LSToolreg/MANIFEST.SKIP
trunk/build/perfSONAR-MP-LSToolreg/META.yml
trunk/build/perfSONAR-MP-LSToolreg/Makefile.PL
trunk/build/perfSONAR-MP-LSToolreg/README
trunk/build/perfSONAR-MP-LSToolreg/_build/
trunk/build/perfSONAR-MP-LSToolreg/_build/auto_features
trunk/build/perfSONAR-MP-LSToolreg/_build/build_params
trunk/build/perfSONAR-MP-LSToolreg/_build/cleanup
trunk/build/perfSONAR-MP-LSToolreg/_build/config_data
trunk/build/perfSONAR-MP-LSToolreg/_build/features
trunk/build/perfSONAR-MP-LSToolreg/_build/magicnum
trunk/build/perfSONAR-MP-LSToolreg/_build/notes
trunk/build/perfSONAR-MP-LSToolreg/_build/prereqs
trunk/build/perfSONAR-MP-LSToolreg/_build/runtime_params
trunk/build/perfSONAR-MP-LSToolreg/etc/
trunk/build/perfSONAR-MP-LSToolreg/etc/lstoolreg.conf
trunk/build/perfSONAR-MP-LSToolreg/lib/
trunk/build/perfSONAR-MP-LSToolreg/lib/perfSONAR/
trunk/build/perfSONAR-MP-LSToolreg/lib/perfSONAR/MP/
trunk/build/perfSONAR-MP-LSToolreg/lib/perfSONAR/MP/LSToolreg.pm
Modified:
trunk/build/rpm/0.53-1/perfsonar-oppd-0.53-1.noarch.rpm
trunk/build/rpm/0.53-1/perfsonar-oppd-ma-hades-0.53-1.noarch.rpm
trunk/build/rpm/0.53-1/perfsonar-oppd-mp-bwctl-0.53-1.noarch.rpm
trunk/build/rpm/0.53-1/perfsonar-oppd-mp-lstoolreg-0.53-1.noarch.rpm
trunk/build/rpm/0.53-1/perfsonar-oppd-mp-owamp-0.53-1.noarch.rpm
Log:
add build files for LSToolreg

Added: trunk/build/perfSONAR-MP-LSToolreg/Build
===================================================================
--- trunk/build/perfSONAR-MP-LSToolreg/Build (rev
0)
+++ trunk/build/perfSONAR-MP-LSToolreg/Build 2011-06-29 13:28:58 UTC (rev
718)
@@ -0,0 +1,57 @@
+#! /usr/bin/perl
+
+use strict;
+use Cwd;
+use File::Basename;
+use File::Spec;
+
+sub magic_number_matches {
+ return 0 unless -e '_build/magicnum';
+ local *FH;
+ open FH, '_build/magicnum' or return 0;
+ my $filenum = <FH>;
+ close FH;
+ return $filenum == 539334;
+}
+
+my $progname;
+my $orig_dir;
+BEGIN {
+ $^W = 1; # Use warnings
+ $progname = basename($0);
+ $orig_dir = Cwd::cwd();
+ my $base_dir =
'/home/unrz217/SA2T3-OPPD/trunk/build/perfSONAR-MP-LSToolreg';
+ if (!magic_number_matches()) {
+ unless (chdir($base_dir)) {
+ die ("Couldn't chdir($base_dir), aborting\n");
+ }
+ unless (magic_number_matches()) {
+ die ("Configuration seems to be out of date, please re-run 'perl
Build.PL' again.\n");
+ }
+ }
+ unshift @INC,
+ (
+
+ );
+}
+
+close(*DATA) unless eof(*DATA); # ensure no open handles to this script
+
+use Module::Build;
+
+# Some platforms have problems setting $^X in shebang contexts, fix it up
here
+$^X = Module::Build->find_perl_interpreter;
+
+if (-e 'Build.PL' and not Module::Build->up_to_date('Build.PL', $progname)) {
+ warn "Warning: Build.PL has been altered. You may need to run 'perl
Build.PL' again.\n";
+}
+
+# This should have just enough arguments to be able to bootstrap the rest.
+my $build = Module::Build->resume (
+ properties => {
+ config_dir => '_build',
+ orig_dir => $orig_dir,
+ },
+);
+
+$build->dispatch;


Property changes on: trunk/build/perfSONAR-MP-LSToolreg/Build
___________________________________________________________________
Name: svn:executable
+ *

Added: trunk/build/perfSONAR-MP-LSToolreg/Build.PL
===================================================================
--- trunk/build/perfSONAR-MP-LSToolreg/Build.PL (rev
0)
+++ trunk/build/perfSONAR-MP-LSToolreg/Build.PL 2011-06-29 13:28:58 UTC (rev
718)
@@ -0,0 +1,28 @@
+use strict;
+use warnings;
+use Module::Build;
+
+my $builder = Module::Build->new(
+ module_name => 'perfSONAR::MP::LSToolreg',
+ dist_name => 'perfsonar-oppd-mp-lstoolreg',
+ license => 'apache',
+ dist_author => 'DFN-Labor
<>',
+ dist_version => '0.53',
+ dist_abstract => 'LSToolreg MP module for perl-perfSONAR',
+ build_requires => {
+ 'Test::More' => 0,
+ },
+ requires => {
+ 'perfSONAR' => 0.51,
+ },
+ etc_files => {
+ 'etc/lstoolreg.conf' => 'etc/oppd.d/lstoolreg.conf',
+ },
+ add_to_cleanup => [ 'perfSONAR-MP-BWCTL-*' ],
+ create_makefile_pl => 'small',
+);
+
+$builder->install_path('etc' => '/etc');
+$builder->add_build_element('etc');
+$builder->install_base_relpaths('lib' => 'lib');
+$builder->create_build_script();

Added: trunk/build/perfSONAR-MP-LSToolreg/Changes
===================================================================
--- trunk/build/perfSONAR-MP-LSToolreg/Changes (rev
0)
+++ trunk/build/perfSONAR-MP-LSToolreg/Changes 2011-06-29 13:28:58 UTC (rev
718)
@@ -0,0 +1,12 @@
+Changelog for release 0.5
+
+ - added logging strings
+ - handling of supported/unknown features
+ - better support of BWCTL schema
+
+Changelog for release 0.41
+
+New features:
+ - some bug fixes and better LS registration handling
+ - selftest funcitonality for status monitoring of service
+

Added: trunk/build/perfSONAR-MP-LSToolreg/MANIFEST
===================================================================
--- trunk/build/perfSONAR-MP-LSToolreg/MANIFEST (rev
0)
+++ trunk/build/perfSONAR-MP-LSToolreg/MANIFEST 2011-06-29 13:28:58 UTC (rev
718)
@@ -0,0 +1,8 @@
+Build.PL
+Changes
+etc/lstoolreg.conf
+lib/perfSONAR/MP/LSToolreg.pm
+Makefile.PL
+MANIFEST This list of files
+META.yml
+README

Added: trunk/build/perfSONAR-MP-LSToolreg/MANIFEST.SKIP
===================================================================
--- trunk/build/perfSONAR-MP-LSToolreg/MANIFEST.SKIP
(rev 0)
+++ trunk/build/perfSONAR-MP-LSToolreg/MANIFEST.SKIP 2011-06-29 13:28:58
UTC (rev 718)
@@ -0,0 +1,39 @@
+# Avoid version control files.
+\bRCS\b
+\bCVS\b
+,v$
+\B\.svn\b
+\B\.cvsignore$
+
+# Avoid Makemaker generated and utility files.
+\bMakefile$
+\bblib
+\bMakeMaker-\d
+\bpm_to_blib$
+\bblibdirs$
+^MANIFEST\.SKIP$
+
+# Avoid Module::Build generated and utility files.
+\bBuild$
+\bBuild.bat$
+\b_build
+
+# Avoid Devel::Cover generated files
+\bcover_db
+
+# Avoid temp and backup files.
+~$
+\.tmp$
+\.old$
+\.bak$
+\#$
+\.#
+\.rej$
+
+# Avoid OS-specific files/dirs
+# Mac OSX metadata
+\B\.DS_Store
+# Mac OSX SMB mount metadata files
+\B\._
+# Avoid archives of this distribution
+\bperfsonar-oppd-mp-lstoolreg-[\d\.\_]+

Added: trunk/build/perfSONAR-MP-LSToolreg/META.yml
===================================================================
--- trunk/build/perfSONAR-MP-LSToolreg/META.yml (rev
0)
+++ trunk/build/perfSONAR-MP-LSToolreg/META.yml 2011-06-29 13:28:58 UTC (rev
718)
@@ -0,0 +1,20 @@
+---
+name: perfsonar-oppd-mp-lstoolreg
+version: 0.53
+author:
+ - 'DFN-Labor
<>'
+abstract: LSToolreg MP module for perl-perfSONAR
+license: apache
+resources:
+ license: http://apache.org/licenses/LICENSE-2.0
+requires:
+ perfSONAR: 0.51
+build_requires:
+ Test::More: 0
+provides:
+ perfSONAR::MP::LSToolreg:
+ file: lib/perfSONAR/MP/LSToolreg.pm
+generated_by: Module::Build version 0.2808
+meta-spec:
+ url: http://module-build.sourceforge.net/META-spec-v1.2.html
+ version: 1.2

Added: trunk/build/perfSONAR-MP-LSToolreg/Makefile.PL
===================================================================
--- trunk/build/perfSONAR-MP-LSToolreg/Makefile.PL
(rev 0)
+++ trunk/build/perfSONAR-MP-LSToolreg/Makefile.PL 2011-06-29 13:28:58
UTC (rev 718)
@@ -0,0 +1,6 @@
+# Note: this file was auto-generated by Module::Build::Compat version 0.03
+ use Module::Build::Compat 0.02;
+
+ Module::Build::Compat->run_build_pl(args =>
\@ARGV);
+ require Module::Build;
+ Module::Build::Compat->write_makefile(build_class => 'Module::Build');

Added: trunk/build/perfSONAR-MP-LSToolreg/README
===================================================================
--- trunk/build/perfSONAR-MP-LSToolreg/README (rev
0)
+++ trunk/build/perfSONAR-MP-LSToolreg/README 2011-06-29 13:28:58 UTC (rev
718)
@@ -0,0 +1,79 @@
+oppd-MP-LSToolre
+-------------
+
+Version 0.53
+
+The oppd BWCTL MP is a service plugin for oppd (open perl perfSONAR daemon).
+It's purpose is to provide a perfSONAR interface to bwctl measurements.
+To use this module you need to install the oppd package first. The BWCTL
+MP module needs several perl modules (available via e.g. CPAN) in addition.
+
+For more information about perfSONAR, see www.perfsonar.net
+For more information about CPAN, see www.cpan.org
+
+1. Preparation:
+---------------
+
+You need to install the bwctl and iperf tools, to be able to perform a BWCTL
+measurement. You can get these at:
+
+Iperf: http://sourceforge.net/projects/iperf. Note that version 2.0.2 is
+recommended, as newer versions have a bug preventing proper output of
interval
+measurements.
+
+BWCTL: http://e2epi.internet2.edu/bwctl/. Version 1.3 recommended.
+
+Moreover, you need to have a proper time synchronization (via NTP) set up and
+running to get proper test results.
+
+
+Perl modules dependency list:
+-----------------------------
+perl version 5.8.0 or higher
+perl(IO::Tty) >= 1.02
+perl(IPC::Run)
+perl(perfSONAR) >= 0.51
+
+
+2. Installation:
+----------------
+
+Change to oppd-mp-bwctl-0.51 directory and type the following commands:
+perl Build.PL --install_base=/usr/lib/perfsonar/services/oppd
+./Build install
+
+
+3. Run BWCTL MP:
+----------------
+
+To run the BWCTL MP, you first have to make sure that the bwctld is properly
+running. If this is the case, you should include the BWCTL MP service
definition
+included in /usr/lib/perfsonar/services/oppd/etc/bwctl.conf to
/etc/oppd.conf.
+You can either include it by adding an include line to oppd.conf, or by
attaching
+the contents of bwctl.conf to oppd.conf. When you have done this, restart the
+oppd daemon.
+
+For start options and configuration file format please refer to the manual
+pages.
+
+4. Deinstallation:
+------------------
+
+First make sure that oppd.pl isn't running and stop it, if it is running.
Either
+delete the include line or the definition block for BWCTL MP from
/etc/oppd.conf.
+
+You can now restart the oppd service, if you still have other perfSONAR
services
+provided by oppd other than the BWCTL MP.
+
+To delete BWCTL MP completely, remove the following files from your system:
+rm -f /usr/lib/perfsonar/services/oppd/lib/perfSONAR/MP/BWCTL.pm
+rm -f /usr/lib/perfsonar/services/oppd/lib/perfSONAR/BWCTL.pm
+
+
+
+
+COPYRIGHT AND LICENCE
+
+Copyright (C) 2008, 2009 DFN-Labor
+
+This program is released under the following license: bsd

Added: trunk/build/perfSONAR-MP-LSToolreg/_build/auto_features
===================================================================
--- trunk/build/perfSONAR-MP-LSToolreg/_build/auto_features
(rev 0)
+++ trunk/build/perfSONAR-MP-LSToolreg/_build/auto_features 2011-06-29
13:28:58 UTC (rev 718)
@@ -0,0 +1 @@
+{}

Added: trunk/build/perfSONAR-MP-LSToolreg/_build/build_params
===================================================================
--- trunk/build/perfSONAR-MP-LSToolreg/_build/build_params
(rev 0)
+++ trunk/build/perfSONAR-MP-LSToolreg/_build/build_params 2011-06-29
13:28:58 UTC (rev 718)
@@ -0,0 +1,264 @@
+[
+ {
+ 'ARGV' => []
+ },
+ {},
+ {
+ 'verbose' => undef,
+ 'PL_files' => undef,
+ 'pollute' => undef,
+ 'bindoc_dirs' => [
+ 'blib/script'
+ ],
+ 'conflicts' => {},
+ 'recommends' => {},
+ 'scripts' => undef,
+ 'pod_files' => undef,
+ 'config_dir' => '_build',
+ 'dist_version' => '0.53',
+ 'recurse_into' => [],
+ 'build_bat' => 0,
+ 'extra_linker_flags' => [],
+ 'build_class' => 'Module::Build',
+ 'prereq_action_types' => [
+ 'requires',
+ 'build_requires',
+ 'conflicts',
+ 'recommends'
+ ],
+ 'base_dir' =>
'/home/unrz217/SA2T3-OPPD/trunk/build/perfSONAR-MP-LSToolreg',
+ 'allow_mb_mismatch' => 0,
+ 'xs_files' => undef,
+ 'destdir' => undef,
+ 'metafile' => 'META.yml',
+ 'mb_version' => '0.2808',
+ 'has_config_data' => undef,
+ 'dist_name' => 'perfsonar-oppd-mp-lstoolreg',
+ 'install_base' => undef,
+ 'module_name' => 'perfSONAR::MP::LSToolreg',
+ 'recursive_test_files' => undef,
+ 'libdoc_dirs' => [
+ 'blib/lib',
+ 'blib/arch'
+ ],
+ 'perl' => '/usr/bin/perl',
+ 'dist_author' => [
+ 'DFN-Labor
<>'
+ ],
+ 'use_rcfile' => 1,
+ 'test_files' => undef,
+ 'dist_abstract' => 'LSToolreg MP module for perl-perfSONAR',
+ 'create_readme' => undef,
+ 'prefix_relpaths' => {
+ 'core' => {
+ 'libdoc' => [
+ 'man',
+ 'man3'
+ ],
+ 'script' => [
+ 'bin'
+ ],
+ 'libhtml' => [
+ 'html'
+ ],
+ 'bindoc' => [
+ 'man',
+ 'man1'
+ ],
+ 'bin' => [
+ 'bin'
+ ],
+ 'arch' => [
+ 'lib',
+ 'perl5',
+ '5.8.8',
+
'i386-linux-thread-multi'
+ ],
+ 'binhtml' => [
+ 'html'
+ ],
+ 'lib' => [
+ 'lib',
+ 'perl5'
+ ]
+ },
+ 'site' => {
+ 'libdoc' => [
+ 'man',
+ 'man3'
+ ],
+ 'script' => [
+ 'bin'
+ ],
+ 'libhtml' => [
+ 'html'
+ ],
+ 'bindoc' => [
+ 'man',
+ 'man1'
+ ],
+ 'bin' => [
+ 'bin'
+ ],
+ 'arch' => [
+ 'lib',
+ 'perl5',
+ 'site_perl',
+ '5.8.8',
+
'i386-linux-thread-multi'
+ ],
+ 'binhtml' => [
+ 'html'
+ ],
+ 'lib' => [
+ 'lib',
+ 'perl5',
+ 'site_perl'
+ ]
+ },
+ 'vendor' => {
+ 'libdoc' => [
+ 'man',
+ 'man3'
+ ],
+ 'script' => [
+ 'bin'
+ ],
+ 'libhtml' => [
+ 'html'
+ ],
+ 'bindoc' => [
+ 'man',
+ 'man1'
+ ],
+ 'bin' => [
+ 'bin'
+ ],
+ 'arch' => [
+ 'lib',
+ 'perl5',
+ '5.8.8',
+
'i386-linux-thread-multi'
+ ],
+ 'binhtml' => [
+ 'html'
+ ],
+ 'lib' => [
+ 'lib',
+ 'perl5'
+ ]
+ }
+ },
+ 'meta_merge' => {},
+ 'get_options' => {},
+ 'dist_version_from' => undef,
+ 'debugger' => undef,
+ 'html_css' => '',
+ 'build_elements' => [
+ 'PL',
+ 'support',
+ 'pm',
+ 'xs',
+ 'pod',
+ 'script',
+ 'etc'
+ ],
+ 'orig_dir' =>
'/home/unrz217/SA2T3-OPPD/trunk/build/perfSONAR-MP-LSToolreg',
+ 'include_dirs' => [],
+ 'installdirs' => 'site',
+ 'create_makefile_pl' => 'small',
+ 'magic_number' => undef,
+ 'install_sets' => {
+ 'core' => {
+ 'libdoc' =>
'/usr/share/man/man3',
+ 'script' => '/usr/bin',
+ 'libhtml' => undef,
+ 'bindoc' =>
'/usr/share/man/man1',
+ 'bin' => '/usr/bin',
+ 'arch' =>
'/usr/lib/perl5/5.8.8/i386-linux-thread-multi',
+ 'binhtml' => undef,
+ 'lib' => '/usr/lib/perl5/5.8.8'
+ },
+ 'site' => {
+ 'libdoc' =>
'/usr/share/man/man3',
+ 'script' => '/usr/bin',
+ 'libhtml' => undef,
+ 'bindoc' =>
'/usr/share/man/man1',
+ 'bin' => '/usr/bin',
+ 'arch' =>
'/usr/lib/perl5/site_perl/5.8.8/i386-linux-thread-multi',
+ 'binhtml' => undef,
+ 'lib' =>
'/usr/lib/perl5/site_perl/5.8.8'
+ },
+ 'vendor' => {
+ 'libdoc' =>
'/usr/share/man/man3',
+ 'script' => '/usr/bin',
+ 'libhtml' => undef,
+ 'bindoc' =>
'/usr/share/man/man1',
+ 'bin' => '/usr/bin',
+ 'arch' =>
'/usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi',
+ 'binhtml' => undef,
+ 'lib' =>
'/usr/lib/perl5/vendor_perl/5.8.8'
+ }
+ },
+ 'install_base_relpaths' => {
+ 'libdoc' => [
+ 'man',
+ 'man3'
+ ],
+ 'script' => [
+ 'bin'
+ ],
+ 'libhtml' => [
+ 'html'
+ ],
+ 'bindoc' => [
+ 'man',
+ 'man1'
+ ],
+ 'bin' => [
+ 'bin'
+ ],
+ 'arch' => [
+ 'lib',
+ 'perl5',
+
'i386-linux-thread-multi'
+ ],
+ 'binhtml' => [
+ 'html'
+ ],
+ 'lib' => [
+ 'lib'
+ ]
+ },
+ 'meta_add' => {},
+ 'create_packlist' => 1,
+ 'requires' => {
+ 'perfSONAR' => '0.51'
+ },
+ 'install_path' => {
+ 'etc' => '/etc'
+ },
+ 'etc_files' => {
+ 'etc/lstoolreg.conf' =>
'etc/oppd.d/lstoolreg.conf'
+ },
+ 'pm_files' => undef,
+ 'quiet' => undef,
+ 'extra_compiler_flags' => [],
+ 'script_files' => undef,
+ 'build_script' => 'Build',
+ 'original_prefix' => {
+ 'core' => '/usr',
+ 'site' => '/usr',
+ 'vendor' => '/usr'
+ },
+ 'c_source' => undef,
+ 'license' => 'apache',
+ 'autosplit' => undef,
+ 'build_requires' => {
+ 'Test::More' => 0
+ },
+ 'config' => undef,
+ 'blib' => 'blib',
+ 'prefix' => undef
+ }
+ ]

Added: trunk/build/perfSONAR-MP-LSToolreg/_build/cleanup
===================================================================
--- trunk/build/perfSONAR-MP-LSToolreg/_build/cleanup
(rev 0)
+++ trunk/build/perfSONAR-MP-LSToolreg/_build/cleanup 2011-06-29 13:28:58
UTC (rev 718)
@@ -0,0 +1,6 @@
+{
+ 'perfsonar-oppd-mp-lstoolreg-0.53' => 1,
+ 'perfSONAR-MP-BWCTL-*' => 1,
+ 'perfsonar-oppd-mp-owamp-0.54' => 1,
+ 'perfsonar-oppd-mp-owamp-0.53' => 1
+ }

Added: trunk/build/perfSONAR-MP-LSToolreg/_build/config_data
===================================================================
--- trunk/build/perfSONAR-MP-LSToolreg/_build/config_data
(rev 0)
+++ trunk/build/perfSONAR-MP-LSToolreg/_build/config_data 2011-06-29
13:28:58 UTC (rev 718)
@@ -0,0 +1 @@
+{}

Added: trunk/build/perfSONAR-MP-LSToolreg/_build/features
===================================================================
--- trunk/build/perfSONAR-MP-LSToolreg/_build/features
(rev 0)
+++ trunk/build/perfSONAR-MP-LSToolreg/_build/features 2011-06-29 13:28:58
UTC (rev 718)
@@ -0,0 +1 @@
+{}

Added: trunk/build/perfSONAR-MP-LSToolreg/_build/magicnum
===================================================================
--- trunk/build/perfSONAR-MP-LSToolreg/_build/magicnum
(rev 0)
+++ trunk/build/perfSONAR-MP-LSToolreg/_build/magicnum 2011-06-29 13:28:58
UTC (rev 718)
@@ -0,0 +1 @@
+539334
\ No newline at end of file

Added: trunk/build/perfSONAR-MP-LSToolreg/_build/notes
===================================================================
--- trunk/build/perfSONAR-MP-LSToolreg/_build/notes
(rev 0)
+++ trunk/build/perfSONAR-MP-LSToolreg/_build/notes 2011-06-29 13:28:58
UTC (rev 718)
@@ -0,0 +1 @@
+{}

Added: trunk/build/perfSONAR-MP-LSToolreg/_build/prereqs
===================================================================
--- trunk/build/perfSONAR-MP-LSToolreg/_build/prereqs
(rev 0)
+++ trunk/build/perfSONAR-MP-LSToolreg/_build/prereqs 2011-06-29 13:28:58
UTC (rev 718)
@@ -0,0 +1,10 @@
+{
+ 'build_requires' => {
+ 'Test::More' => 0
+ },
+ 'conflicts' => {},
+ 'requires' => {
+ 'perfSONAR' => '0.51'
+ },
+ 'recommends' => {}
+ }

Added: trunk/build/perfSONAR-MP-LSToolreg/_build/runtime_params
===================================================================
--- trunk/build/perfSONAR-MP-LSToolreg/_build/runtime_params
(rev 0)
+++ trunk/build/perfSONAR-MP-LSToolreg/_build/runtime_params 2011-06-29
13:28:58 UTC (rev 718)
@@ -0,0 +1 @@
+{}

Added: trunk/build/perfSONAR-MP-LSToolreg/etc/lstoolreg.conf
===================================================================
--- trunk/build/perfSONAR-MP-LSToolreg/etc/lstoolreg.conf
(rev 0)
+++ trunk/build/perfSONAR-MP-LSToolreg/etc/lstoolreg.conf 2011-06-29
13:28:58 UTC (rev 718)
@@ -0,0 +1 @@
+link ../../../etc/oppd.d.example/lstoolreg.conf
\ No newline at end of file


Property changes on: trunk/build/perfSONAR-MP-LSToolreg/etc/lstoolreg.conf
___________________________________________________________________
Name: svn:special
+ *

Added: trunk/build/perfSONAR-MP-LSToolreg/lib/perfSONAR/MP/LSToolreg.pm
===================================================================
--- trunk/build/perfSONAR-MP-LSToolreg/lib/perfSONAR/MP/LSToolreg.pm
(rev 0)
+++ trunk/build/perfSONAR-MP-LSToolreg/lib/perfSONAR/MP/LSToolreg.pm
2011-06-29 13:28:58 UTC (rev 718)
@@ -0,0 +1 @@
+link ../../../../../lib/perfSONAR/MP/LSToolreg.pm
\ No newline at end of file


Property changes on:
trunk/build/perfSONAR-MP-LSToolreg/lib/perfSONAR/MP/LSToolreg.pm
___________________________________________________________________
Name: svn:special
+ *

Modified: trunk/build/rpm/0.53-1/perfsonar-oppd-0.53-1.noarch.rpm
===================================================================
(Binary files differ)

Modified: trunk/build/rpm/0.53-1/perfsonar-oppd-ma-hades-0.53-1.noarch.rpm
===================================================================
(Binary files differ)

Modified: trunk/build/rpm/0.53-1/perfsonar-oppd-mp-bwctl-0.53-1.noarch.rpm
===================================================================
(Binary files differ)

Modified: trunk/build/rpm/0.53-1/perfsonar-oppd-mp-lstoolreg-0.53-1.noarch.rpm
===================================================================
(Binary files differ)

Modified: trunk/build/rpm/0.53-1/perfsonar-oppd-mp-owamp-0.53-1.noarch.rpm
===================================================================
(Binary files differ)



  • [pS-dev] [GEANT/SA2/SA2T3-OPPD] r718 - in trunk/build: . perfSONAR-MP-LSToolreg perfSONAR-MP-LSToolreg/_build perfSONAR-MP-LSToolreg/etc perfSONAR-MP-LSToolreg/lib perfSONAR-MP-LSToolreg/lib/perfSONAR perfSONAR-MP-LSToolreg/lib/perfSONAR/MP rpm/0.53-1, svn-noreply, 06/29/2011

Archive powered by MHonArc 2.6.16.

Top of Page