Accepting request 443138 from devel:languages:perl:autoupdate
automatic update OBS-URL: https://build.opensuse.org/request/show/443138 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Pod-Simple?expand=0&rev=13
This commit is contained in:
committed by
Git OBS Bridge
parent
6fa8dbf8d8
commit
dc6819aa85
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:db2a1ff4ce8706349e487cdbdd16c17ed498b1cb2c3da518f2a359d963cc43e3
|
|
||||||
size 280059
|
|
3
Pod-Simple-3.35.tar.gz
Normal file
3
Pod-Simple-3.35.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:99a120ccd2146e8b352b7778f7ae021f7525419764eb05b8125400b6560ce13d
|
||||||
|
size 280162
|
@@ -1,3 +1,22 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Dec 2 06:58:53 UTC 2016 - coolo@suse.com
|
||||||
|
|
||||||
|
- updated to 3.35
|
||||||
|
see /usr/share/doc/packages/perl-Pod-Simple/ChangeLog
|
||||||
|
|
||||||
|
* Release 3.35
|
||||||
|
2016-11-29 Karl Williamson <khw@cpan.org>
|
||||||
|
Needed to 'make manifest' before uploading to CPAN. No changes beyond
|
||||||
|
version bump
|
||||||
|
|
||||||
|
* Release 3.35
|
||||||
|
2016-11-29 Karl Williamson <khw@cpan.org>
|
||||||
|
Stabilize t/search50.t. Thanks to rurban for the patch!
|
||||||
|
Turn off utf8 warnings when trying to see if a file is UTF-8 or not.
|
||||||
|
|
||||||
|
* Release 3.33
|
||||||
|
No changes since 3.32.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Nov 4 10:22:39 UTC 2015 - coolo@suse.com
|
Wed Nov 4 10:22:39 UTC 2015 - coolo@suse.com
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-Pod-Simple
|
# spec file for package perl-Pod-Simple
|
||||||
#
|
#
|
||||||
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2016 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
|
||||||
@@ -17,14 +17,14 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: perl-Pod-Simple
|
Name: perl-Pod-Simple
|
||||||
Version: 3.32
|
Version: 3.35
|
||||||
Release: 0
|
Release: 0
|
||||||
%define cpan_name Pod-Simple
|
%define cpan_name Pod-Simple
|
||||||
Summary: Framework for Parsing Pod
|
Summary: Framework for Parsing Pod
|
||||||
License: Artistic-1.0 or GPL-1.0+
|
License: Artistic-1.0 or GPL-1.0+
|
||||||
Group: Development/Libraries/Perl
|
Group: Development/Libraries/Perl
|
||||||
Url: http://search.cpan.org/dist/Pod-Simple/
|
Url: http://search.cpan.org/dist/Pod-Simple/
|
||||||
Source0: http://www.cpan.org/authors/id/M/MA/MARCGREEN/%{cpan_name}-%{version}.tar.gz
|
Source0: http://www.cpan.org/authors/id/K/KH/KHW/%{cpan_name}-%{version}.tar.gz
|
||||||
Source1: cpanspec.yml
|
Source1: cpanspec.yml
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@@ -32,16 +32,16 @@ BuildRequires: perl
|
|||||||
BuildRequires: perl-macros
|
BuildRequires: perl-macros
|
||||||
BuildRequires: perl(Pod::Escapes) >= 1.04
|
BuildRequires: perl(Pod::Escapes) >= 1.04
|
||||||
Requires: perl(Pod::Escapes) >= 1.04
|
Requires: perl(Pod::Escapes) >= 1.04
|
||||||
|
Recommends: perl(Encode) >= 2.78
|
||||||
%{perl_requires}
|
%{perl_requires}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Pod::Simple is a Perl library for parsing text in the Pod ("plain old
|
Pod::Simple is a Perl library for parsing text in the Pod ("plain old
|
||||||
documentation") markup language that is typically used for writing
|
documentation") markup language that is typically used for writing
|
||||||
documentation for Perl and for Perl modules. The Pod format is explained in
|
documentation for Perl and for Perl modules. The Pod format is explained in
|
||||||
the perlpod manpage; the most common formatter is called 'perldoc'.
|
perlpod; the most common formatter is called 'perldoc'.
|
||||||
|
|
||||||
Be sure to read the /ENCODING manpage if your Pod contains non-ASCII
|
Be sure to read ENCODING if your Pod contains non-ASCII characters.
|
||||||
characters.
|
|
||||||
|
|
||||||
Pod formatters can use Pod::Simple to parse Pod documents and render them
|
Pod formatters can use Pod::Simple to parse Pod documents and render them
|
||||||
into plain text, HTML, or any number of other formats. Typically, such
|
into plain text, HTML, or any number of other formats. Typically, such
|
||||||
@@ -53,9 +53,9 @@ subclass that you want to use, this document (plus the documentation for
|
|||||||
the subclass) is probably all you need to read.
|
the subclass) is probably all you need to read.
|
||||||
|
|
||||||
If you're reading this document because you want to write a formatter
|
If you're reading this document because you want to write a formatter
|
||||||
subclass, continue reading it and then read the Pod::Simple::Subclassing
|
subclass, continue reading it and then read Pod::Simple::Subclassing, and
|
||||||
manpage, and then possibly even read the perlpodspec manpage (some of which
|
then possibly even read perlpodspec (some of which is for parser-writers,
|
||||||
is for parser-writers, but much of which is notes to formatter-writers).
|
but much of which is notes to formatter-writers).
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{cpan_name}-%{version}
|
%setup -q -n %{cpan_name}-%{version}
|
||||||
|
Reference in New Issue
Block a user