r71767 - in /trunk/ylastic-costagent: ./ bin/ debian/ debian/source/ lib/App/Ylastic/

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sun Mar 20 15:48:33 UTC 2011


Author: jawnsy-guest
Date: Sun Mar 20 15:48:23 2011
New Revision: 71767

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=71767
Log:
integrate new upstream release, add WAITS-FOR

Added:
    trunk/ylastic-costagent/bin/ylastic-costagent
      - copied unchanged from r71739, branches/upstream/ylastic-costagent/current/bin/ylastic-costagent
    trunk/ylastic-costagent/debian/source/
    trunk/ylastic-costagent/debian/source/format
Removed:
    trunk/ylastic-costagent/bin/ylastic_costagent
    trunk/ylastic-costagent/debian/libapp-ylastic-costagent-perl.docs
Modified:
    trunk/ylastic-costagent/Changes
    trunk/ylastic-costagent/MANIFEST
    trunk/ylastic-costagent/META.json
    trunk/ylastic-costagent/META.yml
    trunk/ylastic-costagent/Makefile.PL
    trunk/ylastic-costagent/README
    trunk/ylastic-costagent/debian/changelog
    trunk/ylastic-costagent/debian/compat
    trunk/ylastic-costagent/debian/control
    trunk/ylastic-costagent/debian/copyright
    trunk/ylastic-costagent/lib/App/Ylastic/CostAgent.pm

Modified: trunk/ylastic-costagent/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/ylastic-costagent/Changes?rev=71767&op=diff
==============================================================================
--- trunk/ylastic-costagent/Changes (original)
+++ trunk/ylastic-costagent/Changes Sun Mar 20 15:48:23 2011
@@ -1,14 +1,21 @@
 Revision history for App-Ylastic-CostAgent
 
+0.004     2011-03-20 03:32:00 America/New_York
+
+    - Renamed ylastic_costagent to ylastic-costagent 
+
 0.003     2011-03-19 22:20:02 America/New_York
+
     - Added documentation that libssl-dev may be needed for dependencies
     - Updated installation example recipe with curl instead of wget
 
 0.002     2011-03-18 23:24:22 America/New_York
+
     - Add dependency on Mozilla::CA and switch on hostname verification
       for SSL
     - Fix test failures from extra warnings on older Perls
 
 0.001     2011-03-18 20:38:41 America/New_York
+
     - initial release to CPAN
 

Modified: trunk/ylastic-costagent/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/ylastic-costagent/MANIFEST?rev=71767&op=diff
==============================================================================
--- trunk/ylastic-costagent/MANIFEST (original)
+++ trunk/ylastic-costagent/MANIFEST Sun Mar 20 15:48:23 2011
@@ -5,7 +5,7 @@
 META.yml
 Makefile.PL
 README
-bin/ylastic_costagent
+bin/ylastic-costagent
 dist.ini
 examples/config.ini
 lib/App/Ylastic/CostAgent.pm

Modified: trunk/ylastic-costagent/META.json
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/ylastic-costagent/META.json?rev=71767&op=diff
==============================================================================
--- trunk/ylastic-costagent/META.json (original)
+++ trunk/ylastic-costagent/META.json Sun Mar 20 15:48:23 2011
@@ -64,7 +64,7 @@
    "provides" : {
       "App::Ylastic::CostAgent" : {
          "file" : "lib/App/Ylastic/CostAgent.pm",
-         "version" : "0.003"
+         "version" : "0.004"
       }
    },
    "release_status" : "stable",
@@ -80,6 +80,6 @@
          "web" : "http://github.com/dagolden/app-ylastic-costagent/tree"
       }
    },
-   "version" : "0.003"
+   "version" : "0.004"
 }
 

Modified: trunk/ylastic-costagent/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/ylastic-costagent/META.yml?rev=71767&op=diff
==============================================================================
--- trunk/ylastic-costagent/META.yml (original)
+++ trunk/ylastic-costagent/META.yml Sun Mar 20 15:48:23 2011
@@ -27,7 +27,7 @@
 provides:
   App::Ylastic::CostAgent:
     file: lib/App/Ylastic/CostAgent.pm
