r37766 - in /trunk/jifty: Makefile.PL debian/changelog debian/patches/series debian/patches/testapp-halo-mistake.patch debian/rules

yvesago-guest at users.alioth.debian.org yvesago-guest at users.alioth.debian.org
Sun Jun 7 11:44:38 UTC 2009


Author: yvesago-guest
Date: Sun Jun  7 11:43:47 2009
New Revision: 37766

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=37766
Log:
* patch for testapp halo mistake
* revert to original Makefile.PL, App::CLI was update
* set make test in rules


Added:
    trunk/jifty/debian/patches/testapp-halo-mistake.patch
Modified:
    trunk/jifty/Makefile.PL
    trunk/jifty/debian/changelog
    trunk/jifty/debian/patches/series
    trunk/jifty/debian/rules

Modified: trunk/jifty/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/jifty/Makefile.PL?rev=37766&op=diff
==============================================================================
--- trunk/jifty/Makefile.PL (original)
+++ trunk/jifty/Makefile.PL Sun Jun  7 11:43:47 2009
@@ -2,8 +2,7 @@
 name('Jifty');
 license('Perl');
 perl_version '5.8.3';
-#requires('App::CLI' => 0.08 ); # App::CLI::Command::Help App::CLI::Command
-requires('App::CLI' => 0.07 ); # App::CLI::Command::Help App::CLI::Command
+requires('App::CLI' => 0.08 ); # App::CLI::Command::Help App::CLI::Command
 requires('Cache::Cache'); #Cache::FileCache
 requires('Calendar::Simple');
 requires('Class::Accessor'); # Class::Accessor::Fast

Modified: trunk/jifty/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/jifty/debian/changelog?rev=37766&op=diff
==============================================================================
--- trunk/jifty/debian/changelog (original)
+++ trunk/jifty/debian/changelog Sun Jun  7 11:43:47 2009
@@ -1,30 +1,28 @@
 jifty (0.90519-1) UNRELEASED; urgency=low
-
-  TODO: 
-  - upgrade App::CLI to 0.08
-  - skip one test in t/TestApp/t/20-error-pages.t, 
-     fails with string in halo showing code
 
   [ AGOSTINI Yves ]
   * new release
   * remove plugins no more embedded in jifty core
   * control: 
-     Standards-Version: bump to 3.8.1
-     Suggest: remove suggested plugins, add libclass-accessor-named-perl for
+     - Standards-Version: bump to 3.8.1
+     - Suggest: remove suggested plugins, add libclass-accessor-named-perl for
       jifty framework development, 
-     Desription: change "We" by "Jifty developers"
-     Remove plugins
-     Update dep
+     - Desription: change "We" by "Jifty developers"
+     - Remove plugins
+     - Update dep
   * libjifty-plugin-halo-perl removed (Closes: #506176) now in core
   * refresh lintian warnings on long lines
-  * rules: fix bad rights for some css and js files
-    remove testapp and mailbox test files
-  * links: scriptaculous and protoype now in Plugin::Prototypism
-    update to jquery 1.2.6
-  * copyright: remove plugins related copyrights
-   add singlepage/rsh/rsh.js copyright 
+  * rules: - fix bad rights for some css and js files
+     - remove testapp and mailbox test files
+  * links: - scriptaculous and protoype now in Plugin::Prototypism
+     - update to jquery 1.2.6
+  * copyright: - remove plugins related copyrights
+     - add singlepage/rsh/rsh.js copyright 
     TODO: License name ?
-  * update debian patchs for 4 manpage-has-bad-whatis-entry 
+  * patches: 
+     - update debian patchs for 4 manpage-has-bad-whatis-entry
+     - allow follow symlink for js libraries
+     - fix mistake in TestApp test
 
   [ gregor herrmann ]
   * debian/control:

Modified: trunk/jifty/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/jifty/debian/patches/series?rev=37766&op=diff
==============================================================================
--- trunk/jifty/debian/patches/series (original)
+++ trunk/jifty/debian/patches/series Sun Jun  7 11:43:47 2009
@@ -1,2 +1,3 @@
 follow-symlink.patch
 manpage-has-bad-whatis-entry.patch
+testapp-halo-mistake.patch

Added: trunk/jifty/debian/patches/testapp-halo-mistake.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/jifty/debian/patches/testapp-halo-mistake.patch?rev=37766&op=file
==============================================================================
--- trunk/jifty/debian/patches/testapp-halo-mistake.patch (added)
+++ trunk/jifty/debian/patches/testapp-halo-mistake.patch Sun Jun  7 11:43:47 2009
@@ -1,0 +1,16 @@
+Author: yvesago-guest (Yves Agostini)
+Description: "something went awry" match in halo code
+Upstream: Commit upstream url http://svn.jifty.org/index.cgi/jifty/revision?rev=7102
+--- a/t/TestApp/t/20-error-pages.t
++++ b/t/TestApp/t/20-error-pages.t
+@@ -44,9 +44,8 @@
+     $mech->get_ok("$prefix/call-region-with-error");
+     $mech->warnings_like(qr/Can't locate object method "non_existent_method" via package "Jifty::Web"/);
+     $mech->base_unlike(qr{errors/500}, "Doesn't redirect if only a region error");
+-#    $mech->content_unlike(qr/something went awry/i, "Doesn't have error header");
++    #$mech->content_unlike(qr/something went awry/i, "Doesn't have error header");
+     $mech->content_like(qr/<h2>Call stack<\/h2>/i, "Doesn't have error header");
+-warn $mech->content;
+     $mech->content_like(qr/locate object method .*?non_existent_method.*?/, "Has error itself, if in devel mode");
+     $mech->content_like(qr/region-with-error/, "Have stack trace");
+     $mech->content_like(qr/Calling before/, "Does have region content from before error");

Modified: trunk/jifty/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/jifty/debian/rules?rev=37766&op=diff
==============================================================================
--- trunk/jifty/debian/rules (original)
+++ trunk/jifty/debian/rules Sun Jun  7 11:43:47 2009
@@ -24,7 +24,7 @@
 	dh_testdir
 	$(PERL) Makefile.PL --skipdeps INSTALLDIRS=vendor
 	$(MAKE)
-#	LANG=C $(MAKE) test
+	LANG=C $(MAKE) test
 	touch $@
 
 clean: unpatch




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