94 lines
3.2 KiB
RPMSpec
94 lines
3.2 KiB
RPMSpec
#
|
|
# spec file for package perl-Dist-Zilla-Plugin-Authority
|
|
#
|
|
# 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 Dist-Zilla-Plugin-Authority
|
|
Name: perl-Dist-Zilla-Plugin-Authority
|
|
Version: 1.9.0
|
|
Release: 0
|
|
# 1.009 -> normalize -> 1.9.0
|
|
%define cpan_version 1.009
|
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
|
Summary: Add the $AUTHORITY variable and metadata to your distribution
|
|
URL: https://metacpan.org/release/%{cpan_name}
|
|
Source0: https://cpan.metacpan.org/authors/id/A/AP/APOCAL/%{cpan_name}-%{cpan_version}.tar.gz
|
|
Source100: README.md
|
|
BuildArch: noarch
|
|
BuildRequires: perl
|
|
BuildRequires: perl-macros
|
|
BuildRequires: perl(Dist::Zilla::Role::FileFinderUser) >= 4.102345
|
|
BuildRequires: perl(Dist::Zilla::Role::FileMunger) >= 4.102345
|
|
BuildRequires: perl(Dist::Zilla::Role::MetaProvider) >= 4.102345
|
|
BuildRequires: perl(Dist::Zilla::Role::PPI) >= 4.300001
|
|
BuildRequires: perl(Dist::Zilla::Util)
|
|
BuildRequires: perl(File::HomeDir)
|
|
BuildRequires: perl(Module::Build) >= 0.28
|
|
BuildRequires: perl(Moose) >= 1.03
|
|
BuildRequires: perl(Moose::Util::TypeConstraints) >= 1.01
|
|
BuildRequires: perl(PPI) >= 1.206
|
|
BuildRequires: perl(Test::More) >= 0.88
|
|
Requires: perl(Dist::Zilla::Role::FileFinderUser) >= 4.102345
|
|
Requires: perl(Dist::Zilla::Role::FileMunger) >= 4.102345
|
|
Requires: perl(Dist::Zilla::Role::MetaProvider) >= 4.102345
|
|
Requires: perl(Dist::Zilla::Role::PPI) >= 4.300001
|
|
Requires: perl(Dist::Zilla::Util)
|
|
Requires: perl(File::HomeDir)
|
|
Requires: perl(Moose) >= 1.03
|
|
Requires: perl(Moose::Util::TypeConstraints) >= 1.01
|
|
Requires: perl(PPI) >= 1.206
|
|
Provides: perl(Dist::Zilla::Plugin::Authority) = %{version}
|
|
%undefine __perllib_provides
|
|
%{perl_requires}
|
|
|
|
%description
|
|
This plugin adds the authority data to your distribution. It adds the data
|
|
to your modules and metadata. Normally it looks for the PAUSE author id in
|
|
your Dist::Zilla configuration. If you want to override it, please use the
|
|
'authority' attribute.
|
|
|
|
# In your dist.ini:
|
|
[Authority]
|
|
|
|
This code will be added to any package declarations in your perl files:
|
|
|
|
our $AUTHORITY = 'cpan:APOCAL';
|
|
|
|
Your metadata ( META.yml or META.json ) will have an entry looking like
|
|
this:
|
|
|
|
x_authority => 'cpan:APOCAL'
|
|
|
|
%prep
|
|
%autosetup -n %{cpan_name}-%{cpan_version}
|
|
|
|
%build
|
|
perl Build.PL --installdirs=vendor
|
|
./Build build --flags=%{?_smp_mflags}
|
|
|
|
%check
|
|
./Build test
|
|
|
|
%install
|
|
./Build install --destdir=%{buildroot} --create_packlist=0
|
|
%perl_gen_filelist
|
|
|
|
%files -f %{name}.files
|
|
%doc AUTHOR_PLEDGE Changes CommitLog doap.xml examples README
|
|
%license LICENSE
|
|
|
|
%changelog
|