source: projects/specs/trunk/p/perl-Algorithm-C3/perl-Algorithm-C3-vl.spec @ 9089

Revision 9089, 3.7 KB checked in by inagaki, 9 years ago (diff)

2014-11-15 Ryoichi INAGAKI <ryo1@…>

  • perl-Algorithm-C3, perl-Class-Inspector, perl-Hook-LexWrap?, perl-Tie-IxHash?: updated
  • perl-Algorithm-Diff, perl-JSON-XS, perl-PPI, perl-Test-SubCalls?, perl-Text-Diff: rebuilt


Line 
1Name:           perl-Algorithm-C3
2Version:        0.10
3Release:        1%{?_dist_release}
4Summary:        Module for merging hierarchies using the C3 algorithm
5License:        GPL+ or Artistic
6Group:          Development/Libraries
7URL:            http://search.cpan.org/dist/Algorithm-C3/
8Source0:        http://search.cpan.org/CPAN/authors/id/F/FL/FLORA/Algorithm-C3-%{version}.tar.gz
9BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
10BuildArch:      noarch
11# Build
12BuildRequires:  perl(Module::Build)
13# Module
14BuildRequires:  perl(Carp) >= 0.01
15# Test
16BuildRequires:  perl(Test::More) >= 0.47
17BuildRequires:  perl(Test::Pod)
18BuildRequires:  perl(Test::Pod::Coverage)
19# Runtime
20Requires:       perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
21
22Vendor:         Project Vine
23Distribution:   Vine Linux
24
25%description
26This module implements the C3 algorithm.  Most of the uses I have for C3
27revolve around class building and metamodels but it could also be used for
28things like dependency resolution as well since it tends to do such a nice
29job of preserving local precedence orderings.
30
31%prep
32%setup -q -n Algorithm-C3-%{version}
33
34%build
35perl Makefile.PL INSTALLDIRS=vendor
36make %{?_smp_mflags}
37
38%install
39rm -rf %{buildroot}
40make pure_install DESTDIR=%{buildroot}
41find %{buildroot} -type f -name .packlist -exec rm -f {} \;
42find %{buildroot} -depth -type d -exec rmdir {} \; 2>/dev/null
43%{_fixperms} %{buildroot}
44
45%check
46make test
47
48%clean
49rm -rf %{buildroot}
50
51%files
52%defattr(-,root,root,-)
53%doc Changes README t/
54%{perl_vendorlib}/Algorithm/
55%{_mandir}/man3/Algorithm::C3.3pm*
56
57%changelog
58* Sat Nov 15 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 0.10-1
59- updated to 0.10
60- built with perl 5.16.3
61- added Vendor and Distribution tag
62
63* Mon Mar 05 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.08-1
64- initial build for Vine Linux
65
66* Mon Jan 16 2012 Paul Howarth <paul@city-fan.org> - 0.08-9
67- Spec clean-up:
68  - Make %%files list more explicit
69  - Categorize build requirements for build/module/test
70  - Don't use macros for commands
71  - Use tabs
72  - Fix typo in %%description
73
74* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.08-8
75- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
76
77* Mon Jun 20 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.08-7
78- Perl mass rebuild
79
80* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.08-6
81- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
82
83* Tue Dec 14 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.08-5
84- Rebuild to fixproblems with vendorarch/lib (#661697)
85
86* Thu Apr 29 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.08-4
87- Mass rebuild with perl-5.12.0
88
89* Mon Dec  7 2009 Stepan Kasal <skasal@redhat.com> - 0.08-3
90- Rebuild against perl 5.10.1
91
92* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.08-2
93- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
94
95* Sun Jun 07 2009 Chris Weyl <cweyl@alumni.drew.edu> - 0.08-1
96- Auto-update to 0.08 (by cpan-spec-update 0.01)
97- Altered br on perl(Test::More) (0 => 0.47)
98- Added a new br on perl(Carp) (version 0.01)
99
100* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.07-3
101- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
102
103* Tue Mar 04 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.07-2
104- Rebuild for new perl
105
106* Thu May 31 2007 Chris Weyl <cweyl@alumni.drew.edu> - 0.07-1
107- Update to 0.07
108- Include t/ in doc
109- Minor spec reworkage to deal with the once and future perl split
110
111* Tue Nov 21 2006 Chris Weyl <cweyl@alumni.drew.edu> - 0.06-1
112- Update to 0.06
113
114* Wed Sep 06 2006 Chris Weyl <cweyl@alumni.drew.edu> - 0.05-2
115- Bump
116
117* Tue Sep 05 2006 Chris Weyl <cweyl@alumni.drew.edu> - 0.05-1
118- Specfile autogenerated by cpanspec 1.69.1
Note: See TracBrowser for help on using the repository browser.