1
0

Compare commits

...

2 Commits

Author SHA256 Message Date
Ana Guerrero
83d2c9e2d5 Accepting request 1235292 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/1235292
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-YAML-Tiny?expand=0&rev=19
2025-01-07 19:50:24 +00:00
Tina Müller
01c4ac8adb - updated to 1.760.0 (1.76)
see /usr/share/doc/packages/perl-YAML-Tiny/Changes
  1.76    2024-12-16 18:59:46Z
          [FIXED]
          - revert change from #60: "yes", "y" etc are not actually booleans.
            (see issue #66).
  1.75    2024-12-15 21:24:54Z
          [FIXED]
          - fixed regression in %QUOTE (Nathan Monfils, PR#60) [later reverted
            in release 1.76, see above)
          - fix version comparison logic for forward compatibility (BooK, PR#63)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-YAML-Tiny?expand=0&rev=30
2025-01-06 16:54:10 +00:00
4 changed files with 28 additions and 8 deletions

BIN
YAML-Tiny-1.74.tar.gz (Stored with Git LFS)

Binary file not shown.

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

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

View File

@ -1,3 +1,19 @@
-------------------------------------------------------------------
Tue Dec 17 05:36:26 UTC 2024 - Tina Müller <timueller+perl@suse.de>
- updated to 1.760.0 (1.76)
see /usr/share/doc/packages/perl-YAML-Tiny/Changes
1.76 2024-12-16 18:59:46Z
[FIXED]
- revert change from #60: "yes", "y" etc are not actually booleans.
(see issue #66).
1.75 2024-12-15 21:24:54Z
[FIXED]
- fixed regression in %QUOTE (Nathan Monfils, PR#60) [later reverted
in release 1.76, see above)
- fix version comparison logic for forward compatibility (BooK, PR#63)
-------------------------------------------------------------------
Fri Mar 24 03:08:42 UTC 2023 - Tina Müller <timueller+perl@suse.de>

View File

@ -1,7 +1,7 @@
#
# spec file for package perl-YAML-Tiny
#
# Copyright (c) 2023 SUSE LLC
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -18,12 +18,14 @@
%define cpan_name YAML-Tiny
Name: perl-YAML-Tiny
Version: 1.74
Version: 1.760.0
Release: 0
# 1.76 -> normalize -> 1.760.0
%define cpan_version 1.76
License: Artistic-1.0 OR GPL-1.0-or-later
Summary: Read/Write YAML files with as little code as possible
URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/E/ET/ETHER/%{cpan_name}-%{version}.tar.gz
Source0: https://cpan.metacpan.org/authors/id/E/ET/ETHER/%{cpan_name}-%{cpan_version}.tar.gz
Source1: cpanspec.yml
BuildArch: noarch
BuildRequires: perl
@ -31,6 +33,8 @@ BuildRequires: perl-macros
BuildRequires: perl(File::Temp) >= 0.19
BuildRequires: perl(JSON::PP)
BuildRequires: perl(Test::More) >= 0.88
Provides: perl(YAML::Tiny) = %{version}
%undefine __perllib_provides
%{perl_requires}
%description
@ -71,9 +75,9 @@ the order of your YAML data. But it should round-trip from Perl structure
to file and back again just fine.
%prep
%autosetup -n %{cpan_name}-%{version}
%autosetup -n %{cpan_name}-%{cpan_version}
find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path "*/script/*" ! -name "configure" -print0 | xargs -0 chmod 644
find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path "*/script/*" ! -path "*/scripts/*" ! -name "configure" -print0 | xargs -0 chmod 644
%build
perl Makefile.PL INSTALLDIRS=vendor