forked from pool/perl-YAML-LibYAML
Accepting request 891820 from devel:languages:perl:autoupdate
- updated to 0.83 see /usr/share/doc/packages/perl-YAML-LibYAML/Changes 0.83 Sat 08 May 2021 11:51:32 PM CEST - Recognize tied variables (PR#101 tinita) - Add license file from included libyaml code (PR#102 tinita) OBS-URL: https://build.opensuse.org/request/show/891820 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-YAML-LibYAML?expand=0&rev=34
This commit is contained in:
parent
64932236cf
commit
dff31afe44
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:02b4c7a3965c6cce173658f31217b9a3884edcc52ce058a8f58c69a56687fe48
|
|
||||||
size 151109
|
|
3
YAML-LibYAML-0.83.tar.gz
Normal file
3
YAML-LibYAML-0.83.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:b47175b4ff397ad75a4f7781d3d83c08637da6ff0bae326af3b389d854bec490
|
||||||
|
size 152593
|
@ -1,3 +1,13 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun May 9 03:10:35 UTC 2021 - Tina Müller <timueller+perl@suse.de>
|
||||||
|
|
||||||
|
- updated to 0.83
|
||||||
|
see /usr/share/doc/packages/perl-YAML-LibYAML/Changes
|
||||||
|
|
||||||
|
0.83 Sat 08 May 2021 11:51:32 PM CEST
|
||||||
|
- Recognize tied variables (PR#101 tinita)
|
||||||
|
- Add license file from included libyaml code (PR#102 tinita)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun May 3 03:14:19 UTC 2020 - Tina Müller <timueller+perl@suse.de>
|
Sun May 3 03:14:19 UTC 2020 - Tina Müller <timueller+perl@suse.de>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-YAML-LibYAML
|
# spec file for package perl-YAML-LibYAML
|
||||||
#
|
#
|
||||||
# Copyright (c) 2020 SUSE LLC
|
# Copyright (c) 2021 SUSE LLC
|
||||||
#
|
#
|
||||||
# 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
|
||||||
@ -16,32 +16,30 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
Name: perl-YAML-LibYAML
|
|
||||||
Version: 0.82
|
|
||||||
Release: 0
|
|
||||||
%define cpan_name YAML-LibYAML
|
%define cpan_name YAML-LibYAML
|
||||||
|
Name: perl-YAML-LibYAML
|
||||||
|
Version: 0.83
|
||||||
|
Release: 0
|
||||||
Summary: Perl YAML Serialization using XS and libyaml
|
Summary: Perl YAML Serialization using XS and libyaml
|
||||||
License: Artistic-1.0 OR GPL-1.0-or-later
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
||||||
Group: Development/Libraries/Perl
|
|
||||||
URL: https://metacpan.org/release/%{cpan_name}
|
URL: https://metacpan.org/release/%{cpan_name}
|
||||||
Source0: https://cpan.metacpan.org/authors/id/T/TI/TINITA/%{cpan_name}-%{version}.tar.gz
|
Source0: https://cpan.metacpan.org/authors/id/T/TI/TINITA/%{cpan_name}-%{version}.tar.gz
|
||||||
Source1: cpanspec.yml
|
Source1: cpanspec.yml
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
||||||
BuildRequires: perl
|
BuildRequires: perl
|
||||||
BuildRequires: perl-macros
|
BuildRequires: perl-macros
|
||||||
BuildRequires: perl(Test::More) >= 0.88
|
BuildRequires: perl(Test::More) >= 0.90
|
||||||
%{perl_requires}
|
%{perl_requires}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Perl YAML Serialization using XS and libyaml
|
Perl YAML Serialization using XS and libyaml
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{cpan_name}-%{version}
|
%autosetup -n %{cpan_name}-%{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/*" ! -name "configure" -print0 | xargs -0 chmod 644
|
||||||
|
|
||||||
%build
|
%build
|
||||||
perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
|
perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
|
||||||
make %{?_smp_mflags}
|
%make_build
|
||||||
|
|
||||||
%check
|
%check
|
||||||
make test
|
make test
|
||||||
@ -52,7 +50,6 @@ make test
|
|||||||
%perl_gen_filelist
|
%perl_gen_filelist
|
||||||
|
|
||||||
%files -f %{name}.files
|
%files -f %{name}.files
|
||||||
%defattr(-,root,root,755)
|
|
||||||
%doc Changes CONTRIBUTING README
|
%doc Changes CONTRIBUTING README
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user