r73466 - in /trunk/librivescript-perl/debian: changelog control copyright docs examples patches/examples.patch patches/install-executables.patch patches/series patches/spelling-errors.patch

onur-guest at users.alioth.debian.org onur-guest at users.alioth.debian.org
Sun Apr 24 20:59:54 UTC 2011


Author: onur-guest
Date: Sun Apr 24 20:59:30 2011
New Revision: 73466

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=73466
Log:
ready for review

Added:
    trunk/librivescript-perl/debian/docs
    trunk/librivescript-perl/debian/examples
    trunk/librivescript-perl/debian/patches/examples.patch
    trunk/librivescript-perl/debian/patches/spelling-errors.patch
Removed:
    trunk/librivescript-perl/debian/patches/install-executables.patch
Modified:
    trunk/librivescript-perl/debian/changelog
    trunk/librivescript-perl/debian/control
    trunk/librivescript-perl/debian/copyright
    trunk/librivescript-perl/debian/patches/series

Modified: trunk/librivescript-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/librivescript-perl/debian/changelog?rev=73466&op=diff
==============================================================================
--- trunk/librivescript-perl/debian/changelog (original)
+++ trunk/librivescript-perl/debian/changelog Sun Apr 24 20:59:30 2011
@@ -1,15 +1,5 @@
-librivescript-perl (1.20-1) UNRELEASED; urgency=low
-
-  TODO:
-  - question: why is "docs/*" not installed any more?
-  - suggestion: refresh patch with the .quiltrc settings from
-    http://pkg-perl.alioth.debian.org/howto/quilt.html#tips_and_tricks
-  - d/control: short description should start with a small letter, so that
-    a sentence like "<package> is a <short description>" works
-  - please add a patch for the spelling errors reported by lintian
-  - /usr/share/perl5/RiveScript/demo doesn't look good, I'd move the stuff to
-    examples
+librivescript-perl (1.20-1) unstable; urgency=low
 
   * Initial Release. (Closes: #592819)
 
- -- Onur Aslan <onur at 0nur.net>  Mon, 16 Aug 2010 06:29:06 +0300
+ -- Onur Aslan <onur at onur.im>  Sun, 24 Apr 2011 23:48:20 +0300

Modified: trunk/librivescript-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/librivescript-perl/debian/control?rev=73466&op=diff
==============================================================================
--- trunk/librivescript-perl/debian/control (original)
+++ trunk/librivescript-perl/debian/control Sun Apr 24 20:59:30 2011
@@ -4,8 +4,8 @@
 Build-Depends: debhelper (>= 7)
 Build-Depends-Indep: perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
-Uploaders: Onur Aslan <onur at 0nur.net>
-Standards-Version: 3.9.1
+Uploaders: Onur Aslan <onur at onur.im>
+Standards-Version: 3.9.2
 Homepage: http://www.rivescript.com/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/librivescript-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/librivescript-perl/
@@ -13,7 +13,7 @@
 Package: librivescript-perl
 Architecture: all
 Depends: ${misc:Depends}, ${perl:Depends}
-Description: Simple trigger/response language primarily used for chatbots
+Description: simple trigger/response language primarily used for chatbots
  RiveScript is a simple trigger/response language primarily used for the
  creation of chatting robots. It's designed to have an easy-to-learn syntax
  but provide a lot of power and flexibility.

Modified: trunk/librivescript-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/librivescript-perl/debian/copyright?rev=73466&op=diff
==============================================================================
--- trunk/librivescript-perl/debian/copyright (original)
+++ trunk/librivescript-perl/debian/copyright Sun Apr 24 20:59:30 2011
@@ -8,7 +8,7 @@
 License: GPL-2+
 
 Files: debian/*
-Copyright: 2010, Onur Aslan <onur at 0nur.net>
+Copyright: 2010, Onur Aslan <onur at onur.im>
 License: GPL-2+
 
 License: GPL-2+

Added: trunk/librivescript-perl/debian/docs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/librivescript-perl/debian/docs?rev=73466&op=file
==============================================================================
--- trunk/librivescript-perl/debian/docs (added)
+++ trunk/librivescript-perl/debian/docs Sun Apr 24 20:59:30 2011
@@ -1,0 +1,2 @@
+README
+docs/

Added: trunk/librivescript-perl/debian/examples
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/librivescript-perl/debian/examples?rev=73466&op=file
==============================================================================
--- trunk/librivescript-perl/debian/examples (added)
+++ trunk/librivescript-perl/debian/examples Sun Apr 24 20:59:30 2011
@@ -1,0 +1,3 @@
+bin/*
+testsuite.rs
+lib/RiveScript/demo

Added: trunk/librivescript-perl/debian/patches/examples.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/librivescript-perl/debian/patches/examples.patch?rev=73466&op=file
==============================================================================
--- trunk/librivescript-perl/debian/patches/examples.patch (added)
+++ trunk/librivescript-perl/debian/patches/examples.patch Sun Apr 24 20:59:30 2011
@@ -1,0 +1,40 @@
+Description: This patch preventing the installation of demo files to the module
+ directory. Demo files already installing with dh_installexamples. It's also
+ removing unnecessary 'use lib' line from demo program.
+Author: Onur Aslan <onur at onur.im>
+Last-Update: 2011-04-24
+--- a/MANIFEST
++++ b/MANIFEST
+@@ -14,9 +14,4 @@
+ t/RiveScript.t
+ lib/RiveScript.pm
+ lib/RiveScript/WD.pm
+-lib/RiveScript/demo/admin.rs
+-lib/RiveScript/demo/begin.rs
+-lib/RiveScript/demo/clients.rs
+-lib/RiveScript/demo/eliza.rs
+-lib/RiveScript/demo/myself.rs
+ META.yml                                 Module meta-data (added by MakeMaker)
+--- a/bin/rsdemo
++++ b/bin/rsdemo
+@@ -2,7 +2,6 @@
+ 
+ use strict;
+ use warnings;
+-use lib "./lib";
+ use RiveScript;
+ 
+ print "Welcome to the Perl RiveScript Interpreter. This script is a demonstration\n"
+--- a/Makefile.PL
++++ b/Makefile.PL
+@@ -5,6 +5,10 @@
+     NAME              => 'RiveScript',
+     VERSION_FROM      => 'lib/RiveScript.pm', # finds $VERSION
+     PREREQ_PM         => {}, # e.g., Module::Name => 1.1
++    PM                => {
++      'lib/RiveScript.pm' => '$(INST_LIBDIR)/RiveScript.pm',
++      'lib/RiveScript/WD.pm' => '$(INST_LIBDIR)/RiveScript/WD.pm'
++    },
+     ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
+       (ABSTRACT_FROM  => 'lib/RiveScript.pm', # retrieve abstract from module
+        AUTHOR         => 'Casey Kirsle <casey at cuvou.net>') : ()),

Modified: trunk/librivescript-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/librivescript-perl/debian/patches/series?rev=73466&op=diff
==============================================================================
--- trunk/librivescript-perl/debian/patches/series (original)
+++ trunk/librivescript-perl/debian/patches/series Sun Apr 24 20:59:30 2011
@@ -1,1 +1,2 @@
-install-executables.patch
+spelling-errors.patch
+examples.patch

Added: trunk/librivescript-perl/debian/patches/spelling-errors.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/librivescript-perl/debian/patches/spelling-errors.patch?rev=73466&op=file
==============================================================================
--- trunk/librivescript-perl/debian/patches/spelling-errors.patch (added)
+++ trunk/librivescript-perl/debian/patches/spelling-errors.patch Sun Apr 24 20:59:30 2011
@@ -1,0 +1,23 @@
+Description: This patch fix spelling errors to avoid lintian warning.
+Author: Onur Aslan <onur at onur.im>
+Last-Update: 2011-04-24
+--- a/lib/RiveScript/WD.pm
++++ b/lib/RiveScript/WD.pm
+@@ -115,7 +115,7 @@
+ 
+ =head3 version
+ 
+-It's highly recommended practice that new RiveScript documents explicitely
++It's highly recommended practice that new RiveScript documents explicitly
+ define the version of RiveScript that they are following. RiveScript 2.00
+ has some compatibility issues with the old 1.x line (see L<"REVERSE COMPATIBILITY">).
+ Newer RiveScript versions should encourag that RiveScript documents define their
+@@ -744,7 +744,7 @@
+ 
+ Note that when the C<^> command continues the previous command, no spaces or
+ line breaks are implied at the joining of the two lines. The C<\s> and C<\n>
+-tags must be explicitely defined where needed.
++tags must be explicitly defined where needed.
+ 
+ =head2 @ REDIRECT
+ 




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