forked from pool/perl-YAML
Compare commits
36 Commits
a5a9292952
...
0d4ed665cf
Author | SHA256 | Date | |
---|---|---|---|
0d4ed665cf | |||
db01f7cc64 | |||
e79733aa5f | |||
2b06081e84 | |||
0b80262d03 | |||
|
316c9949a5 | ||
1a248603de | |||
|
68ab4553df | ||
5dfa8f6e5e | |||
|
36b3826791 | ||
be9b981fb9 | |||
7cb23b8a49 | |||
492fbaf3f5 | |||
974a6bb917 | |||
b94f102d25 | |||
241dbb5a00 | |||
41f8afab08 | |||
42b09a0329 | |||
55ef5f1910 | |||
dd2ddbd534 | |||
f775fbe0b7 | |||
|
5e5bcc8ce0 | ||
|
b5152a03d2 | ||
|
b3b0555060 | ||
|
626f37e38a | ||
|
52668872c8 | ||
|
357b72ae33 | ||
|
181462f219 | ||
|
0452984882 | ||
9792a6ccfe | |||
31ecbf5861 | |||
|
97837a5d49 | ||
|
ab59eb09b3 | ||
|
58f4d36960 | ||
|
b56cff9661 | ||
|
0146f6b9b1 |
BIN
YAML-1.27.tar.gz
(Stored with Git LFS)
BIN
YAML-1.27.tar.gz
(Stored with Git LFS)
Binary file not shown.
BIN
YAML-1.31.tar.gz
(Stored with Git LFS)
Normal file
BIN
YAML-1.31.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@@ -1,3 +1,46 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 8 23:12:07 UTC 2024 - Tina Müller <tina.mueller@suse.com>
|
||||
|
||||
- Fix disabling of __perllib_provides
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 28 03:10:15 UTC 2023 - Tina Müller <timueller+perl@suse.de>
|
||||
|
||||
- updated to 1.31
|
||||
see /usr/share/doc/packages/perl-YAML/Changes
|
||||
|
||||
1.31 Wed Dec 27 07:10:56 AM PST 2023
|
||||
- Update docs to recommend YAML::PP
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 28 03:14:29 UTC 2020 - <timueller+perl@suse.de>
|
||||
|
||||
- updated to 1.30
|
||||
see /usr/share/doc/packages/perl-YAML/Changes
|
||||
|
||||
1.30 Mon 27 Jan 2020 11:09:46 PM CET
|
||||
- Breaking Change: Set $YAML::LoadBlessed default to false to make it more
|
||||
secure
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun May 12 05:35:05 UTC 2019 - Stephan Kulow <coolo@suse.com>
|
||||
|
||||
- updated to 1.29
|
||||
see /usr/share/doc/packages/perl-YAML/Changes
|
||||
|
||||
1.29 Sat 11 May 2019 10:26:54 AM CEST
|
||||
- Fix regex for alias to match the one for anchors (PR#214 TINITA)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Apr 29 05:43:52 UTC 2019 - Stephan Kulow <coolo@suse.com>
|
||||
|
||||
- updated to 1.28
|
||||
see /usr/share/doc/packages/perl-YAML/Changes
|
||||
|
||||
1.28 Sun 28 Apr 2019 11:46:21 AM CEST
|
||||
- Security fix: only enable loading globs when $LoadCode is set (PR#213
|
||||
TINITA)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Nov 8 07:08:58 UTC 2018 - Stephan Kulow <coolo@suse.com>
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package perl-YAML
|
||||
#
|
||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# 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
|
||||
@@ -16,23 +16,45 @@
|
||||
#
|
||||
|
||||
|
||||
Name: perl-YAML
|
||||
Version: 1.27
|
||||
Release: 0
|
||||
%define cpan_name YAML
|
||||
Summary: YAML Ain't Markup Language™
|
||||
Name: perl-YAML
|
||||
Version: 1.310.0
|
||||
Release: 0
|
||||
%define cpan_version 1.31
|
||||
License: Artistic-1.0 OR GPL-1.0-or-later
|
||||
Group: Development/Libraries/Perl
|
||||
Url: https://metacpan.org/release/%{cpan_name}
|
||||
Source0: https://cpan.metacpan.org/authors/id/T/TI/TINITA/%{cpan_name}-%{version}.tar.gz
|
||||
Summary: YAML Ain't Markup Language™
|
||||
URL: https://metacpan.org/release/%{cpan_name}
|
||||
Source0: https://cpan.metacpan.org/authors/id/I/IN/INGY/%{cpan_name}-%{cpan_version}.tar.gz
|
||||
Source1: cpanspec.yml
|
||||
BuildArch: noarch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: perl
|
||||
BuildRequires: perl-macros
|
||||
BuildRequires: perl(Test::Deep)
|
||||
BuildRequires: perl(Test::More) >= 0.88
|
||||
BuildRequires: perl(Test::YAML) >= 1.05
|
||||
Provides: perl(YAML) = %{version}
|
||||
Provides: perl(YAML::Any) = %{version}
|
||||
Provides: perl(YAML::Dumper)
|
||||
Provides: perl(YAML::Dumper::Base)
|
||||
Provides: perl(YAML::Error)
|
||||
Provides: perl(YAML::Loader)
|
||||
Provides: perl(YAML::Loader::Base)
|
||||
Provides: perl(YAML::Marshall)
|
||||
Provides: perl(YAML::Mo)
|
||||
Provides: perl(YAML::Node)
|
||||
Provides: perl(YAML::Tag)
|
||||
Provides: perl(YAML::Type::blessed)
|
||||
Provides: perl(YAML::Type::code)
|
||||
Provides: perl(YAML::Type::glob)
|
||||
Provides: perl(YAML::Type::ref)
|
||||
Provides: perl(YAML::Type::regexp)
|
||||
Provides: perl(YAML::Type::undef)
|
||||
Provides: perl(YAML::Types)
|
||||
Provides: perl(YAML::Warning)
|
||||
Provides: perl(yaml_mapping)
|
||||
Provides: perl(yaml_scalar)
|
||||
Provides: perl(yaml_sequence)
|
||||
%undefine __perllib_provides
|
||||
%{perl_requires}
|
||||
|
||||
%description
|
||||
@@ -46,14 +68,14 @@ programming languages. (Including Perl!!!)
|
||||
For information on the YAML syntax, please refer to the YAML specification.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{cpan_name}-%{version}
|
||||
%autosetup -n %{cpan_name}-%{cpan_version}
|
||||
|
||||
%build
|
||||
perl Makefile.PL INSTALLDIRS=vendor
|
||||
%{__make} %{?_smp_mflags}
|
||||
%make_build
|
||||
|
||||
%check
|
||||
%{__make} test
|
||||
make test
|
||||
|
||||
%install
|
||||
%perl_make_install
|
||||
@@ -61,7 +83,6 @@ perl Makefile.PL INSTALLDIRS=vendor
|
||||
%perl_gen_filelist
|
||||
|
||||
%files -f %{name}.files
|
||||
%defattr(-,root,root,755)
|
||||
%doc Changes CONTRIBUTING README
|
||||
%license LICENSE
|
||||
|
||||
|
Reference in New Issue
Block a user