Accepting request 458761 from devel:languages:perl:autoupdate
automatic update OBS-URL: https://build.opensuse.org/request/show/458761 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Module-Install-AutomatedTester?expand=0&rev=5
This commit is contained in:
committed by
Git OBS Bridge
parent
630e3d7c74
commit
be3ca6dc81
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:28db12ca952f5c7ea0cd329b664a21e6bbeae30060dad75d2772263de77bfaa9
|
||||
size 23330
|
3
Module-Install-AutomatedTester-0.04.tar.gz
Normal file
3
Module-Install-AutomatedTester-0.04.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b8c5ed8d945b841a843237f227125cc65f01eef283df3e9ecbcb052c7e98a22f
|
||||
size 28658
|
28
cpanspec.yml
Normal file
28
cpanspec.yml
Normal 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
|
@@ -1,3 +1,12 @@
|
||||
-------------------------------------------------------------------
|
||||
Sat Feb 18 06:57:00 UTC 2017 - coolo@suse.com
|
||||
|
||||
- updated to 0.04
|
||||
see /usr/share/doc/packages/perl-Module-Install-AutomatedTester/Changes
|
||||
|
||||
0.04 Fri Feb 17 13:29:22 GMT 2017
|
||||
- Handle perls without dot in @INC
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 21 20:21:38 UTC 2011 - coolo@novell.com
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package perl-Module-Install-AutomatedTester
|
||||
#
|
||||
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2017 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
|
||||
@@ -16,24 +16,23 @@
|
||||
#
|
||||
|
||||
|
||||
|
||||
Name: perl-Module-Install-AutomatedTester
|
||||
Version: 0.02
|
||||
Release: 1
|
||||
License: GPL+ or Artistic
|
||||
Version: 0.04
|
||||
Release: 0
|
||||
%define cpan_name Module-Install-AutomatedTester
|
||||
Summary: A Module::Install extension to detect whether we are being tested by CPAN Testers.
|
||||
Url: http://search.cpan.org/dist/Module-Install-AutomatedTester/
|
||||
Summary: Module::Install extension to detect whether we are being tested by CPAN Testers
|
||||
License: Artistic-1.0 or GPL-1.0+
|
||||
Group: Development/Libraries/Perl
|
||||
#Source: http://www.cpan.org/authors/id/B/BI/BINGOS/Module-Install-AutomatedTester-%{version}.tar.gz
|
||||
Source: %{cpan_name}-%{version}.tar.gz
|
||||
BuildRequires: perl(Capture::Tiny) >= 0.05
|
||||
BuildRequires: perl(Module::Install) >= 0.85
|
||||
Url: http://search.cpan.org/dist/Module-Install-AutomatedTester/
|
||||
Source0: https://cpan.metacpan.org/authors/id/B/BI/BINGOS/%{cpan_name}-%{version}.tar.gz
|
||||
Source1: cpanspec.yml
|
||||
BuildArch: noarch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: perl
|
||||
BuildRequires: perl-macros
|
||||
BuildRequires: perl(Capture::Tiny) >= 0.05
|
||||
BuildRequires: perl(Module::Install) >= 0.85
|
||||
Requires: perl(Module::Install) >= 0.85
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildArch: noarch
|
||||
%{perl_requires}
|
||||
|
||||
%description
|
||||
@@ -42,10 +41,9 @@ distributions uploaded to CPAN. Sometimes we want to know if our
|
||||
distribution is being tested by one of these gallant individuals and make
|
||||
them do some extra work.
|
||||
|
||||
Module::Install::AutomatedTesters is a the Module::Install manpage
|
||||
extension that adds two extra commands to detect if the disttribution is
|
||||
being run under a CPAN Tester environment so that we can do extra stuff or
|
||||
skip stuff.
|
||||
Module::Install::AutomatedTesters is a Module::Install extension that adds
|
||||
two extra commands to detect if the disttribution is being run under a CPAN
|
||||
Tester environment so that we can do extra stuff or skip stuff.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{cpan_name}-%{version}
|
||||
@@ -62,11 +60,9 @@ skip stuff.
|
||||
%perl_process_packlist
|
||||
%perl_gen_filelist
|
||||
|
||||
%clean
|
||||
%{__rm} -rf %{buildroot}
|
||||
|
||||
%files -f %{name}.files
|
||||
%defattr(644,root,root,755)
|
||||
%doc Changes have_make LICENSE README
|
||||
%defattr(-,root,root,755)
|
||||
%doc Changes have_make README
|
||||
%license LICENSE
|
||||
|
||||
%changelog
|
||||
|
Reference in New Issue
Block a user