~ubuntu-branches/ubuntu/utopic/libmarc-lint-perl/utopic

« back to all changes in this revision

Viewing changes to debian/control

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Yu, Jonathan Yu, gregor herrmann, Nathan Handler
  • Date: 2009-08-29 19:04:20 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090829190420-xsn11r3d5vznf8ak
Tags: 1.44-1
[ Jonathan Yu ]
* New upstream release (IMPORTANT FIXES)
  + _check_article now has exceptions: 'A to ', 'A isn\'t '
  + Updated Lint::DATA section with Oct 2007 & 2008 updates
  + Update MARC::Lint::CodeData with most recent version
* Standards-Version 3.8.3 (drop perl version dependency)
* Use short debhelper rules format
* Updated gregoa's email address
* Drop version dependency on libbusiness-isbn-perl (>= 2.03),
  since version 2.03.01 is in stable
* Added myself to Uploaders and Copyright
* Updated to machine-readable copyright format
* Refreshed dam's patch for whatis, added headers per DEP3
* Compacted control description

[ gregor herrmann ]
* debian/watch: use dist-based URL.
* Add debian/README.source to document quilt usage, as required by
  Debian Policy since 3.8.0.
* debian/control: Changed: Switched Vcs-Browser field to ViewSVN
  (source stanza).

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

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
Source: libmarc-lint-perl
2
2
Section: perl
3
3
Priority: optional
4
 
Build-Depends: debhelper (>= 5.0.0), quilt
5
 
Build-Depends-Indep: perl (>= 5.8.8-7), libbusiness-isbn-perl (>= 2.03), libmarc-record-perl
 
4
Build-Depends: debhelper (>= 7.0.8), quilt (>= 0.46-7)
 
5
Build-Depends-Indep: perl, libbusiness-isbn-perl, libmarc-record-perl
6
6
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
7
7
Uploaders: Vincent Danjean <vdanjean@debian.org>,
8
 
 gregor herrmann <gregor+debian@comodo.priv.at>,
 
8
 gregor herrmann <gregoa@debian.org>, Jonathan Yu <frequency@cpan.org>,
9
9
 Damyan Ivanov <dmn@debian.org>
10
 
Standards-Version: 3.7.2
 
10
Standards-Version: 3.8.3
11
11
Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libmarc-lint-perl/
12
 
Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libmarc-lint-perl/
 
12
Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libmarc-lint-perl/
13
13
Homepage: http://search.cpan.org/dist/MARC-Lint/
14
14
 
15
15
Package: libmarc-lint-perl
16
16
Architecture: all
17
 
Depends: ${perl:Depends}, ${misc:Depends}, libmarc-record-perl, libbusiness-isbn-perl (>= 2.03)
 
17
Depends: ${perl:Depends}, ${misc:Depends}, libmarc-record-perl,
 
18
 libbusiness-isbn-perl
18
19
Description: Perl extension for checking validity of MARC records
19
 
 Module for checking validity of MARC records. 99% of the users will want to do
20
 
 something like is shown in the synopsis. The other intrepid 1% will overload
21
 
 the MARC::Lint module's methods and provide their own special field-level
22
 
 checking.
23
 
 .
24
 
 What this means is that if you have certain requirements, such as making sure
25
 
 that all 952 tags have a certain call number in them, you can write a function
26
 
 that checks for that, and still get all the benefits of the MARC::Lint
27
 
 framework.
 
20
 MARC::Lint is a Perl module for checking the validity of MARC records. Most
 
21
 of the users will want to do something like is shown in the synopsis. Other
 
22
 users may choose instead to overload MARC::Lint's methods and provide their
 
23
 own special field-level checking. If you have certain requirements, such as
 
24
 making sure that all 952 tags have a certain call number in them, you can
 
25
 write a function that checks for that, and still get all the benefits of the
 
26
 MARC::Lint framework.