r60140 - in /trunk/librt-client-rest-perl: CHANGES MANIFEST META.yml Makefile.PL debian/changelog inc/ lib/RT/Client/REST.pm lib/RT/Client/REST/Ticket.pm

ansgar-guest at users.alioth.debian.org ansgar-guest at users.alioth.debian.org
Thu Jul 8 08:44:39 UTC 2010


Author: ansgar-guest
Date: Thu Jul  8 08:44:32 2010
New Revision: 60140

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=60140
Log:
IGNORE-VERSION: 1:0.41-1
Meta-data and packaging changes. Not relevant for Debian.

Added:
    trunk/librt-client-rest-perl/inc/
      - copied from r60139, branches/upstream/librt-client-rest-perl/current/inc/
Modified:
    trunk/librt-client-rest-perl/CHANGES
    trunk/librt-client-rest-perl/MANIFEST
    trunk/librt-client-rest-perl/META.yml
    trunk/librt-client-rest-perl/Makefile.PL
    trunk/librt-client-rest-perl/debian/changelog
    trunk/librt-client-rest-perl/lib/RT/Client/REST.pm
    trunk/librt-client-rest-perl/lib/RT/Client/REST/Ticket.pm

Modified: trunk/librt-client-rest-perl/CHANGES
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/librt-client-rest-perl/CHANGES?rev=60140&op=diff
==============================================================================
--- trunk/librt-client-rest-perl/CHANGES (original)
+++ trunk/librt-client-rest-perl/CHANGES Thu Jul  8 08:44:32 2010
@@ -1,4 +1,16 @@
 Revision history for Perl module RT::Client::REST
