Sync from SUSE:SLFO:Main perl-XML-NamespaceSupport revision 3fb36a28aba47f92f8804ecc31728476

This commit is contained in:
Adrian Schröter 2024-05-03 19:09:35 +02:00
commit b8240af753
5 changed files with 199 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
XML-NamespaceSupport-1.12.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

28
cpanspec.yml Normal file
View File

@ -0,0 +1,28 @@
---
#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:
#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

View File

@ -0,0 +1,81 @@
-------------------------------------------------------------------
Fri Mar 31 07:08:07 UTC 2017 - coolo@suse.com
- updated to 1.12
see /usr/share/doc/packages/perl-XML-NamespaceSupport/Changes
-------------------------------------------------------------------
Mon Apr 15 10:35:08 UTC 2013 - idonmez@suse.com
- Add Source URL, see https://en.opensuse.org/SourceUrls
-------------------------------------------------------------------
Fri Nov 18 11:08:20 UTC 2011 - coolo@suse.com
- use original .tar.gz
-------------------------------------------------------------------
Tue Aug 30 18:16:25 UTC 2011 - andrea.turrini@gmail.com
- standardized "Authors:" format in description of
perl-XML-NamespaceSupport.spec
-------------------------------------------------------------------
Tue Nov 30 19:21:00 UTC 2010 - coolo@novell.com
- switch to perl_requires macro
-------------------------------------------------------------------
Wed Mar 17 08:13:57 UTC 2010 - lars@linux-schulserver.de
- update to 1.11:
+ re-generated the META.yml and removed the stale one from git
- updated URL in specfile
- build parallel
-------------------------------------------------------------------
Sat Jul 25 19:46:18 CEST 2009 - chris@computersalat.de
- spec mods
* removed ^----------
* removed ^#---------
-------------------------------------------------------------------
Wed Jul 15 08:19:43 CEST 2009 - chris@computersalat.de
- fix for failing builds
o stop auto_install (Makefile.PL)
-------------------------------------------------------------------
Tue Jul 14 20:24:13 CEST 2009 - chris@computersalat.de
- update to 1.10
- Release real version since CPAN testers gave us a pass (perigrin)
- added perl-macros
o autogen filelist with perl_gen_filelist
- spec mods
o updated desc
- fixed deps
o BuildReq perl(version)
o BuildReq perl(YAML::Syck)
-------------------------------------------------------------------
Wed Jan 25 21:40:03 CET 2006 - mls@suse.de
- converted neededforbuild to BuildRequires
-------------------------------------------------------------------
Sun Jul 31 16:06:12 CEST 2005 - cthiel@suse.de
- update to version 1.09
-------------------------------------------------------------------
Tue Jun 28 02:04:01 CEST 2005 - ro@suse.de
- fix permissions
-------------------------------------------------------------------
Mon Nov 15 15:33:52 CET 2004 - ro@suse.de
- initial package

View File

@ -0,0 +1,64 @@
#
# spec file for package perl-XML-NamespaceSupport
#
# Copyright (c) 2017 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-XML-NamespaceSupport
Version: 1.12
Release: 0
%define cpan_name XML-NamespaceSupport
Summary: Simple Generic Namespace Processor
License: Artistic-1.0 or GPL-1.0+
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/XML-NamespaceSupport/
Source0: https://cpan.metacpan.org/authors/id/P/PE/PERIGRIN/%{cpan_name}-%{version}.tar.gz
Source1: cpanspec.yml
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
%{perl_requires}
%description
This module offers a simple to process namespaced XML names (unames) from
within any application that may need them. It also helps maintain a prefix
to namespace URI map, and provides a number of basic checks.
The model for this module is SAX2's NamespaceSupport class, readable at
http://www.saxproject.org/namespaces.html It adds a few perlisations where
we thought it appropriate.
%prep
%setup -q -n %{cpan_name}-%{version}
%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 README
%license LICENSE
%changelog