8
0

Accepting request 802764 from home:M0ses:tmp

initial version

OBS-URL: https://build.opensuse.org/request/show/802764
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-UNIVERSAL-ref?expand=0&rev=1
This commit is contained in:
Lars Vogdt
2020-05-13 20:50:06 +00:00
committed by Git OBS Bridge
commit e47e767f10
6 changed files with 8075 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.osc

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:35d815c49090d57b7051806ae1c4844879131791de1b861613c55a90a46b28ab
size 13355

View File

@@ -0,0 +1,5 @@
-------------------------------------------------------------------
Mon May 11 09:22:55 UTC 2020 - Frank Schreiner <FSchreiner@suse.com>
- initial version of package (0.14)
- added patch UNIVERSAL-ref-0.14-Fix-building-with-Perl-5.25.1.patch

65
perl-UNIVERSAL-ref.spec Normal file
View File

@@ -0,0 +1,65 @@
#
# spec file for package perl-UNIVERSAL-ref
#
# Copyright (c) 2015 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
# 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 http://bugs.opensuse.org/
#
Name: perl-UNIVERSAL-ref
Version: 0.14
Release: 0
%define cpan_name UNIVERSAL-ref
Summary: Turns ref() into a multimethod
License: Artistic-1.0 or GPL-1.0+
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/UNIVERSAL-ref/
Source: http://www.cpan.org/authors/id/J/JJ/JJORE/%{cpan_name}-%{version}.tar.gz
Patch0: UNIVERSAL-ref-0.14-Fix-building-with-Perl-5.25.1.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(B::Utils)
#BuildRequires: perl(UNIVERSAL::ref)
Requires: perl(B::Utils)
Requires: perl-base = %{perl_version}
%{perl_requires}
%description
This module changes the behavior of the builtin function ref(). If ref() is
called on an object that has requested an overloaded ref, the object's
'->ref' method will be called and its return value used instead.
%prep
%setup -q -n %{cpan_name}-%{version}
%patch0 -p1
%build
%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
%{__make} %{?_smp_mflags}
mv dist.ini~ dist.ini
%check
%{__make} test
%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist
%files -f %{name}.files
%defattr(-,root,root,755)
%doc Changes dist.ini LICENSE README weaver.ini
%changelog