Skip to Content.
Sympa Menu

perfsonar-dev - [pS-dev] [GEANT/SA2/SA2T3-OPPD] r835 - in trunk: NMWG build/NMWG

Subject: perfsonar development work

List archive

[pS-dev] [GEANT/SA2/SA2T3-OPPD] r835 - in trunk: NMWG build/NMWG


Chronological Thread 
  • From:
  • To:
  • Subject: [pS-dev] [GEANT/SA2/SA2T3-OPPD] r835 - in trunk: NMWG build/NMWG
  • Date: Wed, 26 Feb 2014 19:28:38 +0000 (GMT)

Author: dfn.calim
Date: 2014-02-26 19:28:38 +0000 (Wed, 26 Feb 2014)
New Revision: 835

Added:
trunk/NMWG/Build.PL
trunk/NMWG/Changes
trunk/NMWG/MANIFEST
trunk/NMWG/MANIFEST.SKIP
trunk/NMWG/README
trunk/NMWG/t/
Removed:
trunk/build/NMWG/Build.PL
trunk/build/NMWG/Changes
trunk/build/NMWG/MANIFEST
trunk/build/NMWG/MANIFEST.SKIP
trunk/build/NMWG/README
trunk/build/NMWG/t/
Log:
moving build files for NMWG into new dir

Copied: trunk/NMWG/Build.PL (from rev 825, trunk/build/NMWG/Build.PL)
===================================================================
--- trunk/NMWG/Build.PL (rev 0)
+++ trunk/NMWG/Build.PL 2014-02-26 19:28:38 UTC (rev 835)
@@ -0,0 +1,21 @@
+use strict;
+use warnings;
+use Module::Build;
+
+my $builder = Module::Build->new(
+ module_name => 'NMWG',
+ license => 'apache',
+ dist_author => 'DFN-Labor
<>',
+ dist_version_from => 'lib/NMWG.pm',
+ requires => {
+ 'XML::LibXML' => 1.61, # XPathContext not included before
+ 'LWP::UserAgent' => 2.033, # This is unsure, but version is from 2004
+ },
+ build_requires => {
+ 'Test::More' => 0,
+ },
+ add_to_cleanup => [ 'NMWG-*' ],
+);
+
+$builder->install_base_relpaths('lib' => 'lib');
+$builder->create_build_script();

Copied: trunk/NMWG/Changes (from rev 825, trunk/build/NMWG/Changes)
===================================================================
--- trunk/NMWG/Changes (rev 0)
+++ trunk/NMWG/Changes 2014-02-26 19:28:38 UTC (rev 835)
@@ -0,0 +1,5 @@
+Revision history for NMWG
+
+0.01 Date/time
+ First version, released on an unsuspecting world.
+

Copied: trunk/NMWG/MANIFEST (from rev 825, trunk/build/NMWG/MANIFEST)
===================================================================
--- trunk/NMWG/MANIFEST (rev 0)
+++ trunk/NMWG/MANIFEST 2014-02-26 19:28:38 UTC (rev 835)
@@ -0,0 +1,9 @@
+Build.PL
+Changes
+lib/NMWG.pm
+lib/NMWG/Message.pm
+MANIFEST This list of files
+prepare-nmwg-debian.pl
+README
+t/00-load.t
+META.yml

Copied: trunk/NMWG/MANIFEST.SKIP (from rev 825,
trunk/build/NMWG/MANIFEST.SKIP)
===================================================================
--- trunk/NMWG/MANIFEST.SKIP (rev 0)
+++ trunk/NMWG/MANIFEST.SKIP 2014-02-26 19:28:38 UTC (rev 835)
@@ -0,0 +1,45 @@
+# 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
+\bNMWG-[\d\.\_]+
+
+# Avoid debian files
+\bDEBIAN
+
+# Avoid RedHat spec files
+\bspec

Copied: trunk/NMWG/README (from rev 825, trunk/build/NMWG/README)
===================================================================
--- trunk/NMWG/README (rev 0)
+++ trunk/NMWG/README 2014-02-26 19:28:38 UTC (rev 835)
@@ -0,0 +1,48 @@
+NMWG
+
+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 provided before the module is installed.
+
+A README file is required for CPAN modules since CPAN extracts the README
+file from a module distribution so that people browsing the archive
+can use it get an idea of the modules uses. It is usually a good idea
+to provide version information here so that people can decide whether
+fixes for the module are worth downloading.
+
+INSTALLATION
+
+To install this module, run the following commands:
+
+ perl Build.PL
+ ./Build
+ ./Build test
+ ./Build install
+
+
+SUPPORT AND DOCUMENTATION
+
+After installing, you can find documentation for this module with the
perldoc command.
+
+ perldoc NMWG
+
+You can also look for information at:
+
+ Search CPAN
+ http://search.cpan.org/dist/NMWG
+
+ CPAN Request Tracker:
+ http://rt.cpan.org/NoAuth/Bugs.html?Dist=NMWG
+
+ AnnoCPAN, annotated CPAN documentation:
+ http://annocpan.org/dist/NMWG
+
+ CPAN Ratings:
+ http://cpanratings.perl.org/d/NMWG
+
+COPYRIGHT AND LICENCE
+
+Copyright (C) 2007 DFN-Labor
+
+This program is released under the following license: help

