~ubuntu-branches/ubuntu/trusty/libcommon-sense-perl/trusty

« back to all changes in this revision

Viewing changes to t/01_arch.t

  • Committer: Package Import Robot
  • Author(s): gregor herrmann, Salvatore Bonaccorso, Xavier Guimard, gregor herrmann
  • Date: 2013-08-09 21:00:58 UTC
  • mfrom: (1.2.6)
  • Revision ID: package-import@ubuntu.com-20130809210058-aiycmyu3sy8w062r
Tags: 3.72-1
[ Salvatore Bonaccorso ]
* Change Vcs-Git to canonical URI (git://anonscm.debian.org)

[ Xavier Guimard ]
* Update debian/copyright years
* Bump Standards-Version to 3.9.4

[ gregor herrmann ]
* New upstream release.
* debian/watch: add uversionmangle to ensure 2-digit minor versions.
* debian/rules: recreate manpage from now separate POD file.
* Add patch to add encoding to POD/manpage. Thanks to Jakub Wilk for the
  bug report. (Closes: #699520)
* Ensure a runtime dependency on the same Perl patchlevel used during
  build. Depending on Perl version used for building, different features
  are activated.
* Update years of packaging copyright.
* Make package arch:any, following upstream's change. Add a lintian
  override for the seemingly harmless file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
BEGIN { $| = 1; print "1..1\n" }
 
2
 
 
3
use common::sense;
 
4
 
 
5
if ($common::sense::VERSION < 3.7) {
 
6
   print STDERR <<EOF;
 
7
 
 
8
***
 
9
*** WARNING
 
10
***
 
11
*** old version of common::sense still installed,
 
12
*** your perl library is corrupted.
 
13
***
 
14
*** please manually uninstall older common::sense versions
 
15
*** or use "make install UNINST=1" to remove them.
 
16
***
 
17
 
 
18
EOF
 
19
}
 
20
 
 
21
print "ok 1\n";