forked from pool/perl-Data-Section
Accepting request 1046357 from devel:languages:perl:autoupdate
- updated to 0.200008 see /usr/share/doc/packages/perl-Data-Section/Changes 0.200008 2022-12-31 13:50:15-05:00 America/New_York - fix to some example code (thanks, Graham Ollis) - update packaging and metadata - minimum required Perl is now v5.12 OBS-URL: https://build.opensuse.org/request/show/1046357 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Data-Section?expand=0&rev=22
This commit is contained in:
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:cd937e5b70e34aab885ff414e2a6d19e4783b7c28fc3cda5145b230514ebb4de
|
|
||||||
size 22094
|
|
3
Data-Section-0.200008.tar.gz
Normal file
3
Data-Section-0.200008.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:83acc7a55d3dd7ed36e9d78d350af3138c69cfa178a44765822712ff433b990e
|
||||||
|
size 22583
|
@@ -1,3 +1,14 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Jan 1 03:07:33 UTC 2023 - Tina Müller <timueller+perl@suse.de>
|
||||||
|
|
||||||
|
- updated to 0.200008
|
||||||
|
see /usr/share/doc/packages/perl-Data-Section/Changes
|
||||||
|
|
||||||
|
0.200008 2022-12-31 13:50:15-05:00 America/New_York
|
||||||
|
- fix to some example code (thanks, Graham Ollis)
|
||||||
|
- update packaging and metadata
|
||||||
|
- minimum required Perl is now v5.12
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 10 05:23:40 UTC 2017 - coolo@suse.com
|
Mon Jul 10 05:23:40 UTC 2017 - coolo@suse.com
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-Data-Section
|
# spec file for package perl-Data-Section
|
||||||
#
|
#
|
||||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2023 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
|
||||||
@@ -12,24 +12,23 @@
|
|||||||
# license that conforms to the Open Source Definition (Version 1.9)
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
# published by the Open Source Initiative.
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
Name: perl-Data-Section
|
|
||||||
Version: 0.200007
|
|
||||||
Release: 0
|
|
||||||
%define cpan_name Data-Section
|
%define cpan_name Data-Section
|
||||||
Summary: Read Multiple Hunks of Data Out of Your Data Section
|
Name: perl-Data-Section
|
||||||
License: Artistic-1.0 or GPL-1.0+
|
Version: 0.200008
|
||||||
Group: Development/Libraries/Perl
|
Release: 0
|
||||||
Url: http://search.cpan.org/dist/Data-Section/
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
||||||
|
Summary: Read multiple hunks of data out of your DATA section
|
||||||
|
URL: https://metacpan.org/release/%{cpan_name}
|
||||||
Source0: https://cpan.metacpan.org/authors/id/R/RJ/RJBS/%{cpan_name}-%{version}.tar.gz
|
Source0: https://cpan.metacpan.org/authors/id/R/RJ/RJBS/%{cpan_name}-%{version}.tar.gz
|
||||||
Source1: cpanspec.yml
|
Source1: cpanspec.yml
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
||||||
BuildRequires: perl
|
BuildRequires: perl
|
||||||
BuildRequires: perl-macros
|
BuildRequires: perl-macros
|
||||||
|
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.78
|
||||||
BuildRequires: perl(MRO::Compat) >= 0.09
|
BuildRequires: perl(MRO::Compat) >= 0.09
|
||||||
BuildRequires: perl(Sub::Exporter) >= 0.979
|
BuildRequires: perl(Sub::Exporter) >= 0.979
|
||||||
BuildRequires: perl(Test::FailWarnings)
|
BuildRequires: perl(Test::FailWarnings)
|
||||||
@@ -44,14 +43,14 @@ line-oriented data in your module's DATA section. It was written to allow
|
|||||||
modules to store their own templates, but probably has other uses.
|
modules to store their own templates, but probably has other uses.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{cpan_name}-%{version}
|
%autosetup -n %{cpan_name}-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
perl Makefile.PL INSTALLDIRS=vendor
|
||||||
%{__make} %{?_smp_mflags}
|
%make_build
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%{__make} test
|
make test
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%perl_make_install
|
%perl_make_install
|
||||||
@@ -59,7 +58,6 @@ modules to store their own templates, but probably has other uses.
|
|||||||
%perl_gen_filelist
|
%perl_gen_filelist
|
||||||
|
|
||||||
%files -f %{name}.files
|
%files -f %{name}.files
|
||||||
%defattr(-,root,root,755)
|
|
||||||
%doc Changes README
|
%doc Changes README
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user