summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Schlichting <fsfs@debian.org>2015-07-08 22:02:09 +0200
committerFlorian Schlichting <fsfs@debian.org>2015-07-08 22:02:09 +0200
commit6ba8fad811adc3159eb6e0269af196a85d9a946b (patch)
treefb8b913de076cd9ca334cd394c05c9328d34341c
parent6a1ef7f36594eb45536fc3d1679b7cfc671d4c7a (diff)
parentd3e606d848cd997107a115e49e5ab5b256495f52 (diff)
Merge tag 'upstream/0.69'
Upstream version 0.69
-rwxr-xr-xChanges3
-rw-r--r--META.json14
-rw-r--r--META.yml16
-rwxr-xr-xlib/Inline/Files.pm6
-rw-r--r--t/03nowrite.t3
-rwxr-xr-xtests/03nowrite.t3
6 files changed, 25 insertions, 20 deletions
diff --git a/Changes b/Changes
index 7959614..a555987 100755
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
Revision history for Perl extension Inline::Files.
+0.69 Sun May 24 11:39:27 WEST 2015 (AMBS)
+ - Skip superuser test in Cygwin.
+
0.68 Sat Jul 23 19:45:01 WEST 2011 (AMBS)
- Use 'VERSION_FROM' and 'ABSTRACT_FROM' on Makefile.PL
diff --git a/META.json b/META.json
index 0e8d71f..fb6566c 100644
--- a/META.json
+++ b/META.json
@@ -4,7 +4,7 @@
"unknown"
],
"dynamic_config" : 1,
- "generated_by" : "ExtUtils::MakeMaker version 6.58, CPAN::Meta::Converter version 2.110930",
+ "generated_by" : "ExtUtils::MakeMaker version 7.04, CPAN::Meta::Converter version 2.150001",
"license" : [
"unknown"
],
@@ -22,22 +22,22 @@
"prereqs" : {
"build" : {
"requires" : {
- "ExtUtils::MakeMaker" : 0
+ "ExtUtils::MakeMaker" : "0"
}
},
"configure" : {
"requires" : {
- "ExtUtils::MakeMaker" : 0
+ "ExtUtils::MakeMaker" : "0"
}
},
"runtime" : {
"requires" : {
- "Cwd" : 0,
- "Filter::Util::Call" : 0,
- "Test" : 0
+ "Cwd" : "0",
+ "Filter::Util::Call" : "0",
+ "Test" : "0"
}
}
},
"release_status" : "stable",
- "version" : "0.68"
+ "version" : "0.69"
}
diff --git a/META.yml b/META.yml
index 28143ee..a42c324 100644
--- a/META.yml
+++ b/META.yml
@@ -3,22 +3,22 @@ abstract: 'Multiple virtual files at the end of your code'
author:
- unknown
build_requires:
- ExtUtils::MakeMaker: 0
+ ExtUtils::MakeMaker: '0'
configure_requires:
- ExtUtils::MakeMaker: 0
+ ExtUtils::MakeMaker: '0'
dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 6.58, CPAN::Meta::Converter version 2.110930'
+generated_by: 'ExtUtils::MakeMaker version 7.04, CPAN::Meta::Converter version 2.150001'
license: unknown
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
- version: 1.4
+ version: '1.4'
name: Inline-Files
no_index:
directory:
- t
- inc
requires:
- Cwd: 0
- Filter::Util::Call: 0
- Test: 0
-version: 0.68
+ Cwd: '0'
+ Filter::Util::Call: '0'
+ Test: '0'
+version: '0.69'
diff --git a/lib/Inline/Files.pm b/lib/Inline/Files.pm
index 789e5b6..dfa33eb 100755
--- a/lib/Inline/Files.pm
+++ b/lib/Inline/Files.pm
@@ -1,5 +1,5 @@
package Inline::Files;
-$VERSION = '0.68';
+$VERSION = '0.69';
use strict;
use Inline::Files::Virtual;
@@ -172,8 +172,8 @@ Inline::Files - Multiple virtual files at the end of your code
=head1 VERSION
-This document describes version 0.68 of Inline::Files,
-released July 23, 2011.
+This document describes version 0.69 of Inline::Files,
+released June 24, 2015.
=head1 SYNOPSIS
diff --git a/t/03nowrite.t b/t/03nowrite.t
index 39d524c..ac06015 100644
--- a/t/03nowrite.t
+++ b/t/03nowrite.t
@@ -32,7 +32,8 @@ use Inline::Files;
my $text = <FILE>;
close FILE;
skip(
- $> == 0 ? "Skip if run by superuser" : 0,
+ $> == 0 ? "Skip if run by superuser" :
+ ($^O eq 'cygwin' ? "Skip if under cygwin" : 0),
$text !~ /__MYFILE__\nNew stuff\n$/
);
}
diff --git a/tests/03nowrite.t b/tests/03nowrite.t
index 39d524c..ac06015 100755
--- a/tests/03nowrite.t
+++ b/tests/03nowrite.t
@@ -32,7 +32,8 @@ use Inline::Files;
my $text = <FILE>;
close FILE;
skip(
- $> == 0 ? "Skip if run by superuser" : 0,
+ $> == 0 ? "Skip if run by superuser" :
+ ($^O eq 'cygwin' ? "Skip if under cygwin" : 0),
$text !~ /__MYFILE__\nNew stuff\n$/
);
}