forked from pool/perl-Variable-Magic
Compare commits
17 Commits
6293a81607
...
e99cfe82a9
Author | SHA256 | Date | |
---|---|---|---|
e99cfe82a9 | |||
48e15442b6 | |||
a0df8a879f | |||
4065ee3686 | |||
af7b5bec93 | |||
|
da15795120 | ||
f8df84dd61 | |||
|
cb52d8599d | ||
acc8dfaf74 | |||
13aa162ff8 | |||
|
2353a148d1 | ||
|
29af8fff58 | ||
8109c97d25 | |||
3f2eb02330 | |||
|
b3fcf5e756 | ||
|
5769d980bf | ||
|
a6f3516971 |
BIN
Variable-Magic-0.59.tar.gz
(Stored with Git LFS)
BIN
Variable-Magic-0.59.tar.gz
(Stored with Git LFS)
Binary file not shown.
BIN
Variable-Magic-0.64.tar.gz
(Stored with Git LFS)
Normal file
BIN
Variable-Magic-0.64.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@@ -1,3 +1,78 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 22 16:40:36 UTC 2024 - Tina Müller <timueller+perl@suse.de>
|
||||
|
||||
- updated to 0.64
|
||||
see /usr/share/doc/packages/perl-Variable-Magic/Changes
|
||||
|
||||
0.64 2024-03-18 23:20 UTC
|
||||
This is a maintenance release. The code contains no functional change.
|
||||
Satisfied users of version 0.63 can skip this update.
|
||||
+ Add : Contributing guidelines are now listed in the new
|
||||
CONTRIBUTING file.
|
||||
+ Fix : [RT #151104] : fix for t/18-opinfo.t broken under blead
|
||||
Some optimization in core made t/18-opinfo.t fail since perl
|
||||
5.39.7, but that was reverted before 5.40 was released.
|
||||
This fix will make this test pass even when the optimization
|
||||
is reinstantiated after release freeze.
|
||||
Thanks David Mitchell for reporting and providing a fix.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Sep 21 03:06:58 UTC 2022 - Tina Müller <timueller+perl@suse.de>
|
||||
|
||||
- updated to 0.63
|
||||
see /usr/share/doc/packages/perl-Variable-Magic/Changes
|
||||
|
||||
0.63 2022-09-20 21:45 UTC
|
||||
This is a maintenance release. The code contains no functional change.
|
||||
Satisfied users of version 0.62 can skip this update.
|
||||
+ Fix : [RT #144052] : Add support for 5.37.3s PADSV_STORE optimization
|
||||
B.pm-related tests have been taught about this new thing.
|
||||
Thanks Richard Leach for contributing a patch.
|
||||
+ Upd : Contact info.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Nov 5 07:12:25 UTC 2017 - coolo@suse.com
|
||||
|
||||
- updated to 0.62
|
||||
see /usr/share/doc/packages/perl-Variable-Magic/Changes
|
||||
|
||||
0.62 2017-11-04 16:35 UTC
|
||||
+ Fix : [RT #123314] : Compatibility with CV-in-stash optimisation
|
||||
Thanks Father Chrysostomos for reporting and contributing a
|
||||
patch.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 14 07:57:29 UTC 2017 - coolo@suse.com
|
||||
|
||||
- updated to 0.61
|
||||
see /usr/share/doc/packages/perl-Variable-Magic/Changes
|
||||
|
||||
0.61 2017-01-24 15:30 UTC
|
||||
+ Fix : [RT #115792] : Latest blead stack unwind work causes infloop
|
||||
in a test.
|
||||
A change in how the core frees temporary values after eval
|
||||
interacted badly with Variable::Magic and caused infinite loops
|
||||
when a free callback was attached to a wizard. This change was
|
||||
temporarily reverted, but is going to be reinstated, and
|
||||
Variable::Magic is now able to play nicely when this happens.
|
||||
Thanks Peter Rabbitson for reporting and David Mitchell for
|
||||
providing a fix.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Sep 7 06:18:52 UTC 2016 - coolo@suse.com
|
||||
|
||||
- updated to 0.60
|
||||
see /usr/share/doc/packages/perl-Variable-Magic/Changes
|
||||
|
||||
0.60 2016-09-06 22:30 UTC
|
||||
+ Chg : A large chunk of boilerplate XS code, which is also used in
|
||||
other XS modules, has been factored out of the main .xs file
|
||||
to a collection of .h files in the xsh subdirectory.
|
||||
+ Fix : [RT #128989] : Bleadperl v5.25.3-266-g1d7e644 breaks V::M.
|
||||
Len magic is no longer called for negative array indices
|
||||
fetches, so the relevant tests are now skipped.
|
||||
Thanks Andreas Koenig for reporting.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 6 09:19:29 UTC 2015 - coolo@suse.com
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package perl-Variable-Magic
|
||||
#
|
||||
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -12,23 +12,25 @@
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
Name: perl-Variable-Magic
|
||||
Version: 0.59
|
||||
Release: 0
|
||||
%define cpan_name Variable-Magic
|
||||
Name: perl-Variable-Magic
|
||||
Version: 0.640.0
|
||||
Release: 0
|
||||
# 0.64 -> normalize -> 0.640.0
|
||||
%define cpan_version 0.64
|
||||
License: Artistic-1.0 OR GPL-1.0-or-later
|
||||
Summary: Associate user-defined magic to variables from Perl
|
||||
License: Artistic-1.0 or GPL-1.0+
|
||||
Group: Development/Libraries/Perl
|
||||
Url: http://search.cpan.org/dist/Variable-Magic/
|
||||
Source0: http://www.cpan.org/authors/id/V/VP/VPIT/%{cpan_name}-%{version}.tar.gz
|
||||
URL: https://metacpan.org/release/%{cpan_name}
|
||||
Source0: https://cpan.metacpan.org/authors/id/V/VP/VPIT/%{cpan_name}-%{cpan_version}.tar.gz
|
||||
Source1: cpanspec.yml
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: perl
|
||||
BuildRequires: perl-macros
|
||||
Provides: perl(Variable::Magic) = %{version}
|
||||
%undefine __perllib_provides
|
||||
%{perl_requires}
|
||||
|
||||
%description
|
||||
@@ -42,18 +44,18 @@ You'll realize that these magic variables look a lot like tied variables.
|
||||
It is not surprising, as tied variables are implemented as a special kind
|
||||
of magic, just like any 'irregular' Perl variable : scalars like '$!', '$('
|
||||
or '$^W', the '%ENV' and '%SIG' hashes, the '@ISA' array, 'vec()' and
|
||||
'substr()' lvalues, the threads::shared manpage variables... They all share
|
||||
the same underlying C API, and this module gives you direct access to it.
|
||||
'substr()' lvalues, threads::shared variables... They all share the same
|
||||
underlying C API, and this module gives you direct access to it.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{cpan_name}-%{version}
|
||||
%autosetup -n %{cpan_name}-%{cpan_version}
|
||||
|
||||
%build
|
||||
%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
|
||||
%{__make} %{?_smp_mflags}
|
||||
perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
|
||||
%make_build
|
||||
|
||||
%check
|
||||
%{__make} test
|
||||
make test
|
||||
|
||||
%install
|
||||
%perl_make_install
|
||||
@@ -61,7 +63,6 @@ the same underlying C API, and this module gives you direct access to it.
|
||||
%perl_gen_filelist
|
||||
|
||||
%files -f %{name}.files
|
||||
%defattr(-,root,root,755)
|
||||
%doc Changes README samples
|
||||
%doc Changes CONTRIBUTING README samples
|
||||
|
||||
%changelog
|
||||
|
Reference in New Issue
Block a user