b770d89011
Use build conditions as described were requested in SR#241475 OBS-URL: https://build.opensuse.org/request/show/242476 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-ExtUtils-Helpers?expand=0&rev=6
82 lines
2.4 KiB
RPMSpec
82 lines
2.4 KiB
RPMSpec
#
|
|
# spec file for package perl-ExtUtils-Helpers
|
|
#
|
|
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# 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 http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%bcond_without test
|
|
|
|
Name: perl-ExtUtils-Helpers
|
|
Version: 0.022
|
|
Release: 0
|
|
%define cpan_name ExtUtils-Helpers
|
|
Summary: Various portability utilities for module builders
|
|
License: Artistic-1.0 or GPL-1.0+
|
|
Group: Development/Libraries/Perl
|
|
Url: http://search.cpan.org/dist/ExtUtils-Helpers/
|
|
Source: http://www.cpan.org/authors/id/L/LE/LEONT/%{cpan_name}-%{version}.tar.gz
|
|
BuildArch: noarch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: perl
|
|
BuildRequires: perl-macros
|
|
%if %{with test}
|
|
BuildRequires: perl(Cwd)
|
|
BuildRequires: perl(File::Spec)
|
|
BuildRequires: perl(IO::Handle)
|
|
BuildRequires: perl(IPC::Open3)
|
|
BuildRequires: perl(Test::More) >= 0.88
|
|
%endif
|
|
BuildRequires: perl(Carp)
|
|
BuildRequires: perl(Exporter) >= 5.57
|
|
BuildRequires: perl(File::Basename)
|
|
BuildRequires: perl(File::Spec::Functions)
|
|
BuildRequires: perl(Module::Load)
|
|
BuildRequires: perl(Text::ParseWords)
|
|
Requires: perl(Carp)
|
|
Requires: perl(Exporter) >= 5.57
|
|
Requires: perl(File::Basename)
|
|
Requires: perl(File::Copy)
|
|
Requires: perl(File::Spec::Functions)
|
|
Requires: perl(Module::Load)
|
|
Requires: perl(Text::ParseWords)
|
|
%{perl_requires}
|
|
|
|
%description
|
|
This module provides various portable helper functions for module building
|
|
modules.
|
|
|
|
%prep
|
|
%setup -q -n %{cpan_name}-%{version}
|
|
|
|
%build
|
|
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
|
%{__make} %{?_smp_mflags}
|
|
|
|
%if %{with test}
|
|
%check
|
|
%{__make} test
|
|
%endif
|
|
|
|
%install
|
|
%perl_make_install
|
|
%perl_process_packlist
|
|
%perl_gen_filelist
|
|
|
|
%files -f %{name}.files
|
|
%defattr(-,root,root,755)
|
|
%doc Changes LICENSE README
|
|
|
|
%changelog
|