forked from pool/perl-Config-IniFiles
0797386f67
* bugfixes * Add -nomultiline option. * Add the tag-release.pl file to tag a release. OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Config-IniFiles?expand=0&rev=15
82 lines
2.3 KiB
RPMSpec
82 lines
2.3 KiB
RPMSpec
#
|
|
# spec file for package perl-Config-IniFiles (Version 2.58)
|
|
#
|
|
# 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
|
|
|
|
|
|
Name: perl-Config-IniFiles
|
|
%define cpan_name Config-IniFiles
|
|
Summary: Module for reading .ini-style configuration files
|
|
Version: 2.64
|
|
Release: 1
|
|
License: GPL v1+, Artistic License
|
|
Group: Development/Libraries/Perl
|
|
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.bz2
|
|
BuildArch: noarch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: perl
|
|
BuildRequires: perl(Module::Build)
|
|
%if 0%{?suse_version} < 1120
|
|
BuildRequires: perl-macros
|
|
%endif
|
|
BuildRequires: perl(Test::Pod) >= 1.14
|
|
BuildRequires: perl(Test::Pod::Coverage) >= 1.04
|
|
BuildRequires: perl(IO::Scalar)
|
|
Requires: perl = %{perl_version}
|
|
Requires: perl(IO::Scalar)
|
|
|
|
%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
|