Sync from SUSE:SLFO:Main perl-Pod-Eventual revision f42b12702c089bea093a0eee16ba7cb2

This commit is contained in:
Adrian Schröter 2024-05-03 18:39:44 +02:00
commit 17c8b9d688
5 changed files with 168 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

BIN
Pod-Eventual-0.094003.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

35
cpanspec.yml Normal file
View File

@ -0,0 +1,35 @@
---
#description_paragraphs: 3
#description: |-
# override description from CPAN
#summary: override summary from CPAN
#no_testing: broken upstream
#sources:
# - source1
# - source2
#patches:
# foo.patch: -p1
# bar.patch:
# baz.patch: PATCH-FIX-OPENSUSE
#preamble: |-
# BuildRequires: gcc-c++
#post_prep: |-
# hunspell=`pkg-config --libs hunspell | sed -e 's,-l,,; s, *,,g'`
# sed -i -e "s,hunspell-X,$hunspell," t/00-prereq.t Makefile.PL
#post_build: |-
# rm unused.files
#post_install: |-
# sed on %{name}.files
#license: SUSE-NonFree
#skip_noarch: 1
#custom_build: |-
#./Build build flags=%{?_smp_mflags} --myflag
#custom_test: |-
#startserver && make test
#ignore_requires: Bizarre::Module
#skip_doc: regexp_to_skip_for_doc.*
#add_doc: files to add to docs
#misc: |-
#anything else to be added to spec file
#follows directly after %files section, so it can contain new blocks or also
#changes to %files section

34
perl-Pod-Eventual.changes Normal file
View File

@ -0,0 +1,34 @@
-------------------------------------------------------------------
Sun Jan 1 03:15:43 UTC 2023 - Tina Müller <timueller+perl@suse.de>
- updated to 0.094003
see /usr/share/doc/packages/perl-Pod-Eventual/Changes
0.094003 2022-12-31 16:48:21-05:00 America/New_York
- update author contact info
-------------------------------------------------------------------
Sun Jul 4 03:07:54 UTC 2021 - Tina Müller <timueller+perl@suse.de>
- updated to 0.094002
see /usr/share/doc/packages/perl-Pod-Eventual/Changes
0.094002 2021-07-03 13:16:26-04:00 America/New_York
- fix typo (thanks, BooK!)
- update author contact info
- document perl version policy
-------------------------------------------------------------------
Mon Nov 25 07:38:18 UTC 2013 - coolo@suse.com
- updated to 0.094001
require Mixin-Linewise 0.102 to avoid busted 0.101
tiny documentation tweak
update repo and bugtracker
-------------------------------------------------------------------
Mon Jan 17 16:22:42 UTC 2011 - coolo@novell.com
- initial package 0.093330
* created by cpanspec 1.78.03

73
perl-Pod-Eventual.spec Normal file
View File

@ -0,0 +1,73 @@
#
# spec file for package perl-Pod-Eventual
#
# Copyright (c) 2023 SUSE LLC
#
# 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 https://bugs.opensuse.org/
#
%define cpan_name Pod-Eventual
Name: perl-Pod-Eventual
Version: 0.094003
Release: 0
License: Artistic-1.0 OR GPL-1.0-or-later
Summary: Read a POD document as a series of trivial events
URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/R/RJ/RJBS/%{cpan_name}-%{version}.tar.gz
Source1: cpanspec.yml
BuildArch: noarch
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.78
BuildRequires: perl(Mixin::Linewise::Readers) >= 0.102
BuildRequires: perl(Test::Deep)
BuildRequires: perl(Test::More) >= 0.96
Requires: perl(Mixin::Linewise::Readers) >= 0.102
%{perl_requires}
%description
POD is a pretty simple format to write, but it can be a big pain to deal
with reading it and doing anything useful with it. Most existing POD
parsers care about semantics, like whether a '=item' occurred after an
'=over' but before a 'back', figuring out how to link a 'L<>', and other
things like that.
Pod::Eventual is much less ambitious and much more stupid. Fortunately,
stupid is often better. (That's what I keep telling myself, anyway.)
Pod::Eventual reads line-based input and produces events describing each
POD paragraph or directive it finds. Once complete events are immediately
passed to the 'handle_event' method. This method should be implemented by
Pod::Eventual subclasses. If it isn't, Pod::Eventual's own 'handle_event'
will be called, and will raise an exception.
%prep
%autosetup -n %{cpan_name}-%{version}
%build
perl Makefile.PL INSTALLDIRS=vendor
%make_build
%check
make test
%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist
%files -f %{name}.files
%doc Changes README
%license LICENSE
%changelog