92 lines
3.1 KiB
RPMSpec
92 lines
3.1 KiB
RPMSpec
#
|
|
# spec file for package perl-Parse-CPAN-Packages-Fast
|
|
#
|
|
# 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 Parse-CPAN-Packages-Fast
|
|
Name: perl-Parse-CPAN-Packages-Fast
|
|
Version: 0.90.0
|
|
Release: 0
|
|
# 0.09 -> normalize -> 0.90.0
|
|
%define cpan_version 0.09
|
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
|
Summary: Parse CPAN's package index
|
|
URL: https://metacpan.org/release/%{cpan_name}
|
|
Source0: https://cpan.metacpan.org/authors/id/S/SR/SREZIC/%{cpan_name}-%{cpan_version}.tar.gz
|
|
Source1: cpanspec.yml
|
|
Source100: README.md
|
|
BuildArch: noarch
|
|
BuildRequires: perl
|
|
BuildRequires: perl-macros
|
|
BuildRequires: perl(CPAN::DistnameInfo)
|
|
BuildRequires: perl(CPAN::Version)
|
|
BuildRequires: perl(IO::Uncompress::Gunzip)
|
|
Requires: perl(CPAN::DistnameInfo)
|
|
Requires: perl(CPAN::Version)
|
|
Requires: perl(IO::Uncompress::Gunzip)
|
|
Provides: perl(Parse::CPAN::Packages::Fast) = %{version}
|
|
Provides: perl(Parse::CPAN::Packages::Fast::Distribution)
|
|
Provides: perl(Parse::CPAN::Packages::Fast::Package)
|
|
%undefine __perllib_provides
|
|
%{perl_requires}
|
|
|
|
%description
|
|
This is a largely API compatible rewrite of Parse::CPAN::Packages.
|
|
|
|
Notable differences are
|
|
|
|
* * The method add_package of
|
|
Parse::CPAN::Packages::Fast::Distribution is not implemented
|
|
|
|
* * Parse::CPAN::Packages::Fast::Distribution is really a
|
|
CPAN::DistnameInfo (but this one is compatible with
|
|
Parse::CPAN::Packages::Distribution>
|
|
|
|
* * A Parse::CPAN::Packages::Fast::Distribution object does not
|
|
have its packages included in the data structure, but it's necessary
|
|
to use the 'contains' method. Likewise, a
|
|
Parse::CPAN::Packages::Fast::Package object does not include the
|
|
containing distribution in the data structure, but it's necessary to
|
|
use the 'distribution' method.
|
|
|
|
* * The 'new' constructor may be called without the path to the
|
|
'02packages.details.txt' file. In this case CPAN.pm's logic
|
|
is used to find an existing packages file. Note that this might be
|
|
interactive (i.e. if CPAN.pm was never configured, or needs
|
|
reconfiguration), so don't do this in batch systems.
|
|
|
|
%prep
|
|
%autosetup -n %{cpan_name}-%{cpan_version}
|
|
|
|
find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path "*/script/*" ! -path "*/scripts/*" ! -name "configure" -print0 | xargs -0 chmod 644
|
|
|
|
%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 Changes README
|
|
|
|
%changelog
|