Accepting request 574873 from home:okurz:branches:devel:languages:perl:CPAN-P

Initial version 1.25

OBS-URL: https://build.opensuse.org/request/show/574873
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Pod-Tree?expand=0&rev=1
This commit is contained in:
Stephan Kulow
2018-02-12 09:10:01 +00:00
committed by Git OBS Bridge
commit 404c508c5f
5 changed files with 101 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.osc

3
Pod-Tree-1.25.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:79318f89d44b324133d71cccdd38f1636a0b470bcbf4ef6a55d686ee0788a56a
size 64140

4
perl-Pod-Tree.changes Normal file
View File

@@ -0,0 +1,4 @@
-------------------------------------------------------------------
Sat Feb 10 00:10:34 UTC 2018 - okurz@suse.com
- Initial version 1.25

70
perl-Pod-Tree.spec Normal file
View File

@@ -0,0 +1,70 @@
#
# spec file for package perl-Pod-Tree
#
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: perl-Pod-Tree
Version: 1.25
Release: 0
%define cpan_name Pod-Tree
Summary: Create a static syntax tree for a POD
License: Artistic-1.0 or GPL-1.0+
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/Pod-Tree/
Source0: http://www.cpan.org/authors/id/S/SZ/SZABGAB/%{cpan_name}-%{version}.tar.gz
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(HTML::Stream) >= 1.49
BuildRequires: perl(IO::String) >= 1
BuildRequires: perl(Path::Tiny) >= 0.068
BuildRequires: perl(Pod::Escapes) >= 1.02
BuildRequires: perl(Test::Compile) >= v1.2.1
BuildRequires: perl(Test::More) >= 1
BuildRequires: perl(Text::Template) >= 1
Requires: perl(HTML::Stream) >= 1.49
Requires: perl(IO::String) >= 1
Requires: perl(Pod::Escapes) >= 1.02
Requires: perl(Text::Template) >= 1
%{perl_requires}
%description
'Pod::Tree' parses a POD into a static syntax tree. Applications walk the
tree to recover the structure and content of the POD. See the
'Pod::Tree::Node' manpage for a description of the tree.
%prep
%setup -q -n %{cpan_name}-%{version}
find . -type f -print0 | xargs -0 chmod 644
%build
%{__perl} Makefile.PL INSTALLDIRS=vendor
%{__make} %{?_smp_mflags}
%check
%{__make} test
%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist
%files -f %{name}.files
%defattr(-,root,root,755)
%doc Changes mod2html perl2html pod.css pods2html podtree2html README skeleton ToDo ToDo.Not
%changelog