Files
perl-Dist-Zilla-Plugin-Modu…/perl-Dist-Zilla-Plugin-ModuleBuild-XSOrPP.spec

77 lines
2.5 KiB
RPMSpec
Raw Permalink Normal View History

#
# spec file for package perl-Dist-Zilla-Plugin-ModuleBuild-XSOrPP
#
# 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-ModuleBuild-XSOrPP
Name: perl-Dist-Zilla-Plugin-ModuleBuild-XSOrPP
Version: 0.40.0
Release: 0
# 0.04 -> normalize -> 0.40.0
%define cpan_version 0.04
License: Artistic-2.0
Summary: Add a --pp option to your Build.PL to force an XS-less build
URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/%{cpan_name}-%{cpan_version}.tar.gz
Source1: cpanspec.yml
2025-08-12 18:13:42 +02:00
Source100: README.md
BuildArch: noarch
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(Dist::Zilla) >= 4.0
BuildRequires: perl(Dist::Zilla::Plugin::InlineFiles)
BuildRequires: perl(Dist::Zilla::Plugin::ModuleBuild)
BuildRequires: perl(Moose)
BuildRequires: perl(Test::More) >= 0.88
Requires: perl(Dist::Zilla) >= 4.0
Requires: perl(Dist::Zilla::Plugin::InlineFiles)
Requires: perl(Dist::Zilla::Plugin::ModuleBuild)
Requires: perl(Moose)
Provides: perl(Dist::Zilla::Plugin::ModuleBuild::XSOrPP) = %{version}
%undefine __perllib_provides
%{perl_requires}
%description
Use this plugin instead of the regular 'ModuleBuild' plugin. It generates a
_Build.PL_ which is smart about building XS. It can accept a '--pp' flag to
forcibly disable XS compilation. If no flag is passed, it tests whether the
installing machine has a working compiler, and disables XS if this test
fails.
Obviously, this is only useful if your module can work without its XS
component.
%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 Changes README
%license LICENSE
%changelog