1
0

Accepting request 296263 from devel:languages:perl:autoupdate

automatic update

OBS-URL: https://build.opensuse.org/request/show/296263
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-YAML-Tiny?expand=0&rev=18
This commit is contained in:
Stephan Kulow 2015-04-15 05:07:22 +00:00 committed by Git OBS Bridge
parent 95a6915dc1
commit 4acc180407
4 changed files with 78 additions and 15 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6654a73dbb0c4bb022c830303f00607fe57602fef1c608f00ae64720be1a5f88
size 71296

3
YAML-Tiny-1.66.tar.gz Normal file
View File

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

View File

@ -1,3 +1,69 @@
-------------------------------------------------------------------
Tue Apr 14 17:39:05 UTC 2015 - coolo@suse.com
- updated to 1.66
see /usr/share/doc/packages/perl-YAML-Tiny/Changes
1.66 2015-03-16 22:26:30Z
[CHANGED]
- removed bundled Test::TempDir::Tiny to rely on File::Temp
for temporary directories during testing
1.65 2015-03-13 23:02:34Z
[CHANGED]
- artifacts left behind from testing are now cleaned up (GH#34)
1.64 2014-10-08 02:56:30Z
[CHANGED]
- remove silencing of any errors encountered while loading
Scalar::Util (GH#33, Graham Knop)
- now using JSON::MaybeXS in tests instead of JSON.pm
1.63 2014-06-11 21:58:18Z
[FIXED]
- incorrect error messages fixed, when $@ is clobbered when Carp
wasn't loaded (GH#30, GH#31, Hilko Bengen)
[CHANGED]
- now checking for, and erroring on, duplicate keys found in a hash
(GH#32, Hilko Bengen)
1.62 2014-03-16 12:28:44Z
[FIXED]
- fix handling of trailing colon in key name (RT#92916, H.Merijn
Brand)
1.61 2014-02-24 16:59:49Z
[FIXED]
- fixed a test for VMS (RT#93297, Craig Berry)
1.60 2014-02-13 20:31:56Z
- shipping 1.59 as stable, with no changes.
1.59 2014-02-06 03:10:35Z (TRIAL RELEASE)
[CHANGED]
- numeric values are now quoted whenever they've been used as a string
(fixes inconsistent behaviour seen with numeric values, due to
differences between the XS and pure-perl variants of Data::Dumper).
(github issue #24)
- numeric hash keys are now always quoted.
-------------------------------------------------------------------
Sun Feb 9 13:31:12 UTC 2014 - coolo@suse.com

View File

@ -1,7 +1,7 @@
#
# spec file for package perl-YAML-Tiny
#
# 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
# remain the property of their copyright owners, unless otherwise agreed
@ -17,11 +17,11 @@
Name: perl-YAML-Tiny
Version: 1.58
Version: 1.66
Release: 0
%define cpan_name YAML-Tiny
Summary: Read/Write YAML files with as little code as possible
License: Artistic-1.0 or GPL-1.0+
License: GPL-1.0+ or Artistic-1.0
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/YAML-Tiny/
Source: http://www.cpan.org/authors/id/E/ET/ETHER/%{cpan_name}-%{version}.tar.gz
@ -29,10 +29,6 @@ BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(Module::Build::Tiny) >= 0.034
BuildRequires: perl(Test::More) >= 0.99
BuildRequires: perl(version)
%{perl_requires}
%description
@ -77,18 +73,19 @@ Perl structure to file and back again just fine.
find . -type f -print0 | xargs -0 chmod 644
%build
%{__perl} Build.PL --installdirs=vendor
./Build build --flags=%{?_smp_mflags}
%{__perl} Makefile.PL INSTALLDIRS=vendor
%{__make} %{?_smp_mflags}
%check
./Build test
%{__make} test
%install
./Build install --destdir=%{buildroot} --create_packlist=0
%perl_make_install
%perl_process_packlist
%perl_gen_filelist
%files -f %{name}.files
%defattr(-,root,root,755)
%doc Changes CONTRIBUTING LICENSE README README.md
%doc Changes CONTRIBUTING LICENSE README
%changelog