Skip to content

Commit aff07b2

Browse files
committed
Move pm file to allow indexing to work properly
1 parent eb0c2e4 commit aff07b2

File tree

6 files changed

+31
-9
lines changed

6 files changed

+31
-9
lines changed

META.json

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
"develop" : {
2929
"requires" : {
3030
"Test::CPAN::Meta::JSON" : "0.16",
31+
"Test::Kwalitee" : "1.21",
3132
"Test::Pod" : "1.41",
3233
"Test::Spelling" : "0.12"
3334
}
@@ -38,6 +39,8 @@
3839
},
3940
"requires" : {
4041
"Crypt::OpenSSL::RSA" : "0",
42+
"Exporter" : "0",
43+
"XSLoader" : "0",
4144
"perl" : "5.008"
4245
}
4346
},
@@ -48,7 +51,12 @@
4851
}
4952
}
5053
},
51-
"provides" : {},
54+
"provides" : {
55+
"Crypt::OpenSSL::PKCS10" : {
56+
"file" : "lib/Crypt/OpenSSL/PKCS10.pm",
57+
"version" : "0.23"
58+
}
59+
},
5260
"release_status" : "stable",
5361
"resources" : {
5462
"bugtracker" : {
@@ -61,7 +69,7 @@
6169
"web" : "https://github.com/perl-net-saml2/perl-Crypt-OpenSSL-PKCS10"
6270
}
6371
},
64-
"version" : "0.22",
72+
"version" : "0.23",
6573
"x_generated_by_perl" : "v5.36.1",
6674
"x_maintainers" : [
6775
"Timothy Legge <timlegge@cpan.org>"

META.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,22 @@ meta-spec:
1616
url: http://module-build.sourceforge.net/META-spec-v1.4.html
1717
version: '1.4'
1818
name: Crypt-OpenSSL-PKCS10
19-
provides: {}
19+
provides:
20+
Crypt::OpenSSL::PKCS10:
21+
file: lib/Crypt/OpenSSL/PKCS10.pm
22+
version: '0.23'
2023
recommends:
2124
Crypt::OpenSSL::Bignum: '0'
2225
requires:
2326
Crypt::OpenSSL::RSA: '0'
27+
Exporter: '0'
28+
XSLoader: '0'
2429
perl: '5.008'
2530
resources:
2631
bugtracker: https://rt.cpan.org/Public/Dist/Display.html?Name=Crypt-OpenSSL-PKCS10
2732
homepage: http://search.cpan.org/dist/Crypt-OpenSSL-PKCS10/
2833
repository: git://github.com/perl-net-saml2/perl-Crypt-OpenSSL-PKCS10.git
29-
version: '0.22'
34+
version: '0.23'
3035
x_generated_by_perl: v5.36.1
3136
x_maintainers:
3237
- 'Timothy Legge <timlegge@cpan.org>'

Makefile.PL

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,15 @@ my %WriteMakefileArgs = (
6868
"MIN_PERL_VERSION" => "5.008",
6969
"NAME" => "Crypt::OpenSSL::PKCS10",
7070
"PREREQ_PM" => {
71-
"Crypt::OpenSSL::RSA" => 0
71+
"Crypt::OpenSSL::RSA" => 0,
72+
"Exporter" => 0,
73+
"XSLoader" => 0
7274
},
7375
"TEST_REQUIRES" => {
7476
"Crypt::OpenSSL::RSA" => 0,
7577
"Test::More" => 0
7678
},
77-
"VERSION" => "0.22",
79+
"VERSION" => "0.23",
7880
"test" => {
7981
"TESTS" => "t/*.t"
8082
}
@@ -88,7 +90,9 @@ my %WriteMakefileArgs = (
8890
my %FallbackPrereqs = (
8991
"Crypt::OpenSSL::Guess" => "0.11",
9092
"Crypt::OpenSSL::RSA" => 0,
91-
"Test::More" => 0
93+
"Exporter" => 0,
94+
"Test::More" => 0,
95+
"XSLoader" => 0
9296
);
9397

9498
unless ( eval { ExtUtils::MakeMaker->VERSION('6.63_03') } ) {

cpanfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
# Do not edit this file directly. To change prereqs, edit the `dist.ini` file.
33

44
requires "Crypt::OpenSSL::RSA" => "0";
5+
requires "Exporter" => "0";
6+
requires "XSLoader" => "0";
57
requires "perl" => "5.008";
68
recommends "Crypt::OpenSSL::Bignum" => "0";
79

@@ -21,6 +23,7 @@ on 'configure' => sub {
2123

2224
on 'develop' => sub {
2325
requires "Test::CPAN::Meta::JSON" => "0.16";
26+
requires "Test::Kwalitee" => "1.21";
2427
requires "Test::Pod" => "1.41";
2528
requires "Test::Spelling" => "0.12";
2629
};

dist.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = Crypt-OpenSSL-PKCS10
22
author = JoNO <jonozzz@yahoo.com>
3-
main_module = PKCS10.pm
3+
main_module = lib/Crypt/OpenSSL/PKCS10.pm
44
license = Perl_5
55
copyright_holder = JoNO
66
copyright_year = 2006 - 2023
@@ -53,6 +53,8 @@ location = root
5353

5454
[PodSyntaxTests]
5555

56+
[Test::Kwalitee]
57+
5658
[Test::PodSpelling]
5759
directories = .
5860
stopword = Legge

PKCS10.pm renamed to lib/Crypt/OpenSSL/PKCS10.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
3030

3131
#);
3232

33-
our $VERSION = '0.22';
33+
our $VERSION = '0.23';
3434

3535
require XSLoader;
3636
XSLoader::load('Crypt::OpenSSL::PKCS10', $VERSION);

0 commit comments

Comments
 (0)