Sync from SUSE:SLFO:Main perl-Sub-Install revision bab58f4d8b40ef99d2d2f7b5b9b501b4

This commit is contained in:
Adrian Schröter 2024-05-03 18:46:11 +02:00
commit 9d132a3280
4 changed files with 158 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

BIN
Sub-Install-0.929.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

74
perl-Sub-Install.changes Normal file
View File

@ -0,0 +1,74 @@
-------------------------------------------------------------------
Tue Jan 3 03:10:39 UTC 2023 - Tina Müller <timueller+perl@suse.de>
- updated to 0.929
see /usr/share/doc/packages/perl-Sub-Install/Changes
0.929 2022-12-31 15:58:28-05:00 America/New_York
- update packaging and metadata
-------------------------------------------------------------------
Fri Sep 19 12:15:47 UTC 2014 - coolo@suse.com
- updated to 0.928
- cope with subroutines with spaces in their names when catching
warnings
- don't assume that the source sub isn't blessed in tests (!)
-------------------------------------------------------------------
Mon Nov 25 07:38:53 UTC 2013 - coolo@suse.com
- updated to 0.927
rebuild using Dist::Zilla, update links to repo, metadata, etc.
typo fixes, thanks David Steinbrunner
-------------------------------------------------------------------
Tue Feb 28 08:19:21 UTC 2012 - coolo@suse.com
- updated to 0.926
cope with terminal dots from new Carp
-------------------------------------------------------------------
Wed Dec 14 11:04:53 UTC 2011 - coolo@suse.com
- fix license to be in spdx.org format
-------------------------------------------------------------------
Fri Nov 18 11:09:31 UTC 2011 - coolo@suse.com
- use original .tar.gz
-------------------------------------------------------------------
Wed Dec 1 09:44:38 UTC 2010 - coolo@novell.com
- switch to perl_requires macro
-------------------------------------------------------------------
Sun Apr 11 20:06:34 UTC 2010 - chris@computersalat.de
- removed .packlist, perllocal.pod files
> noarch package
- cleanup spec
o fix HEADER
o removed useless comments
o update License, Url
o fix perl-macros deps
o update description
o macro usage
-------------------------------------------------------------------
Sat Jul 25 19:42:11 CEST 2009 - chris@computersalat.de
- spec mods
* removed ^----------
* removed ^#---------
-------------------------------------------------------------------
Sun Jun 21 20:47:41 CEST 2009 - chris@computersalat.de
- initial package 0.925
- added perl-macros
o autogen filelist with perl_gen_filelist
- spec mods
o added header

58
perl-Sub-Install.spec Normal file
View File

@ -0,0 +1,58 @@
#
# spec file for package perl-Sub-Install
#
# Copyright (c) 2023 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 Sub-Install
Name: perl-Sub-Install
Version: 0.929
Release: 0
License: Artistic-1.0 OR GPL-1.0-or-later
Summary: Install subroutines into packages easily
URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/R/RJ/RJBS/%{cpan_name}-%{version}.tar.gz
BuildArch: noarch
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.78
BuildRequires: perl(Test::More) >= 0.96
%{perl_requires}
%description
This module makes it easy to install subroutines into packages without the
unsightly mess of 'no strict' or typeglobs lying about where just anyone
can see them.
%prep
%autosetup -n %{cpan_name}-%{version}
%build
perl Makefile.PL INSTALLDIRS=vendor
%make_build
%check
make test
%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist
%files -f %{name}.files
%doc Changes README
%license LICENSE
%changelog