Accepting request 578256 from devel:languages:perl:autoupdate

automatic update

OBS-URL: https://build.opensuse.org/request/show/578256
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-WordList?expand=0&rev=3
This commit is contained in:
Stephan Kulow
2018-02-24 07:04:31 +00:00
committed by Git OBS Bridge
parent 963f7b2917
commit 88f19cd98e
4 changed files with 30 additions and 19 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cdda8af318dd7ede518fe23f0aa53cba89752955c82a44a74e1eba2d48d678a2
size 16238

3
WordList-0.1.3.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fc9139db338497026dfb32d44f15f97b6ee3e57638e775475e80180163b5419a
size 16234

View File

@@ -1,3 +1,15 @@
-------------------------------------------------------------------
Tue Feb 20 07:10:37 UTC 2018 - coolo@suse.com
- updated to 0.1.3
see /usr/share/doc/packages/perl-WordList/Changes
0.1.3 2018-02-20 (PERLANCAR)
- No spec changes.
- [doc] Remove warning label, some rewording in Description.
-------------------------------------------------------------------
Mon Dec 25 07:10:51 UTC 2017 - coolo@suse.com

View File

@@ -1,7 +1,7 @@
#
# spec file for package perl-WordList
#
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -17,11 +17,11 @@
Name: perl-WordList
Version: 0.1.2
Version: 0.1.3
Release: 0
%define cpan_name WordList
Summary: Word lists
License: Artistic-1.0 or GPL-1.0+
License: Artistic-1.0 OR GPL-1.0-or-later
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/WordList/
Source0: https://cpan.metacpan.org/authors/id/P/PE/PERLANCAR/%{cpan_name}-%{version}.tar.gz
@@ -33,25 +33,24 @@ BuildRequires: perl-macros
%{perl_requires}
%description
*EARLY DEVELOPMENT, SPECIFICATION MIGHT STILL CHANGE CONSIDERABLY.*
'WordList::*' modules are modules that contain, well, list of words. This
module, 'WordList', serves as a base class and establishes convention for
such modules.
'WordList' is an alternative interface for Games::Word::Wordlist and
'Games::Word::Wordlist::*'. Its main difference is: 'WordList::*' modules
are read-only/immutable and designed to have low startup overhead. This
makes it more suitable for use in CLI scripts which often only want to pick
a word from one or several lists.
'Games::Word::Wordlist::*'. Its main difference is: 'WordList::*' wordlists
are read-only/immutable and the modules are designed to have low startup
overhead. This makes them more suitable for use in CLI scripts which often
only want to pick a word from one or several lists.
Words (or phrases) must be put in __DATA__ section, *sorted*, one per line.
By putting it in the __DATA__ section, perl doesn't have to parse the list.
To search for words or picking some random words from the list, the module
need not slurp the whole list into memory (and will not do so unless
explicitly instructed.) Sorting must be asciibetical/by Unicode codepoint.
This makes it more convenient to diff different versions of the module, as
well as performing binary search.
Words (or phrases) must be put in '__DATA__' section, *sorted*
ascibetically (or by Unicode code point), one per line. Putting the
wordlist in the '__DATA__' section relieves perl from having to parse the
list during the loading of the module. To search for words or picking some
random words from the list, the module also need not slurp the whole list
into memory (and will not do so unless explicitly instructed). Sorting
makes it more convenient to diff different versions of the module, as well
as performing binary search.
Since this is a new and non-backward compatible interface from
Games::Word::Wordlist, I also make some other changes: