~ubuntu-branches/ubuntu/trusty/padre/trusty-proposed

« back to all changes in this revision

Viewing changes to lib/Padre/Document/DoubleSlashComment.pm

  • Committer: Package Import Robot
  • Author(s): Damyan Ivanov
  • Date: 2011-08-28 18:44:38 UTC
  • mfrom: (1.3.2 upstream) (13.1.2 experimental)
  • Revision ID: package-import@ubuntu.com-20110828184438-yytfgygb1otbnxoe
Tags: 0.90.ds1-1
* New upstream release
 + update dependencies:
   - add libcapture-tiny-perl 0.06 to Depends
   - add (build-) dependency on libmodule-corelist-perl 2.22 or a suitable
     perl
   - remove module-refresh and module-starter from (build-)dependencies
   - bump (build-)dependency on libppix-editortools-perl to 0.13
   - add (build-)dependency on libprobe-perl-perl
 + update debian/copyright to match the new release

* Move Vcs-Git from apps/ to packages/
* stop removing bundled fork of ORLite::Migrate (now heavily modified)
* update debian/not-real-manual.list
* revert the plugin API version bump
* add Breaks: for incompatible plugin versions
* upload to unstable
* add pod-spelling.patch from upstream
* update disable-tcp-server.patch to apply cleanly

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package Padre::Document::DoubleSlashComment;
 
2
 
 
3
use 5.008;
 
4
use strict;
 
5
use warnings;
 
6
use Padre::Document ();
 
7
 
 
8
our $VERSION = '0.90';
 
9
our @ISA     = 'Padre::Document';
 
10
 
 
11
sub comment_lines_str {
 
12
        return '//';
 
13
}
 
14
 
 
15
1;
 
16
 
 
17
# Copyright 2008-2011 The Padre development team as listed in Padre.pm.
 
18
# LICENSE
 
19
# This program is free software; you can redistribute it and/or
 
20
# modify it under the same terms as Perl 5 itself.