File: compare.pas

package info (click to toggle)
licenserecon 12.0
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 372 kB
  • sloc: pascal: 1,375; makefile: 33; perl: 31; xml: 9; sh: 2
file content (40 lines) | stat: -rw-r--r-- 645 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Reconcile DEP-5 debian/copyright to licensecheck
//
// Copyright : 2023-2025 P Blackman
// License   : BSD-2-clause
//

unit compare;
{$mode delphi}

interface

procedure CompareLicenses;


implementation uses rstrings, options, filedata;


procedure CompareLicenses;
var GotOne : Boolean;
begin
    GotOne := CheckFiles;

    if GotOne then
    begin
        Writeln;

        if Option_Short then
        begin
            Writeln ('Short ' + rsSiu); // Not all differences shown
            Writeln;
        end;

        Halt (3);
    end
    else
    if not Option_Format then
        Writeln (rsNdf); // No differences found
end;

end.