2011-03-18 13:32:39 +00:00
|
|
|
#
|
2011-03-18 13:32:52 +00:00
|
|
|
# spec file for package perl-Encode-Locale
|
2011-03-18 13:32:39 +00:00
|
|
|
#
|
2011-03-18 13:32:52 +00:00
|
|
|
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2011-03-18 13:32:39 +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.
|
|
|
|
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
2011-03-18 13:32:52 +00:00
|
|
|
|
|
|
|
|
2011-03-18 13:32:39 +00:00
|
|
|
Name: perl-Encode-Locale
|
|
|
|
%define cpan_name Encode-Locale
|
|
|
|
Summary: Determine the locale encoding
|
|
|
|
Version: 1.01
|
|
|
|
Release: 1
|
|
|
|
License: GPL+ or Artistic
|
|
|
|
Group: Development/Libraries/Perl
|
|
|
|
Url: http://search.cpan.org/dist/Encode-Locale/
|
|
|
|
Source: http://www.cpan.org/authors/id/G/GA/GAAS/Encode-Locale-%{version}.tar.gz
|
|
|
|
BuildArch: noarch
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
BuildRequires: perl
|
|
|
|
BuildRequires: perl-macros
|
|
|
|
BuildRequires: perl(Encode) >= 2
|
|
|
|
BuildRequires: perl(Encode::Alias)
|
|
|
|
Requires: perl(Encode) >= 2
|
|
|
|
Requires: perl(Encode::Alias)
|
|
|
|
%{perl_requires}
|
|
|
|
Recommends: perl(I18N::Langinfo)
|
|
|
|
|
|
|
|
%description
|
|
|
|
In many applications it's wise to let Perl use Unicode for the strings it
|
|
|
|
processes. Most of the interfaces Perl has to the outside world is still
|
|
|
|
byte based. Programs therefore needs to decode byte strings that enter the
|
|
|
|
program from the outside and encode them again on the way out.
|
|
|
|
|
|
|
|
The POSIX locale system is used to specify both the language conventions
|
|
|
|
requested by the user and the preferred character set to consume and
|
|
|
|
output. The 'Encode::Locale' module looks up the charset and encoding
|
|
|
|
(called a CODESET in the locale jargon) and arrange for the the Encode
|
|
|
|
manpage module to know this encoding under the name "locale". It means
|
|
|
|
bytes obtained from the environment can be converted to Unicode strings by
|
|
|
|
calling 'Encode::encode(locale => $bytes)' and converted back again with
|
|
|
|
'Encode::decode(locale => $string)'.
|
|
|
|
|
|
|
|
Where file systems interfaces pass file names in and out of the program we
|
|
|
|
also need care. The trend is for operating systems to use a fixed file
|
|
|
|
encoding that don't actually depend on the locale; and this module
|
|
|
|
determines the most appropriate encoding for file names. The the Encode
|
|
|
|
manpage module will know this encoding under the name "locale_fs". For
|
|
|
|
traditional Unix systems this will be an alias to the same encoding as
|
|
|
|
"locale".
|
|
|
|
|
|
|
|
For programs running in a terminal window (called a "Console" on some
|
|
|
|
systems) the "locale" encoding is usually a good choice for what to expect
|
|
|
|
as input and output. Some systems allows us to query the encoding set for
|
|
|
|
the terminal and 'Encode::Locale' will do that if available and make these
|
|
|
|
encodings known under the 'Encode' aliases "console_in" and "console_out".
|
|
|
|
For systems where we can't determine the terminal encoding these will be
|
|
|
|
aliased as the same encoding as "locale". The advice is to use "console_in"
|
|
|
|
for input known to come from the terminal and "console_out" for output
|
|
|
|
known to go from the terminal.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -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(644,root,root,755)
|
|
|
|
%doc Changes README
|
|
|
|
|
|
|
|
%changelog
|