8
0

Accepting request 640768 from devel:languages:perl:CPAN-T

- Created

OBS-URL: https://build.opensuse.org/request/show/640768
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Test-WriteVariants?expand=0&rev=1
This commit is contained in:
2018-10-09 09:17:40 +00:00
committed by Git OBS Bridge
commit 386bcbb6b7
5 changed files with 104 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

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6349c2bdee1533463061ad8eeea8621d8f8c0d4f9d7ae1b1eecdaf03cc906487
size 23334

View File

@@ -0,0 +1,4 @@
-------------------------------------------------------------------
Tue Oct 9 09:08:14 UTC 2018 - Dirk Stoecker <opensuse@dstoecker.de>
- Created

View File

@@ -0,0 +1,73 @@
#
# spec file for package perl-Test-WriteVariants
#
# 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
# 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-Test-WriteVariants
Version: 0.014
Release: 0
%define cpan_name Test-WriteVariants
Summary: Dynamic generation of tests in nested combinations of contexts
License: Artistic-1.0 or GPL-1.0+
Group: Development/Libraries/Perl
Url: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/R/RE/REHSACK/%{cpan_name}-%{version}.tar.gz
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(Data::Tumbler) >= 0.002
BuildRequires: perl(Module::Pluggable::Object) >= 4.9
BuildRequires: perl(Module::Runtime)
BuildRequires: perl(Test::Directory) >= 0.041
BuildRequires: perl(Test::More) >= 0.88
BuildRequires: perl(Test::Most)
Requires: perl(Data::Tumbler) >= 0.002
Requires: perl(Module::Pluggable::Object) >= 4.9
Requires: perl(Module::Runtime)
Recommends: perl(File::Find::Rule) >= 0.34
%{perl_requires}
%description
Test::WriteVariants is a utility to create variants of a common test.
Given the situation - like in DBI where some tests are the same for
DBI::SQL::Nano and it's drop-in replacement SQL::Statement. Or a
distribution duo having a Pure-Perl and an XS variant - and the same test
shall be used to ensure XS and PP version are really drop-in replacements
for each other.
%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 GPL-1 GPL-2.0 README.md TODO
%license ARTISTIC-1.0 LICENSE
%changelog