|
|
|
@ -1,6 +1,6 @@
|
|
|
|
|
Name: perl-MooseX-Getopt
|
|
|
|
|
Version: 0.13
|
|
|
|
|
Release: 1%{?dist}
|
|
|
|
|
Release: 2%{?dist}
|
|
|
|
|
Summary: Moose role for processing command line options
|
|
|
|
|
License: GPL+ or Artistic
|
|
|
|
|
Group: Development/Libraries
|
|
|
|
@ -12,7 +12,8 @@ Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $versi
|
|
|
|
|
|
|
|
|
|
BuildRequires: perl(ExtUtils::MakeMaker)
|
|
|
|
|
BuildRequires: perl(Getopt::Long::Descriptive)
|
|
|
|
|
BuildRequires: perl(Getopt::Long) >= 2.37
|
|
|
|
|
# 2.35 is what we have in F-8 perl -- tests all pass
|
|
|
|
|
BuildRequires: perl(Getopt::Long) >= 2.35
|
|
|
|
|
BuildRequires: perl(Moose) >= 0.43
|
|
|
|
|
|
|
|
|
|
# tests...
|
|
|
|
@ -31,6 +32,8 @@ objects using parameters passed in from the command line.
|
|
|
|
|
%prep
|
|
|
|
|
%setup -q -n MooseX-Getopt-%{version}
|
|
|
|
|
|
|
|
|
|
perl -pi -e 's/2.37/2.35/' Makefile.PL
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
@ -58,6 +61,10 @@ rm -rf %{buildroot}
|
|
|
|
|
%{_mandir}/man3/*
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
* Thu Jul 10 2008 Chris Weyl <cweyl@alumni.drew.edu> 0.13-2
|
|
|
|
|
- tweak Getopt::Long dep to 2.35; passes tests just fine with 2.35, and that's
|
|
|
|
|
what we have in F-8 perl
|
|
|
|
|
|
|
|
|
|
* Sat Jun 28 2008 Chris Weyl <cweyl@alumni.drew.edu> 0.13-1
|
|
|
|
|
- update to 0.13
|
|
|
|
|
- switch to Module::Install invocations, rather than Module::Build
|
|
|
|
|