2011-05-31 14:49:50 +00:00
|
|
|
#
|
2013-01-25 19:23:07 +00:00
|
|
|
# spec file for package perl-Encode
|
2011-05-31 14:49:50 +00:00
|
|
|
#
|
2024-03-08 10:31:26 +00:00
|
|
|
# Copyright (c) 2024 SUSE LLC
|
2011-05-31 14:49:50 +00:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2019-01-27 11:02:23 +00:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2011-05-31 14:49:50 +00:00
|
|
|
#
|
2010-08-26 23:08:03 +00:00
|
|
|
|
2013-01-25 19:23:07 +00:00
|
|
|
|
2021-05-20 09:26:03 +00:00
|
|
|
%define cpan_name Encode
|
2010-08-26 23:08:03 +00:00
|
|
|
Name: perl-Encode
|
2024-03-08 10:31:26 +00:00
|
|
|
Version: 3.210.0
|
2013-01-25 19:23:07 +00:00
|
|
|
Release: 0
|
2024-03-08 10:31:26 +00:00
|
|
|
%define cpan_version 3.21
|
2018-02-24 07:03:31 +00:00
|
|
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
2022-04-13 19:18:18 +00:00
|
|
|
Summary: Character encodings in Perl
|
2020-05-04 05:14:04 +00:00
|
|
|
URL: https://metacpan.org/release/%{cpan_name}
|
2023-11-16 16:38:26 +00:00
|
|
|
Source0: https://cpan.metacpan.org/authors/id/D/DA/DANKOGAI/%{cpan_name}-%{cpan_version}.tar.gz
|
2017-06-25 08:33:51 +00:00
|
|
|
Source1: perl-Encode-rpmlintrc
|
|
|
|
Source2: cpanspec.yml
|
2025-08-12 18:13:52 +02:00
|
|
|
Source100: README.md
|
2010-08-26 23:08:03 +00:00
|
|
|
BuildRequires: perl
|
2010-12-03 14:04:06 +00:00
|
|
|
BuildRequires: perl-macros
|
2020-12-03 10:59:17 +00:00
|
|
|
BuildRequires: perl(Test::More) >= 0.92
|
2016-01-27 10:25:46 +00:00
|
|
|
BuildRequires: perl(parent) >= 0.221
|
|
|
|
Requires: perl(parent) >= 0.221
|
2024-03-08 10:31:26 +00:00
|
|
|
Provides: perl(Encode) = %{version}
|
2023-11-16 16:38:26 +00:00
|
|
|
Provides: perl(Encode::Alias) = 2.25
|
|
|
|
Provides: perl(Encode::CJKConstants) = 2.200.0
|
|
|
|
Provides: perl(Encode::CN::HZ) = 2.10
|
|
|
|
Provides: perl(Encode::Config) = 2.500.0
|
|
|
|
Provides: perl(Encode::Encoder) = 2.300.0
|
|
|
|
Provides: perl(Encode::Encoding) = 2.800.0
|
|
|
|
Provides: perl(Encode::GSM0338) = 2.10
|
|
|
|
Provides: perl(Encode::Guess) = 2.800.0
|
|
|
|
Provides: perl(Encode::JP::H2Z) = 2.200.0
|
|
|
|
Provides: perl(Encode::JP::JIS7) = 2.800.0
|
|
|
|
Provides: perl(Encode::KR::2022_KR) = 2.400.0
|
|
|
|
Provides: perl(Encode::MIME::Header) = 2.29
|
|
|
|
Provides: perl(Encode::MIME::Header::ISO_2022_JP) = 1.900.0
|
|
|
|
Provides: perl(Encode::MIME::Name) = 1.300.0
|
|
|
|
Provides: perl(Encode::UTF_EBCDIC)
|
|
|
|
Provides: perl(Encode::Unicode::UTF7) = 2.10
|
|
|
|
Provides: perl(Encode::XS)
|
|
|
|
Provides: perl(Encode::utf8)
|
|
|
|
Provides: perl(encoding) = 3.00
|
2024-03-08 22:26:28 +00:00
|
|
|
%undefine __perllib_provides
|
2011-05-31 14:49:50 +00:00
|
|
|
%{perl_requires}
|
2010-08-26 23:08:03 +00:00
|
|
|
|
|
|
|
%description
|
2011-05-31 14:49:50 +00:00
|
|
|
The 'Encode' module provides the interface between Perl strings and the
|
|
|
|
rest of the system. Perl strings are sequences of _characters_.
|
|
|
|
|
|
|
|
The repertoire of characters that Perl can represent is a superset of those
|
|
|
|
defined by the Unicode Consortium. On most platforms the ordinal values of
|
|
|
|
a character as returned by 'ord(_S_)' is the _Unicode codepoint_ for that
|
|
|
|
character. The exceptions are platforms where the legacy encoding is some
|
2016-01-27 10:25:46 +00:00
|
|
|
variant of EBCDIC rather than a superset of ASCII; see perlebcdic.
|
2011-05-31 14:49:50 +00:00
|
|
|
|
|
|
|
During recent history, data is moved around a computer in 8-bit chunks,
|
|
|
|
often called "bytes" but also known as "octets" in standards documents.
|
|
|
|
Perl is widely used to manipulate data of many types: not only strings of
|
|
|
|
characters representing human or computer languages, but also "binary"
|
|
|
|
data, being the machine's representation of numbers, pixels in an image, or
|
|
|
|
just about anything.
|
|
|
|
|
|
|
|
When Perl is processing "binary data", the programmer wants Perl to process
|
|
|
|
"sequences of bytes". This is not a problem for Perl: because a byte has
|
|
|
|
256 possible values, it easily fits in Perl's much larger "logical
|
|
|
|
character".
|
2010-08-26 23:08:03 +00:00
|
|
|
|
2016-01-27 10:25:46 +00:00
|
|
|
This document mostly explains the _how_. perlunitut and perlunifaq explain
|
|
|
|
the _why_.
|
|
|
|
|
2010-08-26 23:08:03 +00:00
|
|
|
%prep
|
2023-11-16 16:38:26 +00:00
|
|
|
%autosetup -n %{cpan_name}-%{cpan_version}
|
2010-08-26 23:08:03 +00:00
|
|
|
|
|
|
|
%build
|
2019-01-27 11:02:23 +00:00
|
|
|
perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
|
2021-05-20 09:26:03 +00:00
|
|
|
%make_build
|
2011-05-31 14:49:50 +00:00
|
|
|
|
|
|
|
%check
|
2019-01-27 11:02:23 +00:00
|
|
|
make test
|
2010-08-26 23:08:03 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
%perl_make_install
|
|
|
|
%perl_process_packlist
|
2017-06-25 08:33:51 +00:00
|
|
|
# MANUAL BEGIN
|
2017-03-04 10:17:36 +00:00
|
|
|
%__rm -f ${RPM_BUILD_ROOT}/usr/bin/enc2xs
|
|
|
|
%__rm -f ${RPM_BUILD_ROOT}/usr/bin/encguess
|
|
|
|
%__rm -f ${RPM_BUILD_ROOT}/usr/bin/piconv
|
|
|
|
%__rm -f ${RPM_BUILD_ROOT}/usr/share/man/man1/enc2xs.1*
|
|
|
|
%__rm -f ${RPM_BUILD_ROOT}/usr/share/man/man1/encguess.1*
|
|
|
|
%__rm -f ${RPM_BUILD_ROOT}/usr/share/man/man1/piconv.1*
|
2017-06-25 08:33:51 +00:00
|
|
|
# MANUAL END
|
2011-05-31 14:49:50 +00:00
|
|
|
%perl_gen_filelist
|
2010-08-26 23:08:03 +00:00
|
|
|
|
2011-05-31 14:49:50 +00:00
|
|
|
%files -f %{name}.files
|
|
|
|
%doc AUTHORS Changes README
|
2010-08-26 23:08:03 +00:00
|
|
|
|
2011-05-31 14:49:50 +00:00
|
|
|
%changelog
|