2011-01-21 20:06:16 +00:00
|
|
|
#
|
2011-11-18 09:10:15 +00:00
|
|
|
# spec file for package perl-Dist-Zilla-Plugin-ModuleBuild-XSOrPP
|
2011-01-21 20:06:16 +00:00
|
|
|
#
|
2024-07-20 22:13:03 +00:00
|
|
|
# Copyright (c) 2024 SUSE LLC
|
2011-01-21 20:06:16 +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.
|
|
|
|
|
2024-07-20 22:13:03 +00:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2011-01-21 20:06:16 +00:00
|
|
|
#
|
|
|
|
|
2011-11-18 09:10:15 +00:00
|
|
|
|
2024-07-20 22:13:03 +00:00
|
|
|
%define cpan_name Dist-Zilla-Plugin-ModuleBuild-XSOrPP
|
2011-01-21 20:06:16 +00:00
|
|
|
Name: perl-Dist-Zilla-Plugin-ModuleBuild-XSOrPP
|
2024-07-20 22:13:03 +00:00
|
|
|
Version: 0.40.0
|
2015-04-17 05:04:35 +00:00
|
|
|
Release: 0
|
2024-07-20 22:13:03 +00:00
|
|
|
# 0.04 -> normalize -> 0.40.0
|
|
|
|
%define cpan_version 0.04
|
2015-04-17 05:04:35 +00:00
|
|
|
License: Artistic-2.0
|
2024-07-20 22:13:03 +00:00
|
|
|
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
|
2015-04-17 05:04:35 +00:00
|
|
|
Source1: cpanspec.yml
|
2025-08-12 18:13:42 +02:00
|
|
|
Source100: README.md
|
2015-04-17 05:04:35 +00:00
|
|
|
BuildArch: noarch
|
2011-01-21 20:06:16 +00:00
|
|
|
BuildRequires: perl
|
|
|
|
BuildRequires: perl-macros
|
2015-04-17 05:04:35 +00:00
|
|
|
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)
|
2024-07-20 22:13:03 +00:00
|
|
|
Provides: perl(Dist::Zilla::Plugin::ModuleBuild::XSOrPP) = %{version}
|
|
|
|
%undefine __perllib_provides
|
2011-01-21 20:06:16 +00:00
|
|
|
%{perl_requires}
|
|
|
|
|
|
|
|
%description
|
|
|
|
Use this plugin instead of the regular 'ModuleBuild' plugin. It generates a
|
2015-04-17 05:04:35 +00:00
|
|
|
_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.
|
|
|
|
|
2011-01-21 20:06:16 +00:00
|
|
|
Obviously, this is only useful if your module can work without its XS
|
|
|
|
component.
|
|
|
|
|
|
|
|
%prep
|
2024-07-20 22:13:03 +00:00
|
|
|
%autosetup -n %{cpan_name}-%{cpan_version}
|
2011-01-21 20:06:16 +00:00
|
|
|
|
|
|
|
%build
|
2024-07-20 22:13:03 +00:00
|
|
|
perl Makefile.PL INSTALLDIRS=vendor
|
|
|
|
%make_build
|
2011-01-21 20:06:16 +00:00
|
|
|
|
|
|
|
%check
|
2024-07-20 22:13:03 +00:00
|
|
|
make test
|
2011-01-21 20:06:16 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
%perl_make_install
|
|
|
|
%perl_process_packlist
|
|
|
|
%perl_gen_filelist
|
|
|
|
|
|
|
|
%files -f %{name}.files
|
2024-07-20 22:13:03 +00:00
|
|
|
%doc Changes README
|
|
|
|
%license LICENSE
|
2011-01-21 20:06:16 +00:00
|
|
|
|
|
|
|
%changelog
|