Initial import (perl-Module-Build-Tiny-0.017-2)
Many Perl distributions use a Build.PL file instead of a Makefile.PL file to drive distribution configuration, build, test and installation. Traditionally, Build.PL uses Module::Build as the underlying build system. This module provides a simple, lightweight, drop-in replacement. Whereas Module::Build has over 6,700 lines of code; this module has less than 70, yet supports the features needed by most pure-Perl distributions.
This commit is contained in:
parent
2e73c551d4
commit
bf537ebe60
1
.gitignore
vendored
1
.gitignore
vendored
@ -0,0 +1 @@
|
||||
/Module-Build-Tiny-[0-9.]*.tar.gz
|
96
perl-Module-Build-Tiny.spec
Normal file
96
perl-Module-Build-Tiny.spec
Normal file
@ -0,0 +1,96 @@
|
||||
Summary: A tiny replacement for Module::Build
|
||||
Name: perl-Module-Build-Tiny
|
||||
Version: 0.017
|
||||
Release: 2%{?dist}
|
||||
License: GPL+ or Artistic
|
||||
Group: Development/Libraries
|
||||
URL: https://github.com/Leont/module-build-tiny
|
||||
Source0: http://cpan.metacpan.org/authors/id/L/LE/LEONT/Module-Build-Tiny-%{version}.tar.gz
|
||||
BuildArch: noarch
|
||||
# Module
|
||||
BuildRequires: perl(CPAN::Meta)
|
||||
BuildRequires: perl(Exporter) >= 5.57
|
||||
BuildRequires: perl(ExtUtils::Config) >= 0.003
|
||||
BuildRequires: perl(ExtUtils::Helpers) >= 0.017
|
||||
BuildRequires: perl(ExtUtils::Install)
|
||||
BuildRequires: perl(ExtUtils::InstallPaths) >= 0.002
|
||||
BuildRequires: perl(File::Path)
|
||||
BuildRequires: perl(File::Spec::Functions)
|
||||
BuildRequires: perl(Getopt::Long)
|
||||
BuildRequires: perl(JSON::PP) >= 2
|
||||
BuildRequires: perl(Pod::Man)
|
||||
BuildRequires: perl(TAP::Harness) >= 3.0
|
||||
# Test
|
||||
BuildRequires: perl(Carp)
|
||||
BuildRequires: perl(Cwd)
|
||||
BuildRequires: perl(Data::Dumper)
|
||||
BuildRequires: perl(File::ShareDir)
|
||||
BuildRequires: perl(File::Spec)
|
||||
BuildRequires: perl(File::Temp)
|
||||
BuildRequires: perl(IO::File)
|
||||
BuildRequires: perl(Test::More)
|
||||
BuildRequires: perl(Test::Pod) >= 1.41
|
||||
# Runtime
|
||||
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
||||
|
||||
%description
|
||||
Many Perl distributions use a Build.PL file instead of a Makefile.PL file to
|
||||
drive distribution configuration, build, test and installation. Traditionally,
|
||||
Build.PL uses Module::Build as the underlying build system. This module
|
||||
provides a simple, lightweight, drop-in replacement.
|
||||
|
||||
Whereas Module::Build has over 6,700 lines of code; this module has less than
|
||||
70, yet supports the features needed by most pure-Perl distributions.
|
||||
|
||||
%prep
|
||||
%setup -q -n Module-Build-Tiny-%{version}
|
||||
|
||||
%build
|
||||
perl Build.PL --installdirs=vendor
|
||||
./Build
|
||||
|
||||
%install
|
||||
./Build install --destdir=%{buildroot}
|
||||
find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
|
||||
|
||||
%check
|
||||
RELEASE_TESTING=1 ./Build test
|
||||
|
||||
%files
|
||||
%doc Changes LICENSE README Todo
|
||||
%{perl_vendorlib}/Module/
|
||||
%{_mandir}/man3/Module::Build::Tiny.3pm*
|
||||
|
||||
%changelog
|
||||
* Tue Apr 23 2013 Paul Howarth <paul@city-fan.org> - 0.017-2
|
||||
- Updates following package review (#947455)
|
||||
- BR: perl(ExtUtils::Config) for module
|
||||
- BR: perl(File::ShareDir) for test suite
|
||||
- Drop BR: perl(File::Basename) and perl(File::Find), not dual-lived
|
||||
|
||||
* Mon Apr 15 2013 Paul Howarth <paul@city-fan.org> - 0.017-1
|
||||
- Update to 0.017
|
||||
- Switched back from JSON to JSON::PP
|
||||
- Remove dependency on File::Find::Rule
|
||||
- Switched back to ExtUtils::Helpers for detildefy
|
||||
- Drop .modulebuildrc support per Lancaster consensus
|
||||
- Fix loading of File::Find
|
||||
- Fix redefined warning for find
|
||||
- Drop BR: perl(ExtUtils::BuildRC), perl(File::Find::Rule), perl(File::HomeDir),
|
||||
perl(File::pushd)
|
||||
- BR: perl(JSON::PP) rather than perl(JSON), and perl(Pod::Man)
|
||||
- Bump perl(ExtUtils::Helpers) version requirement to 0.017 to avoid the need
|
||||
for a workaround for misplaced manpage
|
||||
|
||||
* Thu Apr 4 2013 Paul Howarth <paul@city-fan.org> - 0.014-1
|
||||
- Update to 0.014
|
||||
- Added sharedir support
|
||||
- Fixed Synopsis
|
||||
- Make blib/arch, to satisfy blib.pm
|
||||
- Removed dependencies on Test::Exception, Capture::Tiny and File::Slurp
|
||||
|
||||
* Mon Apr 1 2013 Paul Howarth <paul@city-fan.org> - 0.013-2
|
||||
- Sanitize for Fedora submission
|
||||
|
||||
* Mon Apr 1 2013 Paul Howarth <paul@city-fan.org> - 0.013-1
|
||||
- Initial RPM version
|
Loading…
Reference in New Issue
Block a user