File perl-YAML-Syck.spec of Package perl-YAML-Syck
#
# spec file for package perl-YAML-Syck (Version 1.14)
#
# Copyright (c) 2010 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/
#
# norootforbuild
%bcond_with opt
Name: perl-YAML-Syck
%define cpan_name YAML-Syck
Summary: Fast, lightweight YAML loader and dumper
Version: 1.14
Release: 2
License: MIT
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/YAML-Syck/
#Source: http://www.cpan.org/modules/by-module/YAML/YAML-Syck-%{version}.tar.gz
Source: %{cpan_name}-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%{perl_requires}
BuildRequires: perl
BuildRequires: perl-macros
%if %{with opt}
BuildRequires: perl(Devel::Leak)
%endif
BuildRequires: perl(Scalar::Util)
BuildRequires: perl(Test::More)
Requires: perl(Scalar::Util)
%description
This module provides a Perl interface to the libsyck data serialization
library. It exports the Dump and Load functions for converting Perl data
structures to YAML strings, and the other way around.
NOTE: If you are working with other language's YAML/Syck bindings (such as
Ruby), please set $YAML::Syck::ImplicitTyping to 1 before calling the
Load/Dump functions. The default setting is for preserving
backward-compatibility with YAML.pm.
Authors:
--------
Audrey Tang <cpan@audreyt.org>
%prep
%setup -q -n %{cpan_name}-%{version}
%{__sed} -i '/^auto_install/d' Makefile.PL
%build
%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS"
%{__make} %{?_smp_mflags}
%check
%if %{with opt}
AUTOMATED_TESTING=1 %{__make} test
%else
%{__make} test
%endif
%install
%perl_make_install
%perl_process_packlist
# remove zero sized *.bs files
find $RPM_BUILD_ROOT -type f -name '*.bs' -a -size 0 -exec rm -f {} \;
%perl_gen_filelist
%clean
%{__rm} -rf $RPM_BUILD_ROOT
%files -f %{name}.files
%defattr(-,root,root,-)
%doc Changes COMPATIBILITY COPYING README
%changelog