Accepting request 296692 from devel:languages:perl
1 OBS-URL: https://build.opensuse.org/request/show/296692 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Test-File-ShareDir?expand=0&rev=6
This commit is contained in:
commit
cfb9b29e08
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:bcd9bbae9fb1df70ca55cf38d542cb8f3f1c9ace4397f1aa9a3d37bd05599914
|
|
||||||
size 60541
|
|
3
Test-File-ShareDir-1.001001.tar.gz
Normal file
3
Test-File-ShareDir-1.001001.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:c8815ee3644949ad6419616c2706a04b3c22d709bfb610ad5c4cfe78884a8658
|
||||||
|
size 64508
|
@ -1,3 +1,29 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Apr 14 18:04:53 UTC 2015 - coolo@suse.com
|
||||||
|
|
||||||
|
- updated to 1.001001
|
||||||
|
see /usr/share/doc/packages/perl-Test-File-ShareDir/Changes
|
||||||
|
|
||||||
|
1.001001 2015-03-01T05:44:37Z a89c745
|
||||||
|
[TestFixes]
|
||||||
|
- Try to guard against accidentally failing if a test distdir does in fact exist in the "Expect not to exist" test.
|
||||||
|
|
||||||
|
1.001000 2015-02-28T11:09:38Z d703dd2
|
||||||
|
[Dependencies::Stats]
|
||||||
|
- Dependencies changed since 1.000005, see misc/*.deps* for details
|
||||||
|
- configure: +1 (recommends: -1, suggests: +1)
|
||||||
|
- develop: +10 ↑3 -2 (suggests: +1 ↑2)
|
||||||
|
- runtime: +3 (suggests: +1)
|
||||||
|
- test: +1 (recommends: -2, suggests: +2)
|
||||||
|
|
||||||
|
[Deprecations]
|
||||||
|
- OO interfaces have a ->add_to_inc method which is being replaced with the more generic ->register, which wil retain
|
||||||
|
meaning when the interface no longer actually uses @INC
|
||||||
|
|
||||||
|
[Features]
|
||||||
|
- OO interfaces now all have a ->register and a ->clear method.
|
||||||
|
- Now supports exporting with_dist_dir and with_module_dir functions from Test::File::ShareDir
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Sep 15 12:52:33 UTC 2014 - coolo@suse.com
|
Mon Sep 15 12:52:33 UTC 2014 - coolo@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-Test-File-ShareDir
|
# spec file for package perl-Test-File-ShareDir
|
||||||
#
|
#
|
||||||
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -17,10 +17,10 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: perl-Test-File-ShareDir
|
Name: perl-Test-File-ShareDir
|
||||||
Version: 1.000005
|
Version: 1.001001
|
||||||
Release: 0
|
Release: 0
|
||||||
%define cpan_name Test-File-ShareDir
|
%define cpan_name Test-File-ShareDir
|
||||||
Summary: Create a Fake ShareDir for your modules for testing.
|
Summary: Create a Fake ShareDir for your modules for testing
|
||||||
License: Artistic-1.0 or GPL-1.0+
|
License: Artistic-1.0 or GPL-1.0+
|
||||||
Group: Development/Libraries/Perl
|
Group: Development/Libraries/Perl
|
||||||
Url: http://search.cpan.org/dist/Test-File-ShareDir/
|
Url: http://search.cpan.org/dist/Test-File-ShareDir/
|
||||||
@ -33,17 +33,29 @@ BuildRequires: perl(Class::Tiny)
|
|||||||
BuildRequires: perl(File::Copy::Recursive)
|
BuildRequires: perl(File::Copy::Recursive)
|
||||||
BuildRequires: perl(File::ShareDir) >= 1.00
|
BuildRequires: perl(File::ShareDir) >= 1.00
|
||||||
BuildRequires: perl(Path::Tiny) >= 0.018
|
BuildRequires: perl(Path::Tiny) >= 0.018
|
||||||
|
BuildRequires: perl(Scope::Guard)
|
||||||
BuildRequires: perl(Test::Fatal)
|
BuildRequires: perl(Test::Fatal)
|
||||||
BuildRequires: perl(Test::More) >= 0.96
|
BuildRequires: perl(Test::More) >= 0.96
|
||||||
|
BuildRequires: perl(parent)
|
||||||
Requires: perl(Class::Tiny)
|
Requires: perl(Class::Tiny)
|
||||||
Requires: perl(File::Copy::Recursive)
|
Requires: perl(File::Copy::Recursive)
|
||||||
Requires: perl(File::ShareDir) >= 1.00
|
Requires: perl(File::ShareDir) >= 1.00
|
||||||
Requires: perl(Path::Tiny) >= 0.018
|
Requires: perl(Path::Tiny) >= 0.018
|
||||||
|
Requires: perl(Scope::Guard)
|
||||||
|
Requires: perl(parent)
|
||||||
%{perl_requires}
|
%{perl_requires}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
This module only has support for creating 'new' style share dirs and are
|
'Test::File::ShareDir' is some low level plumbing to enable a distribution
|
||||||
NOT compatible with old File::ShareDirs.
|
to perform tests while consuming its own 'share' directories in a manner
|
||||||
|
similar to how they will be once installed.
|
||||||
|
|
||||||
|
This allows 'File::ShareDir' to see the _latest_ version of content instead
|
||||||
|
of simply whatever is installed on whichever target system you happen to be
|
||||||
|
testing on.
|
||||||
|
|
||||||
|
*Note:* This module only has support for creating 'new' style share dirs
|
||||||
|
and are NOT compatible with old File::ShareDirs.
|
||||||
|
|
||||||
For this reason, unless you have File::ShareDir 1.00 or later installed,
|
For this reason, unless you have File::ShareDir 1.00 or later installed,
|
||||||
this module will not be usable by you.
|
this module will not be usable by you.
|
||||||
@ -65,6 +77,6 @@ this module will not be usable by you.
|
|||||||
|
|
||||||
%files -f %{name}.files
|
%files -f %{name}.files
|
||||||
%defattr(-,root,root,755)
|
%defattr(-,root,root,755)
|
||||||
%doc Changes dist.ini.meta LICENSE perlcritic.rc README weaver.ini
|
%doc Changes LICENSE README
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
Reference in New Issue
Block a user