Files
perl-File-DirCompare/perl-File-DirCompare.spec
2025-08-12 18:14:04 +02:00

89 lines
2.8 KiB
RPMSpec

#
# spec file for package perl-File-DirCompare
#
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%define cpan_name File-DirCompare
Name: perl-File-DirCompare
Version: 0.700.0
Release: 0
# 0.7 -> normalize -> 0.700.0
%define cpan_version 0.7
License: Artistic-1.0 OR GPL-1.0-or-later
Summary: Perl module to compare two directories using
URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/G/GA/GAVINC/%{cpan_name}-%{cpan_version}.tar.gz
Source1: cpanspec.yml
Source100: README.md
BuildArch: noarch
BuildRequires: perl
BuildRequires: perl-macros
Provides: perl(File::DirCompare) = %{version}
%undefine __perllib_provides
%{perl_requires}
%description
File::DirCompare is a perl module to compare two directories using a
callback, invoked for all files that are 'different' between the two
directories, and for any files that exist only in one or other directory
('unique' files).
File::DirCompare has a single public compare() method, with the following
signature:
File::DirCompare->compare($dir1, $dir2, $sub, $opts);
The first three arguments are required - $dir1 and $dir2 are paths to the
two directories to be compared, and $sub is the subroutine reference called
for all unique or different files. $opts is an optional hashref of options
- see OPTIONS below.
The provided subroutine is called for all unique files, and for every pair
of 'different' files encountered, with the following signature:
$sub->($file1, $file2)
where $file1 and $file2 are the paths to the two files. For 'unique' files
i.e. where a file exists in only one directory, the subroutine is called
with the other argument 'undef' i.e. for:
$sub->($file1, undef)
$sub->(undef, $file2)
the first indicates $file1 exists only in the first directory given
($dir1), and the second indicates $file2 exists only in the second
directory given ($dir2).
%prep
%autosetup -n %{cpan_name}-%{cpan_version}
%build
perl Makefile.PL INSTALLDIRS=vendor
%make_build
%check
make test
%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist
%files -f %{name}.files
%doc README TODO
%changelog