Codebase list liblist-compare-perl / 47f561b
Imported Upstream version 0.38 Florian Schlichting 10 years ago
9 changed file(s) with 95 addition(s) and 45 deletion(s). Raw diff Collapse all Expand all
0 #$Id: Changes 1329 2008-06-07 23:49:51Z jimk $
0 #$Id: Changes 1506 2013-09-06 01:10:34Z jimk $
11 Revision history for Perl extension List::Compare.
22
33 0.04 Sat Jun 8 2002
147147 - Tests refined and code refactored so as to achieve 100% subroutine,
148148 statement, branch and condition coverage by test suite as measured by
149149 Devel::Cover. Some cleanup of POD.
150
151 0.38 Thu Sep 5 21:09:10 EDT 2013
152 - Update support information; no longer using dedicated mailing list.
6060 t/91_func_errors.t
6161 t/IO/CaptureOutput.pm
6262 t/Test/ListCompareSpecial.pm
63 META.json Module JSON meta-data (added by MakeMaker)
0 {
1 "abstract" : "Compare elements of two or more lists",
2 "author" : [
3 "James E Keenan (jkeenan@cpan.org)"
4 ],
5 "dynamic_config" : 1,
6 "generated_by" : "ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter version 2.120921",
7 "license" : [
8 "unknown"
9 ],
10 "meta-spec" : {
11 "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
12 "version" : "2"
13 },
14 "name" : "List-Compare",
15 "no_index" : {
16 "directory" : [
17 "t",
18 "inc"
19 ]
20 },
21 "prereqs" : {
22 "build" : {
23 "requires" : {
24 "ExtUtils::MakeMaker" : "0"
25 }
26 },
27 "configure" : {
28 "requires" : {
29 "ExtUtils::MakeMaker" : "0"
30 }
31 },
32 "runtime" : {
33 "requires" : {
34 "Test::Simple" : "0.1"
35 }
36 }
37 },
38 "release_status" : "stable",
39 "version" : "0.38"
40 }
0 --- #YAML:1.0
1 name: List-Compare
2 version: 0.37
3 abstract: Compare elements of two or more lists
4 license: ~
5 author:
6 - James E Keenan (jkeenan@cpan.org)
7 generated_by: ExtUtils::MakeMaker version 6.42
8 distribution_type: module
9 requires:
10 Test::Simple: 0.1
0 ---
1 abstract: 'Compare elements of two or more lists'
2 author:
3 - 'James E Keenan (jkeenan@cpan.org)'
4 build_requires:
5 ExtUtils::MakeMaker: 0
6 configure_requires:
7 ExtUtils::MakeMaker: 0
8 dynamic_config: 1
9 generated_by: 'ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter version 2.120921'
10 license: unknown
1111 meta-spec:
12 url: http://module-build.sourceforge.net/META-spec-v1.3.html
13 version: 1.3
12 url: http://module-build.sourceforge.net/META-spec-v1.4.html
13 version: 1.4
14 name: List-Compare
15 no_index:
16 directory:
17 - t
18 - inc
19 requires:
20 Test::Simple: 0.1
21 version: 0.38
0 #$Id: README 1329 2008-06-07 23:49:51Z jimk $
0 #$Id: README 1506 2013-09-06 01:10:34Z jimk $
11 List::Compare - Compare elements of two or more lists
22
3 This document refers to version 0.37 of List::Compare. This version was
4 released June 07, 2008.
3 This document refers to version 0.38 of List::Compare. This version was
4 released September 05, 2013.
55
66 To install this module on your system, place the tarball archive file in a
77 temporary directory and call the following:
88
9 % gunzip List-Compare-0.37.tar.gz
10 % tar xf List-Compare-0.37.tar
11 % cd List-Compare-0.37
9 % gunzip List-Compare-0.38.tar.gz
10 % tar xf List-Compare-0.38.tar
11 % cd List-Compare-0.38
1212 % perl Makefile.PL
1313 % make
1414 % make test
00 package List::Compare::Base::_Auxiliary;
1 #$Id: _Auxiliary.pm 1329 2008-06-07 23:49:51Z jimk $
2 $VERSION = 0.37;
1 #$Id: _Auxiliary.pm 1506 2013-09-06 01:10:34Z jimk $
2 $VERSION = 0.38;
33 use Carp;
44 @ISA = qw(Exporter);
55 @EXPORT_OK = qw|
752752
753753 =head1 VERSION
754754
755 This document refers to version 0.37 of List::Compare::Base::_Auxiliary.
756 This version was released June 07, 2008.
755 This document refers to version 0.38 of List::Compare::Base::_Auxiliary.
756 This version was released September 05, 2013.
757757
758758 =head1 SYNOPSIS
759759
765765 James E. Keenan (jkeenan@cpan.org). When sending correspondence, please
766766 include 'List::Compare' or 'List-Compare' in your subject line.
767767
768 Creation date: May 20, 2002. Last modification date: June 07, 2008.
768 Creation date: May 20, 2002. Last modification date: September 05, 2013.
769769 Copyright (c) 2002-08 James E. Keenan. United States. All rights reserved.
770770 This is free software and may be distributed under the same terms as Perl
771771 itself.
00 package List::Compare::Base::_Engine;
1 #$Id: _Engine.pm 1329 2008-06-07 23:49:51Z jimk $
2 $VERSION = 0.37;
1 #$Id: _Engine.pm 1506 2013-09-06 01:10:34Z jimk $
2 $VERSION = 0.38;
33 # Holds subroutines used within
44 # List::Compare::Base::Accelerated and List::Compare::Functional
55 # As of: 09/18/2005
8282
8383 =head1 VERSION
8484
85 This document refers to version 0.37 of List::Compare::Base::_Engine.
86 This version was released June 07, 2008.
85 This document refers to version 0.38 of List::Compare::Base::_Engine.
86 This version was released September 05, 2013.
8787
8888 =head1 SYNOPSIS
8989
9595 James E. Keenan (jkeenan@cpan.org). When sending correspondence, please
9696 include 'List::Compare' or 'List-Compare' in your subject line.
9797
98 Creation date: May 20, 2002. Last modification date: June 07, 2008.
98 Creation date: May 20, 2002. Last modification date: September 05, 2013.
9999 Copyright (c) 2002-04 James E. Keenan. United States. All rights reserved.
100100 This is free software and may be distributed under the same terms as Perl
101101 itself.
00 package List::Compare::Functional;
1 #$Id: Functional.pm 1329 2008-06-07 23:49:51Z jimk $
2 $VERSION = 0.37;
1 #$Id: Functional.pm 1506 2013-09-06 01:10:34Z jimk $
2 $VERSION = 0.38;
33 @ISA = qw(Exporter);
44 @EXPORT_OK = qw|
55 get_intersection
520520
521521 =head1 VERSION
522522
523 This document refers to version 0.37 of List::Compare::Functional.
524 This version was released June 07, 2008. The first released
523 This document refers to version 0.38 of List::Compare::Functional.
524 This version was released September 05, 2013. The first released
525525 version of List::Compare::Functional was v0.21. Its version numbers
526526 are set to be consistent with the other parts of the List::Compare
527527 distribution.
16851685 include 'List::Compare::Functional' or 'List-Compare-Functional' in your
16861686 subject line.
16871687
1688 Creation date: May 20, 2002. Last modification date: June 07, 2008.
1688 Creation date: May 20, 2002. Last modification date: September 05, 2013.
16891689 Copyright (c) 2002-08 James E. Keenan. United States. All rights reserved.
16901690 This is free software and may be distributed under the same terms as Perl
16911691 itself.
00 package List::Compare;
1 #$Id: Compare.pm 1329 2008-06-07 23:49:51Z jimk $
2 $VERSION = '0.37';
1 #$Id: Compare.pm 1506 2013-09-06 01:10:34Z jimk $
2 $VERSION = '0.38';
33 use strict;
44 local $^W = 1;
55 use Carp;
17441744
17451745 =head1 VERSION
17461746
1747 This document refers to version 0.37 of List::Compare. This version was
1748 released June 07, 2008.
1747 This document refers to version 0.38 of List::Compare. This version was
1748 released September 05, 2013.
17491749
17501750 =head1 SYNOPSIS
17511751
31613161
31623162 =head1 SUPPORT
31633163
3164 Support for List::Compare is now provided by mailing list:
3165 L<http://thenceforward.net/cgi-bin/mailman/listinfo/list-compare>.
3166
3167 Please report any bugs by mail to C<bug-ExtUtils-ModuleMaker@rt.cpan.org>
3164 Please report any bugs by mail to C<bug-List-Compare@rt.cpan.org>
31683165 or through the web interface at L<http://rt.cpan.org>.
31693166
31703167 =head1 AUTHOR
31723169 James E. Keenan (jkeenan@cpan.org). When sending correspondence, please
31733170 include 'List::Compare' or 'List-Compare' in your subject line.
31743171
3175 Creation date: May 20, 2002. Last modification date: June 07, 2008.
3172 Creation date: May 20, 2002. Last modification date: September 05, 2013.
31763173
31773174 =head1 COPYRIGHT
31783175
3179 Copyright (c) 2002-06 James E. Keenan. United States. All rights reserved.
3176 Copyright (c) 2002-13 James E. Keenan. United States. All rights reserved.
31803177 This is free software and may be distributed under the same terms as Perl
31813178 itself.
31823179