perl-Config-IniFiles/perl-Config-IniFiles.spec
Stephan Kulow 6cd4066c56 Accepting request 122913 from home:vitezslav_cizek:branches:devel:languages:perl
- update to 2.75
- fixes CVE-2012-2451 (bnc#760459)
  * SECURITY BUG FIX: Config::IniFiles used to write to a temporary filename
  with a predictable name ("${filename}-new") which opens the door for potential
  exploits.
  * Now requiring Fcntl (which is a core module) for SEEK_SET() and SEEK_CUR().
  * Now requiring List::MoreUtils (for any() and other functions), File::Temp
  and File::Basename .
  * Fix the test dependency (in the new t/31comments_with_spaces.t test)
  on IO::stringy (now writing it to a file).
    - This caused some CPAN Testers failures such as:
        - http://www.cpantesters.org/cpan/report/c16b9978-7f40-11e1-9d6f-f6dbfa7543f5
  * Modernized some of the open() calls in the test files.
    - three args open, lexcial file handles, etc.
  * Fix https://sourceforge.net/tracker/?func=detail&aid=3388382&group_id=6926&atid=106926
    - "Trailing comments with whitespace are not recognised"
    - Thanks to briconaut for the report and to rbowen for the patch and test.
  * Add the method ->OutputConfigToFileHandle which is a more explicit and
  safer version of ->OutputConfig.
    - ->OutputConfig now uses it.
    - all existing tests pass, and a new test was added to
    t/15store-and-retrieve-here-doc-terminator.t .

OBS-URL: https://build.opensuse.org/request/show/122913
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Config-IniFiles?expand=0&rev=29
2012-05-30 13:57:38 +00:00

84 lines
2.5 KiB
RPMSpec

#
# spec file for package perl-Config-IniFiles
#
# Copyright (c) 2012 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-Config-IniFiles
%define cpan_name Config-IniFiles
Summary: Module for reading .ini-style configuration files
License: GPL-1.0+ or Artistic-1.0
Group: Development/Libraries/Perl
Version: 2.75
Release: 0
Url: http://search.cpan.org/dist/Config-IniFiles/
#Source: http://www.cpan.org/modules/by-module/Config/Config-IniFiles-2.58.tar.gz
Source: %{cpan_name}-%{version}.tar.gz
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(File::Basename)
BuildRequires: perl(File::Temp)
BuildRequires: perl(IO::Scalar)
BuildRequires: perl(List::MoreUtils)
BuildRequires: perl(Module::Build)
BuildRequires: perl(Test::Pod) >= 1.14
BuildRequires: perl(Test::Pod::Coverage) >= 1.04
Requires: perl(File::Basename)
Requires: perl(File::Temp)
Requires: perl(IO::Scalar)
Requires: perl(List::MoreUtils)
%{perl_requires}
%description
Config::IniFiles provides a way to have readable configuration files
outside your Perl script. Configurations can be imported (inherited,
stacked,...), sections can be grouped, and settings can be accessed from a
tied hash.
Authors:
--------
Scott Hutton
Rich Bowen <rbowen@rcbowen.com>
Jeremy Wadsack <dgsupport at wadsack-allen dot com>
%prep
%setup -q -n Config-IniFiles-%{version}
#rpmlint: wrong-file-end-of-line-encoding
%{__perl} -p -i -e "s|\r\n|\n|" Changes
%build
%{__perl} Build.PL installdirs=vendor
./Build
%check
./Build test
%install
./Build install destdir=$RPM_BUILD_ROOT create_packlist=0
%perl_gen_filelist
%clean
%{__rm} -rf $RPM_BUILD_ROOT
%files -f %{name}.files
%defattr(-,root,root,-)
%doc Changes README
%changelog