Codebase list libcrypt-ssleay-perl / a291087
New upstream snapshot. Debian Janitor 1 year, 8 months ago
9 changed file(s) with 37 addition(s) and 29 deletion(s). Raw diff Collapse all Expand all
00 Revision history for Crypt-SSLeay
11 =================================
2
3 0.73_07 2017-04-18 18:27:00 UTC
4 - James Keenan noticed I forgot to push '.' to @INC. Thanks.
5 - Version tests fail because of variation in format of returned
6 strings. Drop tests that depend on the contents of those strings.
27
38 0.73_06 2017-04-03 16:16:00 UTC
49
66 "Gisle Aas"
77 ],
88 "dynamic_config" : 1,
9 "generated_by" : "ExtUtils::MakeMaker version 7.24, CPAN::Meta::Converter version 2.150010",
9 "generated_by" : "ExtUtils::MakeMaker version 7.62, CPAN::Meta::Converter version 2.150010",
1010 "keywords" : [
1111 "lwp",
1212 "lwp-useragent",
1818 ],
1919 "meta-spec" : {
2020 "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
21 "version" : "2"
21 "version" : 2
2222 },
2323 "name" : "Crypt-SSLeay",
2424 "no_index" : {
6262 "url" : "https://github.com/nanis/Crypt-SSLeay"
6363 }
6464 },
65 "version" : "0.73_06",
65 "version" : "0.73_07",
6666 "x_build" : {
6767 "recommends" : {
6868 "Devel::CheckLib" : "0.99"
6969 }
7070 },
71 "x_serialization_backend" : "JSON::PP version 2.27400"
71 "x_serialization_backend" : "JSON::PP version 4.06"
7272 }
1313 ExtUtils::CBuilder: '0.280205'
1414 Getopt::Long: '0'
1515 dynamic_config: 1
16 generated_by: 'ExtUtils::MakeMaker version 7.24, CPAN::Meta::Converter version 2.150010'
16 generated_by: 'ExtUtils::MakeMaker version 7.62, CPAN::Meta::Converter version 2.150010'
1717 keywords:
1818 - lwp
1919 - lwp-useragent
3636 perl: '5.006'
3737 resources:
3838 repository: https://github.com/nanis/Crypt-SSLeay
39 version: 0.73_06
39 version: 0.73_07
4040 x_build:
4141 recommends:
4242 Devel::CheckLib: '0.99'
77 use File::Spec::Functions qw( catfile rel2abs );
88 use Getopt::Long qw( GetOptionsFromArray );
99
10 unless( require( catfile qw(inc IO Interactive Tiny.pm) ) ) {
11 die 'Your distribution is incomplete: Failed to load bundled IO::Interactive::Tiny';
10 BEGIN {
11 # Must use a bundled version
12 # "./" prefix required to subvert @INC traversal
13 # "catfile" not useful here as it eats "." and may produces wrong \
14 # under windows ( require always takes / )
15 local $@;
16 eval { require "./inc/IO/Interactive/Tiny.pm" } or
17 die "Your distribution is incomplete: Failed to load bundled IO::Interactive::Tiny\n$@";
1218 }
1319
1420 run(\@ARGV, [qw{ssl crypto ssl32 ssleay32 eay32 libeay32 z}]);
275281 my $opt = shift;
276282 my $libs = shift;
277283
284 if (eval { require ExtUtils::PkgConfig } &&
285 ExtUtils::PkgConfig->exists('openssl')) {
286 my @libs = map { s/^-l//; $_ }
287 split(' ', ExtUtils::PkgConfig->libs_only_l('openssl'));
288 $opt->{libpath} = ExtUtils::PkgConfig->libs_only_L('openssl') // '';
289 $opt->{libpath} =~ s/^-L//;
290 $opt->{incpath} = ExtUtils::PkgConfig->cflags_only_I('openssl') // '';
291 $opt->{incpath} =~ s/-I//;
292 return \@libs;
293 }
294
278295 return $libs unless eval {
279296 require Devel::CheckLib;
280297 1;
11
22 use strict;
33 use vars qw( @ISA $VERSION $XS_VERSION );
4 $XS_VERSION = $VERSION = '0.73_06';
4 $XS_VERSION = $VERSION = '0.73_07';
55 $VERSION = eval $VERSION;
66
77 use Bytes::Random::Secure;
0 libcrypt-ssleay-perl (0.7304+git20220319.1.ba9a3d7+ds-1) UNRELEASED; urgency=low
1
2 * New upstream snapshot.
3
4 -- Debian Janitor <janitor@jelmer.uk> Sat, 30 Jul 2022 17:20:26 -0000
5
06 libcrypt-ssleay-perl (0.73.06-2) unstable; urgency=medium
17
28 [ gregor herrmann ]
(No changes)
1616 my $built_on = openssl_built_on();
1717 ok(defined $built_on, 'openssl_built_on returns a defined value');
1818 note $built_on;
19 like(
20 $built_on,
21 qr/\Abuilt on:/,
22 'openssl_built_on return value looks valid',
23 );
2419 }
2520
2621 {
2722 my $cflags = openssl_cflags();
2823 ok(defined $cflags, 'openssl_cflags returns a defined value');
2924 note $cflags;
30 like(
31 $cflags,
32 qr/\Acompiler:/,
33 'openssl_cflags return value looks valid',
34 );
3525 }
3626
3727 {
3828 my $dir = openssl_dir();
3929 ok(defined $dir, 'openssl_dir returns a defined value');
4030 note $dir;
41 like(
42 $dir,
43 qr/\AOPENSSLDIR:/,
44 'openssl_dir return value looks valid',
45 );
4631 }
4732
4833 {
5540 my $version = openssl_version();
5641 ok(defined $version, 'openssl_version returns a defined value');
5742 note $version;
58 like(
59 $version,
60 qr/\AOpenSSL/,
61 'openssl_version return value looks valid',
62 );
6343 }
6444
6545 {
(No changes)