-    version: 0.003
+    version: 0.004
 requires:
   Archive::Zip: 0
   Carp: 0
@@ -51,4 +51,4 @@
   bugtracker: http://rt.cpan.org/Public/Dist/Display.html?Name=App-Ylastic-CostAgent
   homepage: http://github.com/dagolden/app-ylastic-costagent/tree
   repository: git://github.com/dagolden/app-ylastic-costagent.git
-version: 0.003
+version: 0.004

Modified: trunk/ylastic-costagent/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/ylastic-costagent/Makefile.PL?rev=71767&op=diff
==============================================================================
--- trunk/ylastic-costagent/Makefile.PL (original)
+++ trunk/ylastic-costagent/Makefile.PL Sun Mar 20 15:48:23 2011
@@ -22,7 +22,7 @@
   },
   'DISTNAME' => 'App-Ylastic-CostAgent',
   'EXE_FILES' => [
-    'bin/ylastic_costagent'
+    'bin/ylastic-costagent'
   ],
   'LICENSE' => 'apache',
   'NAME' => 'App::Ylastic::CostAgent',
@@ -45,7 +45,7 @@
     'autodie' => '2.00',
     'utf8' => '0'
   },
-  'VERSION' => '0.003',
+  'VERSION' => '0.004',
   'test' => {
     'TESTS' => 't/*.t'
   }

Modified: trunk/ylastic-costagent/README
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/ylastic-costagent/README?rev=71767&op=diff
==============================================================================
--- trunk/ylastic-costagent/README (original)
+++ trunk/ylastic-costagent/README Sun Mar 20 15:48:23 2011
@@ -3,7 +3,7 @@
     Web Services
 
 VERSION
-    version 0.003
+    version 0.004
 
 DESCRIPTION
     This module contains the internal routines for L<ylastic-costagent>.

Modified: trunk/ylastic-costagent/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/ylastic-costagent/debian/changelog?rev=71767&op=diff
==============================================================================
--- trunk/ylastic-costagent/debian/changelog (original)
+++ trunk/ylastic-costagent/debian/changelog Sun Mar 20 15:48:23 2011
@@ -1,5 +1,10 @@
-ylastic-costagent (0.003-1) UNRELEASED; urgency=low
+ylastic-costagent (0.004-1) UNRELEASED; urgency=low
 
-  * Initial Release.
+  WAITS-FOR: libgetopt-lucid-perl
+  WAITS-FOR: libtime-piece-month-perl
+  WAITS-FOR: libobject-tiny-perl
+  WAITS-FOR: libmozilla-ca-perl
 
