[perl-Module-Build-Tiny] Initial import (perl-Module-Build-Tiny-0.017-2)

Paul Howarth pghmcfc at fedoraproject.org
Tue Apr 23 15:50:54 UTC 2013


commit bf537ebe60383d409ceba4a9796ffd4cae7c009e
Author: Paul Howarth <paul at city-fan.org>
Date:   Tue Apr 23 16:49:46 2013 +0100

    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.

 .gitignore                  |    1 +
 perl-Module-Build-Tiny.spec |   96 +++++++++++++++++++++++++++++++++++++++++++
 sources                     |    1 +
 3 files changed, 98 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..ff85a60 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/Module-Build-Tiny-[0-9.]*.tar.gz
diff --git a/perl-Module-Build-Tiny.spec b/perl-Module-Build-Tiny.spec
new file mode 100644
index 0000000..da5937a
--- /dev/null
+++ b/perl-Module-Build-Tiny.spec
@@ -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 at 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 at 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 at 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 at city-fan.org> - 0.013-2
+- Sanitize for Fedora submission
+
+* Mon Apr  1 2013 Paul Howarth <paul at city-fan.org> - 0.013-1
+- Initial RPM version
diff --git a/sources b/sources
index e69de29..659fe36 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+ef0334c605e847fa4c81d05fa5af76ed  Module-Build-Tiny-0.017.tar.gz


More information about the scm-commits mailing list