9
0

Accepting request 81897 from home:vitezslav_cizek

new package
required by perl-XML-SAX >= 0.99

OBS-URL: https://build.opensuse.org/request/show/81897
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-XML-SAX-Base?expand=0&rev=1
This commit is contained in:
Stephan Kulow
2011-09-12 14:04:59 +00:00
committed by Git OBS Bridge
commit b67d348f03
5 changed files with 115 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

BIN
XML-SAX-Base-1.06.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

17
perl-XML-SAX-Base.changes Normal file
View File

@@ -0,0 +1,17 @@
-------------------------------------------------------------------
Mon Sep 12 09:32:09 UTC 2011 - vcizek@suse.com
- use original gzipped tarball
-------------------------------------------------------------------
Fri Sep 9 07:47:30 UTC 2011 - vcizek@suse.com
- initial pull from CPAN with cpanspec_obs-0.8
- dependency of perl-XML-SAX >= 0.99
-------------------------------------------------------------------
Fri Sep 9 07:47:18 UTC 2011 - vcizek@suse.com
- initial package 1.06
* created by cpanspec 1.78.03

71
perl-XML-SAX-Base.spec Normal file
View File

@@ -0,0 +1,71 @@
#
# spec file for package perl-XML-SAX-Base (Version 1.06)
#
# Copyright (c) 2010 SUSE LINUX Products 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-XML-SAX-Base
Version: 1.06
Release: 1
License: GPL-1.0+ or Artistic
%define cpan_name XML-SAX-Base
Summary: Base class SAX Drivers and Filters
Url: http://search.cpan.org/dist/XML-SAX-Base/
Group: Development/Libraries/Perl
Source: http://www.cpan.org/authors/id/G/GR/GRANTM/XML-SAX-Base-%{version}.tar.gz
# Source: %{cpan_name}-%{version}.tar.gz
# BuildRequires: perl(Test::Pod) perl(Test::Pod::Coverage)
BuildRequires: perl
BuildRequires: perl-macros
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch
%{perl_requires}
%description
This module has a very simple task - to be a base class for PerlSAX drivers
and filters. It's default behaviour is to pass the input directly to the
output unchanged. It can be useful to use this module as a base class so
you don't have to, for example, implement the characters() callback.
The main advantages that it provides are easy dispatching of events the
right way (ie it takes care for you of checking that the handler has
implemented that method, or has defined an AUTOLOAD), and the guarantee
that filters will pass along events that they aren't implementing to
handlers downstream that might nevertheless be interested in them.
%prep
%setup -q -n %{cpan_name}-%{version}
%build
export AUTOMATED_TESTING=1
%{__perl} Makefile.PL INSTALLDIRS=vendor
%{__make} %{?_smp_mflags}
%check
export AUTOMATED_TESTING=1
%{__make} test
%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist
%clean
%{__rm} -rf %{buildroot}
%files -f %{name}.files
%defattr(644,root,root,755)
%doc Changes dist.ini README
%changelog