- updated to 1.03
Documentation spelling fixes and tweaks to improve testing on Windows. OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Encode-Locale?expand=0&rev=7
This commit is contained in:
committed by
Git OBS Bridge
parent
1c767e7b04
commit
fd70fdea48
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:20c5ba2ab0ac00f0e6d5c5d405f2ccb3fdb0212de3519ec8d16688574d8d5340
|
||||
size 6753
|
3
Encode-Locale-1.03.tar.gz
Normal file
3
Encode-Locale-1.03.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f76337e0933225914111fcc3319ff4db359b1abfd1aa56dff2df5378db0e2d55
|
||||
size 6846
|
@@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 15 12:02:38 UTC 2012 - coolo@suse.com
|
||||
|
||||
- updated to 1.03
|
||||
Documentation spelling fixes and tweaks to improve testing on Windows.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Jul 24 19:04:20 UTC 2011 - andrea.turrini@gmail.com
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package perl-Encode-Locale
|
||||
#
|
||||
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2012 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
|
||||
@@ -16,49 +16,52 @@
|
||||
#
|
||||
|
||||
|
||||
|
||||
Name: perl-Encode-Locale
|
||||
Version: 1.02
|
||||
Release: 1
|
||||
License: GPL+ or Artistic
|
||||
Version: 1.03
|
||||
Release: 0
|
||||
%define cpan_name Encode-Locale
|
||||
Summary: Determine the locale encoding
|
||||
Url: http://search.cpan.org/dist/Encode-Locale/
|
||||
License: Artistic-1.0 or GPL-1.0+
|
||||
Group: Development/Libraries/Perl
|
||||
#Source: http://www.cpan.org/authors/id/G/GA/GAAS/Encode-Locale-%{version}.tar.gz
|
||||
Source: %{cpan_name}-%{version}.tar.gz
|
||||
Url: http://search.cpan.org/dist/Encode-Locale/
|
||||
Source: http://www.cpan.org/authors/id/G/GA/GAAS/%{cpan_name}-%{version}.tar.gz
|
||||
BuildArch: noarch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: perl
|
||||
BuildRequires: perl-macros
|
||||
#BuildRequires: perl(Encode::HanExtra)
|
||||
#BuildRequires: perl(Encode::Locale)
|
||||
#BuildRequires: perl(Win32::API)
|
||||
#BuildRequires: perl(Win32::Console)
|
||||
Recommends: perl(Win32::Console)
|
||||
%{perl_requires}
|
||||
|
||||
%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 are still
|
||||
byte based. Programs therefore needs to decode byte strings that enter the
|
||||
byte based. Programs therefore need 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 Encode
|
||||
module to know this encoding under the name "locale". It means
|
||||
(called a CODESET in the locale jargon) and arranges 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 doesn't actually depend on the locale; and this module
|
||||
determines the most appropriate encoding for file names. The Encode
|
||||
module will know this encoding under the name "locale_fs". For
|
||||
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 allow us to query the encoding set for
|
||||
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
|
||||
@@ -118,13 +121,13 @@ and variables are provided:
|
||||
|
||||
* $ENCODING_LOCALE
|
||||
|
||||
The encoding name determined to be suitable for the current locale. The
|
||||
Encode manpage knows this encoding as "locale".
|
||||
The encoding name determined to be suitable for the current locale. the
|
||||
Encode manpage know this encoding as "locale".
|
||||
|
||||
* $ENCODING_LOCALE_FS
|
||||
|
||||
The encoding name determined to be suiteable for file system interfaces
|
||||
involving file names. The Encode manpage knows this encoding as
|
||||
involving file names. the Encode manpage know this encoding as
|
||||
"locale_fs".
|
||||
|
||||
* $ENCODING_CONSOLE_IN
|
||||
@@ -132,7 +135,7 @@ and variables are provided:
|
||||
* $ENCODING_CONSOLE_OUT
|
||||
|
||||
The encodings to be used for reading and writing output to the a console.
|
||||
The Encode manpage knows these encodings as "console_in" and
|
||||
the Encode manpage know these encodings as "console_in" and
|
||||
"console_out".
|
||||
|
||||
%prep
|
||||
@@ -150,11 +153,8 @@ and variables are provided:
|
||||
%perl_process_packlist
|
||||
%perl_gen_filelist
|
||||
|
||||
%clean
|
||||
%{__rm} -rf %{buildroot}
|
||||
|
||||
%files -f %{name}.files
|
||||
%defattr(644,root,root,755)
|
||||
%defattr(-,root,root,755)
|
||||
%doc Changes README
|
||||
|
||||
%changelog
|
||||
|
Reference in New Issue
Block a user