commit 86a591d33d065a54c94777375ddec0c10b542d77081d6a8c3e16e99f59f181b5 Author: Stephan Kulow Date: Sun Feb 8 14:18:52 2015 +0000 initial package OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-XML-NamespaceFactory?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -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 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/XML-NamespaceFactory-1.02.tar.gz b/XML-NamespaceFactory-1.02.tar.gz new file mode 100644 index 0000000..658df8b --- /dev/null +++ b/XML-NamespaceFactory-1.02.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94b6dd0df4a8dc8ce83623e5d23413433ff1a01a302e8215425219b1ec19bb23 +size 11790 diff --git a/perl-XML-NamespaceFactory.changes b/perl-XML-NamespaceFactory.changes new file mode 100644 index 0000000..e6988b4 --- /dev/null +++ b/perl-XML-NamespaceFactory.changes @@ -0,0 +1,6 @@ +------------------------------------------------------------------- +Sun Feb 8 14:18:48 UTC 2015 - coolo@suse.com + +- initial package 1.02 + * created by cpanspec 1.78.08 + diff --git a/perl-XML-NamespaceFactory.spec b/perl-XML-NamespaceFactory.spec new file mode 100644 index 0000000..37509eb --- /dev/null +++ b/perl-XML-NamespaceFactory.spec @@ -0,0 +1,71 @@ +# +# spec file for package perl-XML-NamespaceFactory +# +# 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-XML-NamespaceFactory +Version: 1.02 +Release: 0 +%define cpan_name XML-NamespaceFactory +Summary: Simple factory objects for SAX namespaced names. +License: Artistic-1.0 or GPL-1.0+ +Group: Development/Libraries/Perl +Url: http://search.cpan.org/dist/XML-NamespaceFactory/ +Source: http://www.cpan.org/authors/id/P/PE/PERIGRIN/%{cpan_name}-%{version}.tar.gz +BuildArch: noarch +BuildRoot: %{_tmppath}/%{name}-%{version}-build +BuildRequires: perl +BuildRequires: perl-macros +%{perl_requires} + +%description +Simply create a new XML::NamespaceFactory object with the namespace you +wish to use as its single parameter. If you wish to use the empty +namespace, simply pass in an empty string (but undef will not do). + +Then, when you want to get a JClark name, call a method on that object the +name of which is the local name you wish to have. It'll return the JClark +notation for that local name in your namespace. + +Unfortunately, some local names legal in XML are not legal in Perl. To +circumvent this, you can use the hash notation in which you access a key on +the object the name of which is the local name you wish to have. This will +work just as the method call name but will accept more characters. Note +that it does not check that the name you ask for is a valid XML name. This +form is more general but slower. + +If this is not clear, hopefully the SYNOPSIS should help :) + +%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 cpanfile LICENSE README + +%changelog