2011-04-08 19:17:03 +00:00
|
|
|
#
|
2012-02-13 08:48:54 +00:00
|
|
|
# spec file for package perl-CPAN-Mini
|
2011-04-08 19:17:03 +00:00
|
|
|
#
|
2025-06-23 21:28:04 +00:00
|
|
|
# Copyright (c) 2025 SUSE LLC
|
2011-04-08 19:17:03 +00:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2023-09-12 15:18:56 +00:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2011-04-08 19:17:03 +00:00
|
|
|
#
|
|
|
|
|
2012-02-13 08:48:54 +00:00
|
|
|
|
2023-09-12 15:18:56 +00:00
|
|
|
%define cpan_name CPAN-Mini
|
2011-04-08 19:17:03 +00:00
|
|
|
Name: perl-CPAN-Mini
|
2025-06-23 21:28:04 +00:00
|
|
|
Version: 1.111.17
|
2012-02-13 08:48:54 +00:00
|
|
|
Release: 0
|
2025-06-23 21:28:04 +00:00
|
|
|
# 1.111017 -> normalize -> 1.111.17
|
|
|
|
%define cpan_version 1.111017
|
2023-09-12 15:18:56 +00:00
|
|
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
|
|
|
Summary: Create a minimal mirror of CPAN
|
|
|
|
URL: https://metacpan.org/release/%{cpan_name}
|
2025-06-23 21:28:04 +00:00
|
|
|
Source0: https://cpan.metacpan.org/authors/id/R/RJ/RJBS/%{cpan_name}-%{cpan_version}.tar.gz
|
2015-04-16 20:17:05 +00:00
|
|
|
Source1: cpanspec.yml
|
2025-08-12 18:12:45 +02:00
|
|
|
Source100: README.md
|
2011-04-08 19:17:03 +00:00
|
|
|
BuildArch: noarch
|
|
|
|
BuildRequires: perl
|
|
|
|
BuildRequires: perl-macros
|
|
|
|
BuildRequires: perl(Compress::Zlib) >= 1.20
|
2023-09-12 15:18:56 +00:00
|
|
|
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.78
|
2025-06-23 21:28:04 +00:00
|
|
|
BuildRequires: perl(File::HomeDir) >= 0.570
|
2011-04-08 19:17:03 +00:00
|
|
|
BuildRequires: perl(File::Path) >= 2.04
|
|
|
|
BuildRequires: perl(LWP::UserAgent) >= 5
|
|
|
|
BuildRequires: perl(Test::More) >= 0.96
|
|
|
|
BuildRequires: perl(URI) >= 1
|
|
|
|
Requires: perl(Compress::Zlib) >= 1.20
|
2025-06-23 21:28:04 +00:00
|
|
|
Requires: perl(File::HomeDir) >= 0.570
|
2011-04-08 19:17:03 +00:00
|
|
|
Requires: perl(File::Path) >= 2.04
|
|
|
|
Requires: perl(LWP::UserAgent) >= 5
|
|
|
|
Requires: perl(URI) >= 1
|
2025-06-23 21:28:04 +00:00
|
|
|
Provides: perl(CPAN::Mini) = %{version}
|
|
|
|
Provides: perl(CPAN::Mini::App) = %{version}
|
|
|
|
%undefine __perllib_provides
|
2011-04-08 19:17:03 +00:00
|
|
|
%{perl_requires}
|
|
|
|
|
|
|
|
%description
|
|
|
|
CPAN::Mini provides a simple mechanism to build and update a minimal mirror
|
|
|
|
of the CPAN on your local disk. It contains only those files needed to
|
2011-05-18 13:04:54 +00:00
|
|
|
install the newest version of every distribution. Those files are:
|
2011-04-08 19:17:03 +00:00
|
|
|
|
2023-09-12 15:18:56 +00:00
|
|
|
* 01mailrc.txt.gz
|
2011-05-18 13:04:54 +00:00
|
|
|
|
2023-09-12 15:18:56 +00:00
|
|
|
* 02packages.details.txt.gz
|
2011-05-18 13:04:54 +00:00
|
|
|
|
2023-09-12 15:18:56 +00:00
|
|
|
* 03modlist.data.gz
|
2011-05-18 13:04:54 +00:00
|
|
|
|
2023-09-12 15:18:56 +00:00
|
|
|
* the last non-developer release of every dist for every author
|
2011-04-08 19:17:03 +00:00
|
|
|
|
|
|
|
%prep
|
2025-06-23 21:28:04 +00:00
|
|
|
%autosetup -n %{cpan_name}-%{cpan_version} -p1
|
2011-04-08 19:17:03 +00:00
|
|
|
|
|
|
|
%build
|
2023-09-12 15:18:56 +00:00
|
|
|
perl Makefile.PL INSTALLDIRS=vendor
|
|
|
|
%make_build
|
2011-04-08 19:17:03 +00:00
|
|
|
|
2011-05-18 13:04:54 +00:00
|
|
|
%check
|
2023-09-12 15:18:56 +00:00
|
|
|
make test
|
2011-05-18 13:04:54 +00:00
|
|
|
|
2011-04-08 19:17:03 +00:00
|
|
|
%install
|
|
|
|
%perl_make_install
|
|
|
|
%perl_process_packlist
|
|
|
|
%perl_gen_filelist
|
|
|
|
|
|
|
|
%files -f %{name}.files
|
2023-09-12 15:18:56 +00:00
|
|
|
%doc Changes README
|
|
|
|
%license LICENSE
|
2011-04-08 19:17:03 +00:00
|
|
|
|
|
|
|
%changelog
|