+
+0.41  Tue Jul 6 2010 "Tomas Doran" <bobtfish at bobtfish.net>
+ - Make version number a string to avoid length of version number changing
+   at 0.X0 releases (as this breaks distro packages)
+ - Update META.yml to the 0.4 META spec.
+ - Include repository metadata to make it easier for people to contribute
+   to the module.
+ - Change from ExtUtils::MakeMaker to Module::Install (I'm sure you can
+   generate the correct information with EU::MM, I just don't know how
+   offhand).
+ - Add Test::More as a test_requires to help distros which split it out
+   of their core perl package (RT#45150)
 
 0.40 
   Jerrad Pierce <jpierce at cpan.org>

Modified: trunk/librt-client-rest-perl/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/librt-client-rest-perl/MANIFEST?rev=60140&op=diff
==============================================================================
--- trunk/librt-client-rest-perl/MANIFEST (original)
+++ trunk/librt-client-rest-perl/MANIFEST Thu Jul  8 08:44:32 2010
@@ -17,20 +17,29 @@
 examples/show_transaction.pl
 examples/show_user.pl
 examples/take_ticket.pl
+inc/Module/Install.pm
+inc/Module/Install/Base.pm
+inc/Module/Install/Can.pm
+inc/Module/Install/Fetch.pm
+inc/Module/Install/Makefile.pm
+inc/Module/Install/Metadata.pm
+inc/Module/Install/Win32.pm
+inc/Module/Install/WriteAll.pm
+lib/RT/Client/REST.pm
 lib/RT/Client/REST/Attachment.pm
 lib/RT/Client/REST/Exception.pm
 lib/RT/Client/REST/Forms.pm
 lib/RT/Client/REST/HTTPClient.pm
+lib/RT/Client/REST/Object.pm
 lib/RT/Client/REST/Object/Exception.pm
-lib/RT/Client/REST/Object.pm
-lib/RT/Client/REST.pm
 lib/RT/Client/REST/Queue.pm
 lib/RT/Client/REST/SearchResult.pm
 lib/RT/Client/REST/Ticket.pm
 lib/RT/Client/REST/Transaction.pm
 lib/RT/Client/REST/User.pm
 Makefile.PL
-MANIFEST
+MANIFEST			This list of files
+META.yml
 README
 t/01-use.t
 t/10-core.t
@@ -48,4 +57,3 @@
 t/91-pod-coverage.t
 t/99-kwalitee.t
 TODO
-META.yml                                 Module meta-data (added by MakeMaker)

Modified: trunk/librt-client-rest-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/librt-client-rest-perl/META.yml?rev=60140&op=diff
==============================================================================
--- trunk/librt-client-rest-perl/META.yml (original)
+++ trunk/librt-client-rest-perl/META.yml Thu Jul  8 08:44:32 2010
@@ -1,28 +1,34 @@
---- #YAML:1.0
-name:               RT-Client-REST
-version:            0.4
-abstract:           ~
-author:  []
-license:            perl
-distribution_type:  module
+---
+abstract: ~
+author:
+  - 'Original /usr/bin/rt was written by Abhijit Menon-Sen <ams at wiw.org>.  rt'
+build_requires:
+  ExtUtils::MakeMaker: 6.42
+  Test::Exception: 0
+  Test::More: 0
 configure_requires:
-    ExtUtils::MakeMaker:  0
-build_requires:
-    ExtUtils::MakeMaker:  0
+  ExtUtils::MakeMaker: 6.42
+distribution_type: module
+generated_by: 'Module::Install version 0.99'
+license: perl
+meta-spec:
+  url: http://module-build.sourceforge.net/META-spec-v1.4.html
+  version: 1.4
+name: RT-Client-REST
+no_index:
+  directory:
+    - examples
+    - inc
+    - t
 requires:
-    Encode:               0
-    Error:                0
-    Exception::Class:     0
-    HTTP::Cookies:        0
-    HTTP::Request::Common:  0
-    LWP:                  0
-    Params::Validate:     0
-    Test::Exception:      0
-no_index:
-    directory:
-        - t
-        - inc
-generated_by:       ExtUtils::MakeMaker version 6.56
-meta-spec:
-    url:      http://module-build.sourceforge.net/META-spec-v1.4.html
-    version:  1.4
+  Encode: 0
+  Error: 0
+  Exception::Class: 0
+  HTTP::Cookies: 0
+  HTTP::Request::Common: 0
+  LWP: 0
+  Params::Validate: 0
+resources:
+  license: http://dev.perl.org/licenses/
+  repository: http://rt-client-rest.googlecode.com/svn/trunk/
+version: 0.41

Modified: trunk/librt-client-rest-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/librt-client-rest-perl/Makefile.PL?rev=60140&op=diff
==============================================================================
--- trunk/librt-client-rest-perl/Makefile.PL (original)
+++ trunk/librt-client-rest-perl/Makefile.PL Thu Jul  8 08:44:32 2010
@@ -1,17 +1,22 @@
-use ExtUtils::MakeMaker;
+use inc::Module::Install 0.91;
+use strict;
 
-WriteMakefile(
-    NAME            => 'RT::Client::REST',
-    VERSION_FROM    => 'lib/RT/Client/REST.pm',
-    PREREQ_PM       => {
-                        'Encode'                => 0,
-                        'Error'                 => 0,
-                        'Exception::Class'      => 0,
-                        'HTTP::Cookies'         => 0,
-                        'HTTP::Request::Common' => 0,
-                        'LWP'                   => 0,
-                        'Params::Validate'      => 0,
-                        'Test::Exception'       => 0,
-    },
-    LICENSE         => 'perl',
-);
+name 'RT-Client-REST';
+all_from 'lib/RT/Client/REST.pm';
+license 'perl';
+
+requires 'Encode'                => 0;
+requires 'Error'                 => 0;
+requires 'Exception::Class'      => 0;
+requires 'HTTP::Cookies'         => 0;
+requires 'HTTP::Request::Common' => 0;
+requires 'LWP'                   => 0;
+requires 'Params::Validate'      => 0;
+
+test_requires 'Test::More';
+test_requires 'Test::Exception'       => 0;
+
+resources repository => 'http://rt-client-rest.googlecode.com/svn/trunk/';
+
+WriteAll;
+

Modified: trunk/librt-client-rest-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/librt-client-rest-perl/debian/changelog?rev=60140&op=diff
==============================================================================
--- trunk/librt-client-rest-perl/debian/changelog (original)
+++ trunk/librt-client-rest-perl/debian/changelog Thu Jul  8 08:44:32 2010
@@ -1,3 +1,10 @@
+librt-client-rest-perl (1:0.41-1) UNRELEASED; urgency=low
+
+  IGNORE-VERSION: 1:0.41-1
+  Meta-data and packaging changes. Not relevant for Debian.
+
+ -- Ansgar Burchardt <ansgar at 43-1.org>  Thu, 08 Jul 2010 17:42:16 +0900
+
 librt-client-rest-perl (1:0.4-1) unstable; urgency=low
 
   * New upstream release

Modified: trunk/librt-client-rest-perl/lib/RT/Client/REST.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/librt-client-rest-perl/lib/RT/Client/REST.pm?rev=60140&op=diff
==============================================================================
--- trunk/librt-client-rest-perl/lib/RT/Client/REST.pm (original)
+++ trunk/librt-client-rest-perl/lib/RT/Client/REST.pm Thu Jul  8 08:44:32 2010
@@ -1,4 +1,4 @@
-# $Id: REST.pm 38 2010-03-10 17:30:50Z pplusdomain $
+# $Id: REST.pm 42 2010-07-06 08:21:54Z bobtfish at bobtfish.net $
 # RT::Client::REST
 #
 # Dmitri Tikhonov <dtikhonov at yahoo.com>
@@ -25,7 +25,8 @@
 use warnings;
 
 use vars qw/$VERSION/;
-$VERSION = 0.40;
+$VERSION = '0.41';
+$VERSION = eval $VERSION;
 
 use Error qw(:try);
 use HTTP::Cookies;

Modified: trunk/librt-client-rest-perl/lib/RT/Client/REST/Ticket.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/librt-client-rest-perl/lib/RT/Client/REST/Ticket.pm?rev=60140&op=diff
==============================================================================
--- trunk/librt-client-rest-perl/lib/RT/Client/REST/Ticket.pm (original)
+++ trunk/librt-client-rest-perl/lib/RT/Client/REST/Ticket.pm Thu Jul  8 08:44:32 2010
@@ -1,4 +1,4 @@
-# $Id: Ticket.pm 36 2009-04-10 18:43:46Z belg4mit $
+# $Id: Ticket.pm 41 2010-06-16 02:11:14Z bobtfish at bobtfish.net $
 #
 # RT::Client::REST::Ticket -- ticket object representation.
 
@@ -290,7 +290,8 @@
 
 =item B<created>
 
-Time at which ticket was created.
+Time at which ticket was created. Note that this is an immutable field
+and therefore the value cannot be changed..
 
 =item B<starts>
 




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