summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgregor herrmann <gregoa@debian.org>2019-08-11 23:52:23 +0200
committergregor herrmann <gregoa@debian.org>2019-08-11 23:52:23 +0200
commite024a12c29b79c69f86ded8cd9dcae6cc5bd6bac (patch)
treec459f99bb5208013515919125a7231d76ce9e8fb
parent2d18eee56eb8b9535e5873ef227c941372449c69 (diff)
parentc868bd27067769bd98d6254d8f6c2c211a1eb11d (diff)
Update upstream source from tag 'upstream/0.03'
Update to upstream version '0.03' with Debian dir 414e2abc2b85cdaabfe55aa58299303fef20bd32
-rw-r--r--Build.PL2
-rw-r--r--Changes5
-rw-r--r--MANIFEST8
-rw-r--r--META.json9
-rw-r--r--META.yml5
-rw-r--r--README4
-rw-r--r--lib/Module/Build/Using/PkgConfig.pm7
7 files changed, 25 insertions, 15 deletions
diff --git a/Build.PL b/Build.PL
index b08ee00..545af8f 100644
--- a/Build.PL
+++ b/Build.PL
@@ -11,6 +11,8 @@ my $build = Module::Build->new(
requires => {
'ExtUtils::PkgConfig' => 0,
'Module::Build' => 0,
+
+ 'perl' => '5.010', # //
},
test_requires => {
'Test::More' => '0.88', # done_testing
diff --git a/Changes b/Changes
index beda935..1b67421 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,10 @@
Revision history for Module-Build-Using-PkgConfig
+0.03 2019-04-11 13:05:56
+ [CHANGES]
+ * Declare dependency on perl 5.010 because of // operator
+ * Spelling fixes from debian (thanks gregor herrmann) (RT128590)
+
0.02 2019-02-21 20:47:31
[BUGFIXES]
* Declare Alien modules under 'requires', not 'build_requires'
diff --git a/MANIFEST b/MANIFEST
index 009454b..c2c0468 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -1,10 +1,10 @@
Build.PL
Changes
lib/Module/Build/Using/PkgConfig.pm
+LICENSE
MANIFEST This list of files
+META.json
+META.yml
+README
t/00use.t
t/99pod.t
-README
-LICENSE
-META.yml
-META.json
diff --git a/META.json b/META.json
index ad7363f..d1aa364 100644
--- a/META.json
+++ b/META.json
@@ -22,7 +22,8 @@
"runtime" : {
"requires" : {
"ExtUtils::PkgConfig" : "0",
- "Module::Build" : "0"
+ "Module::Build" : "0",
+ "perl" : "5.010"
}
},
"test" : {
@@ -34,7 +35,7 @@
"provides" : {
"Module::Build::Using::PkgConfig" : {
"file" : "lib/Module/Build/Using/PkgConfig.pm",
- "version" : "0.02"
+ "version" : "0.03"
}
},
"release_status" : "stable",
@@ -43,6 +44,6 @@
"http://dev.perl.org/licenses/"
]
},
- "version" : "0.02",
- "x_serialization_backend" : "JSON::PP version 4.00"
+ "version" : "0.03",
+ "x_serialization_backend" : "JSON::PP version 2.97001"
}
diff --git a/META.yml b/META.yml
index b0c1a5c..2af4e51 100644
--- a/META.yml
+++ b/META.yml
@@ -16,11 +16,12 @@ name: Module-Build-Using-PkgConfig
provides:
Module::Build::Using::PkgConfig:
file: lib/Module/Build/Using/PkgConfig.pm
- version: '0.02'
+ version: '0.03'
requires:
ExtUtils::PkgConfig: '0'
Module::Build: '0'
+ perl: '5.010'
resources:
license: http://dev.perl.org/licenses/
-version: '0.02'
+version: '0.03'
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff --git a/README b/README
index cd6adf3..29fe124 100644
--- a/README
+++ b/README
@@ -91,7 +91,7 @@ METHODS
alien_version => $version
- If the Alien:: module is not available, gives the module verison of
+ If the Alien:: module is not available, gives the module version of
it that will be required to provide the pkg-config module of the
required version. This gets added to requires.
@@ -169,7 +169,7 @@ TODO
build_requires_pkgconfig, to neaten the common case of simple
requirements.
- * Consider futher stealing the various helper methods from
+ * Consider further stealing the various helper methods from
ExtUtils::CChecker and possibly splitting this class into a lower
"C-using XS modules" and higher-level pkg-config+Alien layer.
diff --git a/lib/Module/Build/Using/PkgConfig.pm b/lib/Module/Build/Using/PkgConfig.pm
index b5b30fa..b3661c5 100644
--- a/lib/Module/Build/Using/PkgConfig.pm
+++ b/lib/Module/Build/Using/PkgConfig.pm
@@ -7,11 +7,12 @@ package Module::Build::Using::PkgConfig;
use strict;
use warnings;
+use 5.010; # //
use base qw( Module::Build );
use ExtUtils::PkgConfig;
-our $VERSION = '0.02';
+our $VERSION = '0.03';
=head1 NAME
@@ -130,7 +131,7 @@ described above.
=item alien_version => $version
-If the C<Alien::> module is not available, gives the module verison of it that
+If the C<Alien::> module is not available, gives the module version of it that
will be required to provide the F<pkg-config> module of the required version.
This gets added to C<requires>.
@@ -476,7 +477,7 @@ to neaten the common case of simple requirements.
=item *
-Consider futher stealing the various helper methods from L<ExtUtils::CChecker>
+Consider further stealing the various helper methods from L<ExtUtils::CChecker>
and possibly splitting this class into a lower "C-using XS modules" and
higher-level F<pkg-config>+Alien layer.