Sync from SUSE:SLFO:Main perl-ExtUtils-Helpers revision 354ad3fe18e4cd404512847573662f16

This commit is contained in:
Adrian Schröter 2024-05-03 18:12:29 +02:00
commit 920e57ce6f
5 changed files with 168 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
ExtUtils-Helpers-0.026.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

28
cpanspec.yml Normal file
View File

@ -0,0 +1,28 @@
---
#description_paragraphs: 3
#description: |-
# override description from CPAN
#summary: override summary from CPAN
#no_testing: broken upstream
#sources:
# - source1
# - source2
#patches:
# foo.patch: -p1
# bar.patch:
#preamble: |-
# BuildRequires: gcc-c++
#post_prep: |-
# hunspell=`pkg-config --libs hunspell | sed -e 's,-l,,; s, *,,g'`
# sed -i -e "s,hunspell-X,$hunspell," t/00-prereq.t Makefile.PL
#post_build: |-
# rm unused.files
#post_install: |-
# sed on %{name}.files
#license: SUSE-NonFree
#skip_noarch: 1
#custom_build: |-
#./Build build flags=%{?_smp_mflags} --myflag
#custom_test: |-
#startserver && make test
#ignore_requires: Bizarre::Module

View File

@ -0,0 +1,56 @@
-------------------------------------------------------------------
Sat Sep 10 05:25:15 UTC 2016 - coolo@suse.com
- updated to 0.026
see /usr/share/doc/packages/perl-ExtUtils-Helpers/Changes
0.026 2016-09-09 19:26:57+02:00 Europe/Amsterdam
- Fix Win32 dependency
-------------------------------------------------------------------
Sat Sep 3 05:21:30 UTC 2016 - coolo@suse.com
- updated to 0.025
see /usr/share/doc/packages/perl-ExtUtils-Helpers/Changes
0.025 2016-09-02 09:48:38+02:00 Europe/Amsterdam
- Remove unconditional dependency on ExtUtils::PL2Bat
0.024 2016-08-16 22:02:31+02:00 Europe/Amsterdam (TRIAL RELEASE)
- Move pl2bat code to ExtUtils::PL2Bat
0.023 2016-08-06 20:52:34+02:00 Europe/Amsterdam (TRIAL RELEASE)
- Make split_like_shell always unixy
- Remove Module::Load dependency
- Remove done_testing, it requires Test::More 0.88
-------------------------------------------------------------------
Sat Jul 26 11:31:49 UTC 2014 - dimstar@opensuse.org
- Use build conditionals as wanted:
+ Use build conditional 'with/without test'.
+ due to the usage of bcond_without, the DEFAULT is to enable
tests.
+ To skip the tests, one can use "osc build --without test".
-------------------------------------------------------------------
Fri Jul 18 11:45:45 UTC 2014 - chris@computersalat.de
- fix build for SLE 11
* Test::More >= 0.88
- fix deps
-------------------------------------------------------------------
Mon Mar 17 08:29:24 UTC 2014 - coolo@suse.com
- updated to 0.022
Cleaned up remains of former functions
Skip IO layers on <5.8 for 5.6 compatability
Don't swallow pl2bat exceptions
-------------------------------------------------------------------
Wed Jun 5 10:52:28 UTC 2013 - coolo@suse.com
- initial package 0.021
* created by cpanspec 1.78.06

View File

@ -0,0 +1,58 @@
#
# spec file for package perl-ExtUtils-Helpers
#
# Copyright (c) 2016 SUSE LINUX 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-ExtUtils-Helpers
Version: 0.026
Release: 0
%define cpan_name ExtUtils-Helpers
Summary: Various portability utilities for module builders
License: Artistic-1.0 or GPL-1.0+
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/ExtUtils-Helpers/
Source0: http://www.cpan.org/authors/id/L/LE/LEONT/%{cpan_name}-%{version}.tar.gz
Source1: cpanspec.yml
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
%{perl_requires}
%description
This module provides various portable helper functions for module building
modules.
%prep
%setup -q -n %{cpan_name}-%{version}
%build
%{__perl} Makefile.PL INSTALLDIRS=vendor
%{__make} %{?_smp_mflags}
%check
%{__make} test
%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist
%files -f %{name}.files
%defattr(-,root,root,755)
%doc Changes LICENSE README
%changelog