~ubuntu-branches/ubuntu/vivid/libclass-accessor-grouped-perl/vivid

« back to all changes in this revision

Viewing changes to Makefile.PL

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Yu, Jonathan Yu, Nathan Handler, gregor herrmann
  • Date: 2009-08-24 07:57:34 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20090824075734-a3x3biqdlf36gvia
[ Jonathan Yu ]
* New upstream release
  + Use Class::XSAccessor if available (RT#45577)
* Standards-Version 3.8.3 (remove version dependency on perl)
* Added myself to Uploaders and Copyright
* Updated machine-readable copyright file (add copyright years)
* Use short debhelper rules format
* Updated dependencies (libsub-name-perl, libsub-identify-perl)

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

[ gregor herrmann ]
* Add libclass-xsaccessor-perl to Recommends and Build-Depends-Indep.
* Add libtest-strict-perl to Build-Depends-Indep (additional test).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# $Id$
 
1
# $Id: Makefile.PL 7003 2009-07-08 02:24:06Z claco $
2
2
use strict;
3
3
use warnings;
4
 
use inc::Module::Install 0.65;
 
4
use inc::Module::Install 0.91;
5
5
 
6
6
name 'Class-Accessor-Grouped';
7
7
license 'perl';
12
12
requires 'Scalar::Util';
13
13
requires 'MRO::Compat';
14
14
requires 'Class::Inspector';
 
15
requires 'Sub::Name' => '0.04';
 
16
 
 
17
feature 'XS Accessor Support',
 
18
  -default => 0,
 
19
  'Class::XSAccessor' => 0;
 
20
 
 
21
 
 
22
test_requires 'Sub::Identify';
15
23
 
16
24
clean_files "Class-Accessor-Grouped-* t/var";
17
25