115 lines
3.2 KiB
RPMSpec
115 lines
3.2 KiB
RPMSpec
#
|
|
# spec file for package perl-Config-Record
|
|
#
|
|
# Copyright (c) 2024 SUSE LLC
|
|
#
|
|
# 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 https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: perl-Config-Record
|
|
Version: 1.1.2
|
|
Release: 0
|
|
%define cpan_name Config-Record
|
|
Summary: Configuration file access
|
|
License: GPL-1.0-or-later
|
|
Group: Development/Libraries/Perl
|
|
URL: http://search.cpan.org/dist/Config-Record/
|
|
Source: http://www.cpan.org/authors/id/D/DA/DANBERR/%{cpan_name}-%{version}.tar.gz
|
|
Source100: README.md
|
|
BuildArch: noarch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: perl
|
|
BuildRequires: perl-macros
|
|
BuildRequires: perl(Carp)
|
|
BuildRequires: perl(ExtUtils::MakeMaker)
|
|
BuildRequires: perl(File::Temp)
|
|
BuildRequires: perl(IO::File)
|
|
BuildRequires: perl(Test::More)
|
|
BuildRequires: perl(Test::Pod)
|
|
BuildRequires: perl(Test::Pod::Coverage)
|
|
Requires: perl(Carp)
|
|
Requires: perl(IO::File)
|
|
Patch0: fix_relative_paths.patch
|
|
%{perl_requires}
|
|
|
|
%description
|
|
This module provides an API for loading and saving of simple configuration
|
|
file records. Entries in the configuration file are essentially key,value
|
|
pairs, with the key and values separated by a single equals symbol. The
|
|
'key' consists only of alphanumeric characters. There are three types of
|
|
values, scalar values can contain anything except newlines. Trailing
|
|
whitespace will be trimmed unless the value is surrounded in double quotes.
|
|
eg
|
|
|
|
foo = Wizz
|
|
foo = "Wizz.... "
|
|
|
|
Long lines can be split with a backslash character, without introducing
|
|
newlines. Without double quotes, whitespace at beginning and end of lines
|
|
will be trimmed eg
|
|
|
|
foo = This is a long \
|
|
line of text
|
|
foo = "This is a long " \
|
|
"line of text"
|
|
|
|
Multi-line strings can be provided as 'HERE' documents, eg
|
|
|
|
foo = <<EOF
|
|
This is a multiple paragraph
|
|
block of text with newlines
|
|
preserved
|
|
EOF
|
|
|
|
Array values consist of a single right round bracket, following by one
|
|
'value' per line, terminated by a single left round bracket. eg
|
|
|
|
foo = (
|
|
Wizz
|
|
"Wizz... "
|
|
)
|
|
|
|
Hash values consist of a single right curly bracket, followed by one
|
|
key,value pair per line, terminated by a single left curly bracket. eg
|
|
|
|
foo = {
|
|
one = Wizz
|
|
two = "Wizz.... "
|
|
}
|
|
|
|
Arrays and hashes can be nested to arbitrary depth.
|
|
|
|
%prep
|
|
%autosetup -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
|
|
|
|
%clean
|
|
%{__rm} -rf %{buildroot}
|
|
|
|
%files -f %{name}.files
|
|
%defattr(-,root,root,755)
|
|
%doc AUTHORS CHANGES Config-Record.spec LICENSE README examples
|
|
|
|
%changelog
|