~ubuntu-branches/ubuntu/wily/padre/wily

« back to all changes in this revision

Viewing changes to lib/Padre/TaskHandle.pm

  • Committer: Package Import Robot
  • Author(s): Dominique Dumont, gregor herrmann, Salvatore Bonaccorso, Dominique Dumont
  • Date: 2013-05-06 13:12:27 UTC
  • mfrom: (1.3.6)
  • Revision ID: package-import@ubuntu.com-20130506131227-qykksq7ddz3lgp0v
Tags: 0.98+dfsg-1
[ gregor herrmann ]
* debian/control: update {versioned,alternative} (build) dependencies.
* debian/watch: update to ignore development releases.

[ Salvatore Bonaccorso ]
* Fix dependency on libwx-perl.
  Add versioned Build-Depends-Indep on libwx-perl (>= 1:0.9901) and add
  correct epoch to libwx-perl (>= 1:0.9901) Depends.
* Fix typo in longtitle in Debian menu entry.
  Thanks to Chris Leick and Bill Allombert for reporting (Closes: #684472)
* Change Vcs-Git to canonical URI (git://anonscm.debian.org)
* Change search.cpan.org based URIs to metacpan.org based URIs

[ Dominique Dumont ]
* Imported Upstream version 0.98+dfsg
* Removed skip test patch: problem's gone. The segfault happening in this
  test has been fixed in libdbi-perl 1.621.
* refreshed fix-spelling patch
* removed patch fix-double-line-in-outline (applied upstream)
* copyright:
  * updated years
  - removed unused licenses
* compat: bumped to 9
* control:
  - remove ryan from uploaders
  * refreshed dependencies
  * bumped standard-version
* debian/not-real-manual.list: refreshed file size for dummy manual page
* refreshed disable-tcp-server.patch
* added patch to fix mime_test

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
use Padre::Wx::Role::Conduit ();
12
12
use Padre::Logger;
13
13
 
14
 
our $VERSION  = '0.96';
 
14
our $VERSION  = '0.98';
15
15
our $SEQUENCE = 0;
16
16
 
17
17
 
131
131
 
132
132
        # Load the task class first so we can deserialize
133
133
        TRACE("Loading $array->[1]") if DEBUG;
134
 
        eval "require $array->[1];";
135
 
        die $@ if $@;
 
134
        (my $source = $array->[1].".pm") =~ s{::}{/}g;
 
135
        require $source;
136
136
 
137
137
        return bless {
138
138
                hid  => $array->[0] + 0,
468
468
 
469
469
1;
470
470
 
471
 
# Copyright 2008-2012 The Padre development team as listed in Padre.pm.
 
471
# Copyright 2008-2013 The Padre development team as listed in Padre.pm.
472
472
# LICENSE
473
473
# This program is free software; you can redistribute it and/or
474
474
# modify it under the same terms as Perl 5 itself.