source: projects/specs/trunk/p/perl-XML-Writer/perl-XML-Writer-vl.spec @ 9124

Revision 9124, 3.4 KB checked in by inagaki, 9 years ago (diff)

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

  • perl-Perl-Critic-More: rebuilt
  • perl-XML-{Dumper, Filter-BufferText?, Grove, XPath}: rebuilt
  • perl-XML-{LibXML, LibXSLT, SAX-Writer, Writer}: updated
  • perl-YAML-LibYAML: updated


Line 
1Name:           perl-XML-Writer
2Version:        0.625
3Release:        1%{?_dist_release}
4Summary:        A simple Perl module for writing XML documents
5
6Group:          Development/Libraries
7License:        COO 1.0
8URL:            http://search.cpan.org/dist/XML-Writer/
9Source0:        http://www.cpan.org/authors/id/J/JO/JOSEPHW/XML-Writer-%{version}.tar.gz
10
11BuildRoot:      %{_tmppath}/%{name}-%{version}-root
12BuildArch:      noarch
13BuildRequires:  perl(ExtUtils::MakeMaker)
14BuildRequires:  perl(Test::Pod)
15BuildRequires:  perl(Test::Pod::Coverage)
16Requires:  perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
17
18%description
19XML::Writer is a simple Perl module for writing XML documents: it
20takes care of constructing markup and escaping data correctly, and by
21default, it also performs a significant amount of well-formedness
22checking on the output, to make certain (for example) that start and
23end tags match, that there is exactly one document element, and that
24there are not duplicate attribute names.
25
26
27%prep
28%setup -q -n XML-Writer-%{version}
29
30
31%build
32%{__perl} Makefile.PL INSTALLDIRS=vendor
33make %{?_smp_mflags}
34
35
36%install
37rm -rf $RPM_BUILD_ROOT
38make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
39find $RPM_BUILD_ROOT -type f -a \( -name .packlist \
40  -o \( -name '*.bs' -a -empty \) \) -exec rm -f {} ';'
41find $RPM_BUILD_ROOT -type d -depth -exec rmdir {} 2>/dev/null ';'
42
43
44%check
45make test
46
47
48%clean
49rm -rf $RPM_BUILD_ROOT
50
51
52%files
53%defattr(-,root,root,-)
54%doc Changes README TODO
55%{perl_vendorlib}/*
56%{_mandir}/man3/*.3*
57
58
59%changelog
60* Sun Nov 30 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 0.625-1
61- new upstream relase
62- built with perl 5.16.3
63
64* Sat Feb  4 2012 KATO Masashi <mkato@par.odn.ne.jp> 0.606-6
65- Added BR: perl-Test-Pod, perl-Test-Pod-Coverage
66
67* Mon Jan 25 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.606-5
68- Initial build for Vine Linux
69
70* Mon Dec  7 2009 Stepan Kasal <skasal@redhat.com> - 0.606-4
71- rebuild against perl 5.10.1
72
73* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.606-3
74- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
75
76* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.606-2
77- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
78
79* Mon Feb  2 2009 Alex Lancaster <alexlan[AT]fedoraproject org> - 0.606-1
80- Update to upstream 0.606
81- Clarify license is MIT
82
83* Tue Mar 18 2008 Alex Lancaster <alexlan[AT]fedoraproject org> - 0.604-1
84- New upstream release (0.604)
85
86* Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.603-4
87- Rebuild for perl 5.10 (again)
88
89* Sun Jan 20 2008 Tom "spot" Callaway <tcallawa@redhat.com> 0.603-3
90- rebuild for new perl
91
92* Thu Aug 23 2007 Alex Lancaster <alexl@users.sourceforge.net> 0.603-2
93- License tag to "GPL+ or Artistic" as per new guidelines.
94
95* Sat Aug 18 2007 Alex Lancaster <alexl@users.sourceforge.net> 0.603-1
96- Update to latest upstream
97
98* Mon Mar 26 2007 Alex Lancaster <alexl@users.sourceforge.net> 0.602-3
99- Fixed %check
100
101* Wed Mar 23 2007 Alex Lancaster <alexl@users.sourceforge.net> 0.602-2
102- Update BR as per suggestions from review by Ralf Corsepius
103
104* Wed Mar 23 2007 Alex Lancaster <alexl@users.sourceforge.net> 0.602-1
105- Update to 0.602
106
107* Wed Apr 06 2005 Hunter Matthews <thm@duke.edu> 0.531-1
108- Review suggestions from José Pedro Oliveira
109
110* Tue Mar 22 2005 Hunter Matthews <thm@duke.edu> 0.531-1
111- Initial build.
Note: See TracBrowser for help on using the repository browser.