2024-05-03 19:06:02 +02:00
|
|
|
#
|
|
|
|
# spec file for package perl-Variable-Magic
|
|
|
|
#
|
2025-02-26 14:03:53 +01:00
|
|
|
# Copyright (c) 2024 SUSE LLC
|
2024-05-03 19:06:02 +02:00
|
|
|
#
|
|
|
|
# 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 Variable-Magic
|
|
|
|
Name: perl-Variable-Magic
|
2025-02-26 14:03:53 +01:00
|
|
|
Version: 0.640.0
|
2024-05-03 19:06:02 +02:00
|
|
|
Release: 0
|
2025-02-26 14:03:53 +01:00
|
|
|
# 0.64 -> normalize -> 0.640.0
|
|
|
|
%define cpan_version 0.64
|
2024-05-03 19:06:02 +02:00
|
|
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
|
|
|
Summary: Associate user-defined magic to variables from Perl
|
|
|
|
URL: https://metacpan.org/release/%{cpan_name}
|
2025-02-26 14:03:53 +01:00
|
|
|
Source0: https://cpan.metacpan.org/authors/id/V/VP/VPIT/%{cpan_name}-%{cpan_version}.tar.gz
|
2024-05-03 19:06:02 +02:00
|
|
|
Source1: cpanspec.yml
|
|
|
|
BuildRequires: perl
|
|
|
|
BuildRequires: perl-macros
|
2025-02-26 14:03:53 +01:00
|
|
|
Provides: perl(Variable::Magic) = %{version}
|
|
|
|
%undefine __perllib_provides
|
2024-05-03 19:06:02 +02:00
|
|
|
%{perl_requires}
|
|
|
|
|
|
|
|
%description
|
|
|
|
Magic is Perl's way of enhancing variables. This mechanism lets the user
|
|
|
|
add extra data to any variable and hook syntactical operations (such as
|
|
|
|
access, assignment or destruction) that can be applied to it. With this
|
|
|
|
module, you can add your own magic to any variable without having to write
|
|
|
|
a single line of XS.
|
|
|
|
|
|
|
|
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, threads::shared variables... They all share the same
|
|
|
|
underlying C API, and this module gives you direct access to it.
|
|
|
|
|
|
|
|
%prep
|
2025-02-26 14:03:53 +01:00
|
|
|
%autosetup -n %{cpan_name}-%{cpan_version}
|
2024-05-03 19:06:02 +02:00
|
|
|
|
|
|
|
%build
|
|
|
|
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
|
2025-02-26 14:03:53 +01:00
|
|
|
%doc Changes CONTRIBUTING README samples
|
2024-05-03 19:06:02 +02:00
|
|
|
|
|
|
|
%changelog
|