forked from pool/perl-XML-Writer
- updated to 0.622
- Fix bug where output is an IO::Scalar.
- Include selfcontained_output.t in the distribution.
- Allow OUTPUT => 'self' (#81327).
OBS-URL: https://build.opensuse.org/request/show/177555
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-XML-Writer?expand=0&rev=30
78 lines
2.6 KiB
RPMSpec
78 lines
2.6 KiB
RPMSpec
#
|
|
# spec file for package perl-XML-Writer
|
|
#
|
|
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: perl-XML-Writer
|
|
Version: 0.622
|
|
Release: 0
|
|
%define cpan_name XML-Writer
|
|
Summary: Perl extension for writing XML documents.
|
|
License: MIT
|
|
Group: Development/Libraries/Perl
|
|
Url: http://search.cpan.org/dist/XML-Writer/
|
|
Source: http://www.cpan.org/authors/id/J/JO/JOSEPHW/%{cpan_name}-%{version}.tar.gz
|
|
BuildArch: noarch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: perl
|
|
BuildRequires: perl-macros
|
|
#BuildRequires: perl(Algorithm::Diff)
|
|
#BuildRequires: perl(DateTime)
|
|
#BuildRequires: perl(IO::Scalar)
|
|
#BuildRequires: perl(URI::URL)
|
|
#BuildRequires: perl(XML::Writer)
|
|
%{perl_requires}
|
|
|
|
%description
|
|
XML::Writer is a helper module for Perl programs that write an XML
|
|
document. The module handles all escaping for attribute values and
|
|
character data and constructs different types of markup, such as tags,
|
|
comments, and processing instructions.
|
|
|
|
By default, the module performs several well-formedness checks to catch
|
|
errors during output. This behaviour can be extremely useful during
|
|
development and debugging, but it can be turned off for production-grade
|
|
code.
|
|
|
|
The module can operate either in regular mode in or Namespace processing
|
|
mode. In Namespace mode, the module will generate Namespace Declarations
|
|
itself, and will perform additional checks on the output.
|
|
|
|
Additional support is available for a simplified data mode with no mixed
|
|
content: newlines are automatically inserted around elements and elements
|
|
can optionally be indented based as their nesting level.
|
|
|
|
%prep
|
|
%setup -q -n %{cpan_name}-%{version}
|
|
|
|
%build
|
|
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
|
%{__make} %{?_smp_mflags}
|
|
|
|
%check
|
|
%{__make} test
|
|
|
|
%install
|
|
%perl_make_install
|
|
%perl_process_packlist
|
|
%perl_gen_filelist
|
|
|
|
%files -f %{name}.files
|
|
%defattr(-,root,root,755)
|
|
%doc Changes examples LICENSE README TODO
|
|
|
|
%changelog
|