Files
perl-Config-Properties/perl-Config-Properties.spec
2025-08-12 18:12:39 +02:00

93 lines
3.3 KiB
RPMSpec

#
# spec file for package perl-Config-Properties
#
# 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/
#
%define cpan_name Config-Properties
Name: perl-Config-Properties
Version: 1.800.0
Release: 0
# 1.80 -> normalize -> 1.800.0
%define cpan_version 1.80
License: Artistic-1.0 OR GPL-1.0-or-later
Summary: Read and write property files
URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/S/SA/SALVA/%{cpan_name}-%{cpan_version}.tar.gz
Source1: cpanspec.yml
Source100: README.md
BuildArch: noarch
BuildRequires: perl
BuildRequires: perl-macros
Provides: perl(Config::Properties) = %{version}
%undefine __perllib_provides
%{perl_requires}
%description
Config::Properties is a near implementation of the java.util.Properties
API. It is designed to allow easy reading, writing and manipulation of
Java-style property files.
The format of a Java-style property file is that of a key-value pair
separated by either whitespace, the colon (:) character, or the equals (=)
character. Whitespace before the key and on either side of the separator is
ignored.
Lines that begin with either a hash (#) or a bang (!) are considered
comment lines and ignored.
A backslash (\) at the end of a line signifies a continuation and the next
line is counted as part of the current line (minus the backslash, any
whitespace after the backslash, the line break, and any whitespace at the
beginning of the next line).
The official references used to determine this format can be found in the
Java API docs for java.util.Properties at
http://java.sun.com/j2se/1.5.0/docs/api/java/util/Properties.html.
When a property file is saved it is in the format "key=value" for each
line. This can be changed by setting the format attribute using either
$object->format( $format_string ) or $object->setFormat( $format_string )
(they do the same thing). The format string is fed to printf and must
contain exactly two %s format characters. The first will be replaced with
the key of the property and the second with the value. The string can
contain no other printf control characters, but can be anything else. A
newline will be automatically added to the end of the string. The current
format string can be obtained by using $object->format() (with no
arguments) or $object->getFormat().
If a recent version of Text::Wrap is available, long lines are conveniently
wrapped when saving.
%prep
%autosetup -n %{cpan_name}-%{cpan_version}
%build
perl Makefile.PL INSTALLDIRS=vendor
%make_build
%check
make test
%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist
%files -f %{name}.files
%doc Changes README
%changelog