~ubuntu-branches/ubuntu/wily/libfile-find-object-perl/wily

« back to all changes in this revision

Viewing changes to debian/control

  • Committer: Package Import Robot
  • Author(s): Xavier Guimard, Salvatore Bonaccorso, Ryan Niebur, Ansgar Burchardt, Jonathan Yu, Xavier Guimard
  • Date: 2012-12-04 21:46:40 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20121204214640-32zzsts0gm1g2qke
Tags: 0.2.6-1
[ Salvatore Bonaccorso ]
* debian/control: Changed: Replace versioned (build-)dependency on
  perl (>= 5.6.0-{12,16}) with an unversioned dependency on perl (as
  permitted by Debian Policy 3.8.3).

[ Ryan Niebur ]
* Email change: Jonathan Yu -> jawnsy@cpan.org

[ Ansgar Burchardt ]
* debian/control: Convert Vcs-* fields to Git.

[ Jonathan Yu ]
* Imported Upstream version 0.2.1
* Imported Upstream version 0.2.2
* Imported Upstream version 0.2.3

[ Xavier Guimard ]
* Imported Upstream version 0.2.6
* Update source format to 3.0 (quilt)
* Bump Standards-Version to 3.9.4
* Use debhelper 8
* Update debian/copyright (years, format, license)
* Update debian/rules to use dh
* Add libmodule-build-perl in dependencies

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
Source: libfile-find-object-perl
 
2
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
 
3
Uploaders: Alejandro Garrido Mota <garridomota@gmail.com>,
 
4
           Jonathan Yu <jawnsy@cpan.org>,
 
5
           Xavier Guimard <x.guimard@free.fr>
2
6
Section: perl
3
7
Priority: optional
4
 
Build-Depends: debhelper (>= 7)
5
 
Build-Depends-Indep: perl (>= 5.6.0-12), libclass-xsaccessor-perl,
6
 
 libtest-pod-perl, libtest-pod-coverage-perl
7
 
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
8
 
Uploaders: Alejandro Garrido Mota <garridomota@gmail.com>,
9
 
 Jonathan Yu <frequency@cpan.org>
10
 
Standards-Version: 3.8.2
 
8
Build-Depends: debhelper (>= 8),
 
9
               libmodule-build-perl (>= 0.390000) | perl (>= 5.15.2)
 
10
Build-Depends-Indep: libclass-xsaccessor-perl,
 
11
                     libtest-pod-coverage-perl,
 
12
                     libtest-pod-perl,
 
13
                     perl
 
14
Standards-Version: 3.9.4
 
15
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libfile-find-object-perl.git
 
16
Vcs-Git: git://git.debian.org/pkg-perl/packages/libfile-find-object-perl.git
11
17
Homepage: http://search.cpan.org/dist/File-Find-Object/
12
 
Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libfile-find-object-perl/
13
 
Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libfile-find-object-perl/
14
18
 
15
19
Package: libfile-find-object-perl
16
20
Architecture: all
17
 
Depends: ${misc:Depends}, ${perl:Depends}, libclass-xsaccessor-perl
 
21
Depends: ${misc:Depends},
 
22
         ${perl:Depends},
 
23
         libclass-xsaccessor-perl
18
24
Description: object oriented File::Find replacement
19
25
 File::Find::Object does same job as File::Find but works like an object and
20
26
 with an iterator. As File::Find is not object oriented, one can't perform
21
27
 multiple searches in the same application. The second problem of File::Find
22
28
 is its file processing: after starting its main loop, one can't easily wait
23
29
 for another event and so get the next result.
 
30