Deleted: trunk/build/NMWG/Build.PL
===================================================================
--- trunk/build/NMWG/Build.PL 2014-02-26 19:15:27 UTC (rev 834)
+++ trunk/build/NMWG/Build.PL 2014-02-26 19:28:38 UTC (rev 835)
@@ -1,21 +0,0 @@
-use strict;
-use warnings;
-use Module::Build;
-
-my $builder = Module::Build->new(
- module_name => 'NMWG',
- license => 'apache',
- dist_author => 'DFN-Labor
<>',
- dist_version_from => 'lib/NMWG.pm',
- requires => {
- 'XML::LibXML' => 1.61, # XPathContext not included before
- 'LWP::UserAgent' => 2.033, # This is unsure, but version is from 2004
- },
- build_requires => {
- 'Test::More' => 0,
- },
- add_to_cleanup => [ 'NMWG-*' ],
-);
-
-$builder->install_base_relpaths('lib' => 'lib');
-$builder->create_build_script();

Deleted: trunk/build/NMWG/Changes
===================================================================
--- trunk/build/NMWG/Changes 2014-02-26 19:15:27 UTC (rev 834)
+++ trunk/build/NMWG/Changes 2014-02-26 19:28:38 UTC (rev 835)
@@ -1,5 +0,0 @@
-Revision history for NMWG
-
-0.01 Date/time
- First version, released on an unsuspecting world.
-

Deleted: trunk/build/NMWG/MANIFEST
===================================================================
--- trunk/build/NMWG/MANIFEST 2014-02-26 19:15:27 UTC (rev 834)
+++ trunk/build/NMWG/MANIFEST 2014-02-26 19:28:38 UTC (rev 835)
@@ -1,9 +0,0 @@
-Build.PL
-Changes
-lib/NMWG.pm
-lib/NMWG/Message.pm
-MANIFEST This list of files
-prepare-nmwg-debian.pl
-README
-t/00-load.t
-META.yml

Deleted: trunk/build/NMWG/MANIFEST.SKIP
===================================================================
--- trunk/build/NMWG/MANIFEST.SKIP 2014-02-26 19:15:27 UTC (rev 834)
+++ trunk/build/NMWG/MANIFEST.SKIP 2014-02-26 19:28:38 UTC (rev 835)
@@ -1,45 +0,0 @@
-# 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
-\bNMWG-[\d\.\_]+
-
-# Avoid debian files
-\bDEBIAN
-
-# Avoid RedHat spec files
-\bspec

Deleted: trunk/build/NMWG/README
===================================================================
--- trunk/build/NMWG/README 2014-02-26 19:15:27 UTC (rev 834)
+++ trunk/build/NMWG/README 2014-02-26 19:28:38 UTC (rev 835)
@@ -1,48 +0,0 @@
-NMWG
-
-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 provided before the module is installed.
-
-A README file is required for CPAN modules since CPAN extracts the README
-file from a module distribution so that people browsing the archive
-can use it get an idea of the modules uses. It is usually a good idea
-to provide version information here so that people can decide whether
-fixes for the module are worth downloading.
-
-INSTALLATION
-
-To install this module, run the following commands:
-
- perl Build.PL
- ./Build
- ./Build test
- ./Build install
-
-
-SUPPORT AND DOCUMENTATION
-
-After installing, you can find documentation for this module with the
perldoc command.
-
- perldoc NMWG
-
-You can also look for information at:
-
- Search CPAN
- http://search.cpan.org/dist/NMWG
-
- CPAN Request Tracker:
- http://rt.cpan.org/NoAuth/Bugs.html?Dist=NMWG
-
- AnnoCPAN, annotated CPAN documentation:
- http://annocpan.org/dist/NMWG
-
- CPAN Ratings:
- http://cpanratings.perl.org/d/NMWG
-
-COPYRIGHT AND LICENCE
-
-Copyright (C) 2007 DFN-Labor
-
-This program is released under the following license: help



  • [pS-dev] [GEANT/SA2/SA2T3-OPPD] r835 - in trunk: NMWG build/NMWG, svn-noreply, 02/26/2014

Archive powered by MHonArc 2.6.16.

Top of Page