From c7df4b51c22b73f70a8c3f8f424b5cb54d21f7ddf843b5bf969858c081fc3016 Mon Sep 17 00:00:00 2001 From: Stephan Kulow Date: Sun, 23 Nov 2014 11:40:37 +0000 Subject: [PATCH] - updated to 1.18 * bugfix: store peep chain link reliably under threads * update tests for Perl 5.19.4's removal of the special treatment of aliased undef in arrays * in doc, switch to consistent use of British English spellings * doc typo fix version 1.17; 2013-08-04 * bugfix: correct the dtrace-related macro squashing for Perls prior to 5.13.8, where the macros had the wrong number of parameters and prevented compilation * bugfix: use core's PL_no_localize_ref string constant as data string rather than format string * update to handle the new padrange op type in Perl 5.17.6 * update to handle the new op allocation mechanism in Perl 5.17.2 * clarify and expand documentation around list-like assignments * clarify documentation of deref() regarding lvalueness * remove the bulk of the documentation from the README file OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Data-Alias?expand=0&rev=15 --- Data-Alias-1.16.tar.gz | 3 --- Data-Alias-1.18.tar.gz | 3 +++ perl-Data-Alias.changes | 32 ++++++++++++++++++++++++++++++++ perl-Data-Alias.spec | 13 ++++++------- 4 files changed, 41 insertions(+), 10 deletions(-) delete mode 100644 Data-Alias-1.16.tar.gz create mode 100644 Data-Alias-1.18.tar.gz diff --git a/Data-Alias-1.16.tar.gz b/Data-Alias-1.16.tar.gz deleted file mode 100644 index 6a7f282..0000000 --- a/Data-Alias-1.16.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0ad199c7a4ee855bc3bc150d2e55a8e34ff510dfb4958029a20a4c64856e45e0 -size 64820 diff --git a/Data-Alias-1.18.tar.gz b/Data-Alias-1.18.tar.gz new file mode 100644 index 0000000..f371c78 --- /dev/null +++ b/Data-Alias-1.18.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5a58fe535c426fcb092411da9c848b1bf0bdd2fbe073d2e5a126c16a3633c6c +size 61958 diff --git a/perl-Data-Alias.changes b/perl-Data-Alias.changes index b74d613..a88e9ce 100644 --- a/perl-Data-Alias.changes +++ b/perl-Data-Alias.changes @@ -1,3 +1,35 @@ +------------------------------------------------------------------- +Sun Nov 23 11:29:22 UTC 2014 - coolo@suse.com + +- updated to 1.18 + * bugfix: store peep chain link reliably under threads + + * update tests for Perl 5.19.4's removal of the special treatment of + aliased undef in arrays + + * in doc, switch to consistent use of British English spellings + + * doc typo fix + + version 1.17; 2013-08-04 + + * bugfix: correct the dtrace-related macro squashing for Perls prior + to 5.13.8, where the macros had the wrong number of parameters and + prevented compilation + + * bugfix: use core's PL_no_localize_ref string constant as data string + rather than format string + + * update to handle the new padrange op type in Perl 5.17.6 + + * update to handle the new op allocation mechanism in Perl 5.17.2 + + * clarify and expand documentation around list-like assignments + + * clarify documentation of deref() regarding lvalueness + + * remove the bulk of the documentation from the README file + ------------------------------------------------------------------- Tue Nov 29 20:30:24 UTC 2011 - coolo@suse.com diff --git a/perl-Data-Alias.spec b/perl-Data-Alias.spec index a7adbc4..0359827 100644 --- a/perl-Data-Alias.spec +++ b/perl-Data-Alias.spec @@ -1,7 +1,7 @@ # # spec file for package perl-Data-Alias # -# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2014 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,15 +16,14 @@ # - Name: perl-Data-Alias -Version: 1.16 -Release: 1 -License: GPL+ or Artistic +Version: 1.18 +Release: 0 %define cpan_name Data-Alias Summary: Comprehensive set of aliasing operations -Url: http://search.cpan.org/dist/Data-Alias/ +License: Artistic-1.0 or GPL-1.0+ Group: Development/Libraries/Perl +Url: http://search.cpan.org/dist/Data-Alias/ Source: http://www.cpan.org/authors/id/Z/ZE/ZEFRAM/%{cpan_name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: perl @@ -48,7 +47,7 @@ Aliasing occurs in Perl for example in for-loops and sub-calls: } Data::Alias is a module that allows you to apply "aliasing semantics" to a -section of code, causing aliases to be made whereever Perl would normally +section of code, causing aliases to be made wherever Perl would normally make copies instead. You can use this to improve efficiency and readability, when compared to using references.