Accepting request 635487 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/635487 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-HTML-Format?expand=0&rev=28
This commit is contained in:
commit
98b7824d15
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:44a3af6b9d0184bb4cc300624352760e4435c3d802521742f42dd228e44d4a95
|
|
||||||
size 48697
|
|
BIN
HTML-Format-2.12.tar.gz
(Stored with Git LFS)
Normal file
BIN
HTML-Format-2.12.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,3 +1,17 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Sep 12 13:03:08 UTC 2018 - pmonrealgonzalez@suse.com
|
||||||
|
|
||||||
|
- updated to 2.12
|
||||||
|
see /usr/share/doc/packages/perl-HTML-Format/Changes
|
||||||
|
|
||||||
|
2.12 2015-10-10 17:49:45+01:00 Europe/London
|
||||||
|
- Minor test related fixes
|
||||||
|
- Transition to using File::Slurper in place of File::Slurp
|
||||||
|
Thanks to Karen Etheridge for the patch
|
||||||
|
- Add Travis CI integration
|
||||||
|
|
||||||
|
- Cleaned with spec-cleaner
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat May 2 09:23:58 UTC 2015 - coolo@suse.com
|
Sat May 2 09:23:58 UTC 2015 - coolo@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-HTML-Format
|
# spec file for package perl-HTML-Format
|
||||||
#
|
#
|
||||||
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# 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,21 +16,20 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
Name: perl-HTML-Format
|
|
||||||
Version: 2.11
|
|
||||||
Release: 0
|
|
||||||
%define cpan_name HTML-Format
|
%define cpan_name HTML-Format
|
||||||
|
Name: perl-HTML-Format
|
||||||
|
Version: 2.12
|
||||||
|
Release: 0
|
||||||
Summary: Base class for HTML formatters
|
Summary: Base class for HTML formatters
|
||||||
License: Artistic-1.0 or GPL-1.0+
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
||||||
Group: Development/Libraries/Perl
|
Group: Development/Libraries/Perl
|
||||||
Url: http://search.cpan.org/dist/HTML-Format/
|
Url: http://search.cpan.org/dist/HTML-Format/
|
||||||
Source0: http://www.cpan.org/authors/id/N/NI/NIGELM/%{cpan_name}-%{version}.tar.gz
|
Source0: http://www.cpan.org/authors/id/N/NI/NIGELM/%{cpan_name}-%{version}.tar.gz
|
||||||
Source1: cpanspec.yml
|
Source1: cpanspec.yml
|
||||||
BuildArch: noarch
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
||||||
BuildRequires: perl
|
BuildRequires: perl
|
||||||
BuildRequires: perl-macros
|
BuildRequires: perl-macros
|
||||||
BuildRequires: perl(File::Slurp)
|
BuildRequires: perl(File::Slurp)
|
||||||
|
BuildRequires: perl(File::Slurper)
|
||||||
BuildRequires: perl(Font::Metrics::Courier)
|
BuildRequires: perl(Font::Metrics::Courier)
|
||||||
BuildRequires: perl(Font::Metrics::CourierBold)
|
BuildRequires: perl(Font::Metrics::CourierBold)
|
||||||
BuildRequires: perl(Font::Metrics::CourierBoldOblique)
|
BuildRequires: perl(Font::Metrics::CourierBoldOblique)
|
||||||
@ -46,7 +45,10 @@ BuildRequires: perl(Font::Metrics::TimesRoman)
|
|||||||
BuildRequires: perl(HTML::Element) >= 3.15
|
BuildRequires: perl(HTML::Element) >= 3.15
|
||||||
BuildRequires: perl(HTML::TreeBuilder)
|
BuildRequires: perl(HTML::TreeBuilder)
|
||||||
BuildRequires: perl(Module::Build) >= 0.360100
|
BuildRequires: perl(Module::Build) >= 0.360100
|
||||||
|
BuildRequires: perl(Test::CPAN::Meta)
|
||||||
|
BuildRequires: perl(Test::EOL)
|
||||||
BuildRequires: perl(Test::More) >= 0.96
|
BuildRequires: perl(Test::More) >= 0.96
|
||||||
|
BuildRequires: perl(Test::NoTabs)
|
||||||
BuildRequires: perl(parent)
|
BuildRequires: perl(parent)
|
||||||
Requires: perl(Font::Metrics::Courier)
|
Requires: perl(Font::Metrics::Courier)
|
||||||
Requires: perl(Font::Metrics::CourierBold)
|
Requires: perl(Font::Metrics::CourierBold)
|
||||||
@ -63,6 +65,7 @@ Requires: perl(Font::Metrics::TimesRoman)
|
|||||||
Requires: perl(HTML::Element) >= 3.15
|
Requires: perl(HTML::Element) >= 3.15
|
||||||
Requires: perl(HTML::TreeBuilder)
|
Requires: perl(HTML::TreeBuilder)
|
||||||
Requires: perl(parent)
|
Requires: perl(parent)
|
||||||
|
BuildArch: noarch
|
||||||
%{perl_requires}
|
%{perl_requires}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -72,7 +75,7 @@ Base class for HTML formatters
|
|||||||
%setup -q -n %{cpan_name}-%{version}
|
%setup -q -n %{cpan_name}-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%{__perl} Build.PL installdirs=vendor
|
perl Build.PL installdirs=vendor
|
||||||
./Build build flags=%{?_smp_mflags}
|
./Build build flags=%{?_smp_mflags}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
@ -84,6 +87,7 @@ Base class for HTML formatters
|
|||||||
|
|
||||||
%files -f %{name}.files
|
%files -f %{name}.files
|
||||||
%defattr(-,root,root,755)
|
%defattr(-,root,root,755)
|
||||||
%doc Changes LICENSE README
|
%license LICENSE
|
||||||
|
%doc Changes README
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
x
Reference in New Issue
Block a user