You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
2.7 KiB
92 lines
2.7 KiB
Name: perl-Algorithm-C3
|
|
Version: 0.08
|
|
Release: 4%{?dist}
|
|
Summary: Module for merging hierarchies using the C3 algorithm
|
|
License: GPL+ or Artistic
|
|
Group: Development/Libraries
|
|
URL: http://search.cpan.org/dist/Algorithm-C3/
|
|
Source0: http://search.cpan.org/CPAN/authors/id/F/FL/FLORA/Algorithm-C3-%{version}.tar.gz
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
BuildArch: noarch
|
|
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
|
|
|
# core
|
|
BuildRequires: perl(Test::More) >= 0.47
|
|
# cpan
|
|
BuildRequires: perl(Module::Build)
|
|
# for testing....
|
|
BuildRequires: perl(Test::Pod)
|
|
BuildRequires: perl(Test::Pod::Coverage)
|
|
|
|
|
|
### auto-added brs!
|
|
BuildRequires: perl(Carp) >= 0.01
|
|
|
|
%description
|
|
This module implements the C3 algorithm. Most of the uses I have for C3
|
|
revolve around class building and metamodels, but it could also be used for
|
|
things like dependency resolution as well since it tends to do such a nice
|
|
job of preserving local precendence orderings.
|
|
|
|
%prep
|
|
%setup -q -n Algorithm-C3-%{version}
|
|
|
|
%build
|
|
%{__perl} Build.PL installdirs=vendor
|
|
./Build
|
|
|
|
%install
|
|
rm -rf %{buildroot}
|
|
|
|
./Build install destdir=%{buildroot} create_packlist=0
|
|
find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null \;
|
|
|
|
%{_fixperms} %{buildroot}/*
|
|
|
|
%check
|
|
./Build test
|
|
|
|
%clean
|
|
rm -rf %{buildroot}
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%doc Changes README t/
|
|
%{perl_vendorlib}/*
|
|
%{_mandir}/man3/*
|
|
|
|
%changelog
|
|
* Thu Apr 29 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.08-4
|
|
- Mass rebuild with perl-5.12.0
|
|
|
|
* Mon Dec 7 2009 Stepan Kasal <skasal@redhat.com> - 0.08-3
|
|
- rebuild against perl 5.10.1
|
|
|
|
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.08-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
* Sun Jun 07 2009 Chris Weyl <cweyl@alumni.drew.edu> 0.08-1
|
|
- auto-update to 0.08 (by cpan-spec-update 0.01)
|
|
- altered br on perl(Test::More) (0 => 0.47)
|
|
- added a new br on perl(Carp) (version 0.01)
|
|
|
|
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.07-3
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
* Tue Mar 04 2008 Tom "spot" Callaway <tcallawa@redhat.com> 0.07-2
|
|
- rebuild for new perl
|
|
|
|
* Thu May 31 2007 Chris Weyl <cweyl@alumni.drew.edu> 0.07-1
|
|
- update to 0.07
|
|
- include t/ in doc
|
|
- minor spec reworkage to deal with the once and future perl split
|
|
|
|
* Tue Nov 21 2006 Chris Weyl <cweyl@alumni.drew.edu> 0.06-1
|
|
- update to 0.06
|
|
|
|
* Wed Sep 06 2006 Chris Weyl <cweyl@alumni.drew.edu> 0.05-2
|
|
- bump
|
|
|
|
* Tue Sep 05 2006 Chris Weyl <cweyl@alumni.drew.edu> 0.05-1
|
|
- Specfile autogenerated by cpanspec 1.69.1.
|