- -- Jonathan Yu <jawnsy at cpan.org>  Sat, 19 Mar 2011 23:09:44 -0400
+  * Initial Release (Closes: #618980)
+
+ -- Jonathan Yu <jawnsy at cpan.org>  Sun, 20 Mar 2011 08:00:06 -0400

Modified: trunk/ylastic-costagent/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/ylastic-costagent/debian/compat?rev=71767&op=diff
==============================================================================
--- trunk/ylastic-costagent/debian/compat (original)
+++ trunk/ylastic-costagent/debian/compat Sun Mar 20 15:48:23 2011
@@ -1,1 +1,1 @@
-7
+8

Modified: trunk/ylastic-costagent/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/ylastic-costagent/debian/control?rev=71767&op=diff
==============================================================================
--- trunk/ylastic-costagent/debian/control (original)
+++ trunk/ylastic-costagent/debian/control Sun Mar 20 15:48:23 2011
@@ -2,7 +2,20 @@
 Section: perl
 Priority: optional
 Build-Depends: debhelper (>= 7)
-Build-Depends-Indep: perl
+Build-Depends-Indep: libarchive-zip-perl,
+ libconfig-tiny-perl,
+ libgetopt-lucid-perl,
+ libio-socket-ssl-perl,
+ liblog-dispatchouli-perl (>= 2),
+ libmozilla-ca-perl,
+ libobject-tiny-perl,
+ libtest-fatal-perl,
+ libtest-warn-perl,
+ libtime-piece-month-perl,
+ libwww-mechanize-perl,
+ perl (>= 5.10.0),
+ perl (>= 5.10.1) | libautodie-perl (>= 2.00),
+ perl (>= 5.10.1) | libtest-simple-perl (>= 0.88)
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Jonathan Yu <jawnsy at cpan.org>
 Standards-Version: 3.9.1
@@ -12,9 +25,19 @@
 
 Package: ylastic-costagent
 Architecture: all
-Depends: ${misc:Depends}, ${perl:Depends}
-Description: Perl port of the Ylastic Cost Agent for Amazon Web Services
- App::Ylastic::CostAgent contains the internal routines for
- L<ylastic-costagent>. Please see that for end-user documentation.
- .
- This description was automagically extracted from the module by dh-make-perl.
+Depends: ${misc:Depends}, ${perl:Depends},
+ libarchive-zip-perl,
+ libconfig-tiny-perl,
+ libgetopt-lucid-perl,
+ libio-socket-ssl-perl,
+ liblog-dispatchouli-perl (>= 2),
+ libmozilla-ca-perl,
+ libobject-tiny-perl,
+ libtime-piece-month-perl,
+ libwww-mechanize-perl,
+ perl (>= 5.10.0),
+ perl (>= 5.10.1) | libautodie-perl (>= 2.00)
+Description: client for submitting AWS usage data to Ylastic
+ ylastic-costagent is a program that downloads usage data from an Amazon Web
+ Services (AWS) account and uploads it to Ylastic <URL:http://ylastic.com/>
+ for cost analysis.

Modified: trunk/ylastic-costagent/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/ylastic-costagent/debian/copyright?rev=71767&op=diff
==============================================================================
--- trunk/ylastic-costagent/debian/copyright (original)
+++ trunk/ylastic-costagent/debian/copyright Sun Mar 20 15:48:23 2011
@@ -2,17 +2,9 @@
 Maintainer: David Golden <dagolden at cpan.org>
 Source: http://search.cpan.org/dist/App-Ylastic-CostAgent/
 Name: App-Ylastic-CostAgent
-DISCLAIMER: This copyright info was automatically extracted 
- from the perl module. It may not be accurate, so you better 
- check the module sources in order to ensure the module for its 
- inclusion in Debian or for general legal information. Please, 
- if licensing information is incorrectly generated, file a bug 
- on dh-make-perl.
- NOTE: Don't forget to remove this disclaimer once you are happy
- with this file.
 
 Files: *
-Copyright: David Golden <dagolden at cpan.org>
+Copyright: 2011, David Golden <dagolden at cpan.org>
 License: Apache-2.0
 
 Files: debian/*
@@ -27,8 +19,6 @@
  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
  .
  On Debian systems, the complete text of the Apache License,
  Version 2.0 can be found in `/usr/share/common-licenses/Apache-2.0'.

Added: trunk/ylastic-costagent/debian/source/format
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/ylastic-costagent/debian/source/format?rev=71767&op=file
==============================================================================
--- trunk/ylastic-costagent/debian/source/format (added)
+++ trunk/ylastic-costagent/debian/source/format Sun Mar 20 15:48:23 2011
@@ -1,0 +1,1 @@
+3.0 (quilt)

Modified: trunk/ylastic-costagent/lib/App/Ylastic/CostAgent.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/ylastic-costagent/lib/App/Ylastic/CostAgent.pm?rev=71767&op=diff
==============================================================================
--- trunk/ylastic-costagent/lib/App/Ylastic/CostAgent.pm (original)
+++ trunk/ylastic-costagent/lib/App/Ylastic/CostAgent.pm Sun Mar 20 15:48:23 2011
@@ -14,7 +14,7 @@
 
 package App::Ylastic::CostAgent;
 BEGIN {
-  $App::Ylastic::CostAgent::VERSION = '0.003';
+  $App::Ylastic::CostAgent::VERSION = '0.004';
 }
 # ABSTRACT: Perl port of the Ylastic Cost Agent for Amazon Web Services
 
@@ -268,7 +268,7 @@
 
 =head1 VERSION
 
-version 0.003
+version 0.004
 
 =head1 DESCRIPTION
 




More information about the Pkg-perl-cvs-commits mailing list