- updated to 1.24 see /usr/share/doc/packages/perl-Data-Alias/Changes version 1.24; 2021-05-05 * bugfix: copy() no longer produces malformed optrees which under certain circumstances crashed perl 5.31.2 and later. (contributed by TonyC) * update for removal of '.' from @INC in perl 5.26. version 1.23; 2021-04-30 * bugfix: fix aliasing semantic unintentionally being applied to subs defined after a parenthesized alias()-expression since perl 5.11.2. version 1.22; 2021-04-22 * bugfix: use SvCUR_set instead of direct SvCUR assignment to fix compilation problems with -DDEBUGGING builds. (contributed by TonyC) * update for parser changes in v5.33.6. (contributed by TonyC) OBS-URL: https://build.opensuse.org/request/show/890623 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Data-Alias?expand=0&rev=20
83 lines
2.7 KiB
RPMSpec
83 lines
2.7 KiB
RPMSpec
#
|
|
# spec file for package perl-Data-Alias
|
|
#
|
|
# Copyright (c) 2021 SUSE LLC
|
|
#
|
|
# 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 https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define cpan_name Data-Alias
|
|
Name: perl-Data-Alias
|
|
Version: 1.24
|
|
Release: 0
|
|
Summary: Comprehensive set of aliasing operations
|
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
|
URL: https://metacpan.org/release/%{cpan_name}
|
|
Source0: https://cpan.metacpan.org/authors/id/X/XM/XMATH/%{cpan_name}-%{version}.tar.gz
|
|
Source1: cpanspec.yml
|
|
BuildRequires: perl
|
|
BuildRequires: perl-macros
|
|
%{perl_requires}
|
|
|
|
%description
|
|
Aliasing is the phenomenon where two different expressions actually refer
|
|
to the same thing. Modifying one will modify the other, and if you take a
|
|
reference to both, the two values are the same.
|
|
|
|
Aliasing occurs in Perl for example in for-loops and sub-calls:
|
|
|
|
for $var ($x) {
|
|
# here $var is an alias to $x
|
|
}
|
|
|
|
foo($y);
|
|
sub foo {
|
|
# here $_[0] is an alias to $y
|
|
}
|
|
|
|
Data::Alias is a module that allows you to apply "aliasing semantics" to a
|
|
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.
|
|
|
|
The exact details of aliasing semantics are below under DETAILS.
|
|
|
|
Perl 5.22 added some support for aliasing to the Perl core. It has a
|
|
different syntax, and a different set of operations, from that supplied by
|
|
this module; see perlref/Assigning to References. The core's aliasing
|
|
facilities are implemented more robustly than this module and are better
|
|
supported. If you can rely on having a sufficiently recent Perl version,
|
|
you should prefer to use the core facility rather than use this module. If
|
|
you are already using this module and are now using a sufficiently recent
|
|
Perl, you should attempt to migrate to the core facility.
|
|
|
|
%prep
|
|
%autosetup -n %{cpan_name}-%{version}
|
|
|
|
%build
|
|
PERL_USE_UNSAFE_INC=1 perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
|
|
%make_build
|
|
|
|
%check
|
|
make test
|
|
|
|
%install
|
|
%perl_make_install
|
|
%perl_process_packlist
|
|
%perl_gen_filelist
|
|
|
|
%files -f %{name}.files
|
|
%doc Changes README
|
|
|
|
%changelog
|