Skip to content

Commit adbf75c

Browse files
committed
Fix a few packaging issues - no code changes
1 parent d5d0d3f commit adbf75c

File tree

4 files changed

+25
-15
lines changed

4 files changed

+25
-15
lines changed

Makefile.PL

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,12 @@ my %WriteMakefileArgs = (
7474
"NAME" => "Crypt::OpenSSL::SignCSR",
7575
"PREREQ_PM" => {},
7676
"TEST_REQUIRES" => {
77+
"Crypt::OpenSSL::PKCS10" => "0.19",
78+
"Crypt::OpenSSL::RSA" => 0,
7779
"File::Slurper" => "0.012",
78-
"Test::Exception" => 0
80+
"File::Which" => 0
7981
},
80-
"VERSION" => "0.02",
82+
"VERSION" => "0.03",
8183
"test" => {
8284
"TESTS" => "t/*.t"
8385
}
@@ -89,8 +91,10 @@ my %WriteMakefileArgs = (
8991
);
9092

9193
my %FallbackPrereqs = (
94+
"Crypt::OpenSSL::PKCS10" => "0.19",
95+
"Crypt::OpenSSL::RSA" => 0,
9296
"File::Slurper" => "0.012",
93-
"Test::Exception" => 0
97+
"File::Which" => 0
9498
);
9599

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

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,16 +40,18 @@ Crypt::OpenSSL::PKCS10 allows you to generate a Certificate Signing Request (CSR
4040

4141
Timothy Legge, <timlegge@cpan.org>
4242

43-
# COPYRIGHT AND LICENSE
43+
# COPYRIGHT
4444

4545
Copyright (C) 2023 by Timothy Legge
4646
Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
4747

48+
I did not write any OpenSSL related code I simply copied and pasted
49+
the work of the OpenSSL project's openssl code until I arrived at a XS
50+
based module that could create a certificate from a Certificate Signing Request.
51+
52+
&#x3d; head LICENSE
53+
4854
Licensed under the Apache License 2.0 (the "License"). You may not use
4955
this file except in compliance with the License. You can obtain a copy
5056
in the file LICENSE in the source distribution or at
5157
https://www.openssl.org/source/license.html
52-
53-
I did not write any OpenSSL related code I simply copied and pasted
54-
the work of the OpenSSL project's openssl code until I arrived at a XS
55-
based module that could create a certificate from a Certificate Signing Request.

dist.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ perl = 5.008
1919

2020
[Prereqs / TestRequires]
2121
File::Slurper = 0.012
22-
Test::Exception = 0
22+
Crypt::OpenSSL::PKCS10 = 0.19
23+
Crypt::OpenSSL::RSA = 0
24+
File::Which = 0
2325

2426
[Pod2Readme]
2527

lib/Crypt/OpenSSL/SignCSR.pm

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use warnings;
77

88
require Exporter;
99

10-
our $VERSION = "0.02";
10+
our $VERSION = "0.03";
1111

1212
our @ISA = qw(Exporter);
1313

@@ -67,18 +67,20 @@ Crypt::OpenSSL::PKCS10 allows you to generate a Certificate Signing Request (CSR
6767
6868
Timothy Legge, E<lt>timlegge@cpan.orgE<gt>
6969
70-
=head1 COPYRIGHT AND LICENSE
70+
=head1 COPYRIGHT
7171
7272
Copyright (C) 2023 by Timothy Legge
7373
Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
7474
75+
I did not write any OpenSSL related code I simply copied and pasted
76+
the work of the OpenSSL project's openssl code until I arrived at a XS
77+
based module that could create a certificate from a Certificate Signing Request.
78+
79+
= head LICENSE
80+
7581
Licensed under the Apache License 2.0 (the "License"). You may not use
7682
this file except in compliance with the License. You can obtain a copy
7783
in the file LICENSE in the source distribution or at
7884
https://www.openssl.org/source/license.html
7985
80-
I did not write any OpenSSL related code I simply copied and pasted
81-
the work of the OpenSSL project's openssl code until I arrived at a XS
82-
based module that could create a certificate from a Certificate Signing Request.
83-
8486
=cut

0 commit comments

Comments
 (0)