From 88f19cd98e2c724ff422fc92c76d8964948a11f49edad6451f74a7d6eb1bb124 Mon Sep 17 00:00:00 2001 From: Stephan Kulow Date: Sat, 24 Feb 2018 07:04:31 +0000 Subject: [PATCH] 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 --- WordList-0.1.2.tar.gz | 3 --- WordList-0.1.3.tar.gz | 3 +++ perl-WordList.changes | 12 ++++++++++++ perl-WordList.spec | 31 +++++++++++++++---------------- 4 files changed, 30 insertions(+), 19 deletions(-) delete mode 100644 WordList-0.1.2.tar.gz create mode 100644 WordList-0.1.3.tar.gz diff --git a/WordList-0.1.2.tar.gz b/WordList-0.1.2.tar.gz deleted file mode 100644 index 5f62126..0000000 --- a/WordList-0.1.2.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cdda8af318dd7ede518fe23f0aa53cba89752955c82a44a74e1eba2d48d678a2 -size 16238 diff --git a/WordList-0.1.3.tar.gz b/WordList-0.1.3.tar.gz new file mode 100644 index 0000000..49f270a --- /dev/null +++ b/WordList-0.1.3.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc9139db338497026dfb32d44f15f97b6ee3e57638e775475e80180163b5419a +size 16234 diff --git a/perl-WordList.changes b/perl-WordList.changes index 3ac1120..96a7be6 100644 --- a/perl-WordList.changes +++ b/perl-WordList.changes @@ -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 diff --git a/perl-WordList.spec b/perl-WordList.spec index df4b478..5f83b8a 100644 --- a/perl-WordList.spec +++ b/perl-WordList.spec @@ -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: