~ubuntu-branches/ubuntu/saucy/libdb-file-lock-perl/saucy

« back to all changes in this revision

Viewing changes to Lock.pm

  • Committer: Bazaar Package Importer
  • Author(s): Ansgar Burchardt, gregor herrmann, Nathan Handler, Ansgar Burchardt
  • Date: 2009-07-23 03:30:57 UTC
  • Revision ID: james.westby@ubuntu.com-20090723033057-t6yhdn2y677dr2os
Tags: 0.05-3
[ gregor herrmann ]
* Take over for the Debian Perl Group; Closes: #357344 -- ITA
* debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser
  field (source stanza); Homepage field (source stanza). Changed:
  Maintainer set to Debian Perl Group <pkg-perl-
  maintainers@lists.alioth.debian.org> (was: Debian QA Group
  <packages@qa.debian.org>); added: /me to Uploaders.
* debian/watch: use dist-based URL.
* debian/control: Changed: Switched Vcs-Browser field to ViewSVN
  (source stanza).
* debian/control: Added: ${misc:Depends} to Depends: field.

[ Nathan Handler ]
* debian/watch: Update to ignore development releases.

[ Ansgar Burchardt ]
* Refresh rules for debhelper 7.
* Move debhelper to Build-Depends.
* Bump Standards-Version to 3.8.2.
* Add myself to Uploaders.
* Convert debian/copyright to proposed machine-readable format.

[ gregor herrmann ]
* debian/control: mention module name in long description.
* Split out changes to Lock.pm into a quilt patch, add quilt framework.

Show diffs side-by-side

added added

removed removed

Lines of Context:
117
117
        }
118
118
 
119
119
        my $self = $tie_type eq "TIEHASH"
120
 
                ? $package->SUPER::TIEHASH(@dbfile_data)
121
 
                : $package->SUPER::TIEARRAY(@dbfile_data);
 
120
                ? $package->SUPER::TIEHASH(@_)
 
121
                : $package->SUPER::TIEARRAY(@_);
122
122
        if ( not $self ) {
123
123
                close $lockfile_fh;
124
124
                return $self;