forked from pool/perl-XML-RegExp
Compare commits
11 Commits
4eb57ad271
...
main
Author | SHA256 | Date | |
---|---|---|---|
532ffaa13b | |||
|
30cc43d44c | ||
|
e0d496349e | ||
|
d4207cf384 | ||
|
84e7c0c292 | ||
|
f0883cd4b4 | ||
|
1878655875 | ||
|
f0f01080f0 | ||
|
35c490d3cf | ||
|
a275251450 | ||
93e85ce0e9 |
12
README.md
Normal file
12
README.md
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
|
||||||
|
## Build Results
|
||||||
|
|
||||||
|
Current state of perl in openSUSE:Factory is
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
The current state of perl in the devel project build (devel:languages:perl)
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
|
BIN
XML-RegExp-0.03.tar.bz2
(Stored with Git LFS)
BIN
XML-RegExp-0.03.tar.bz2
(Stored with Git LFS)
Binary file not shown.
BIN
XML-RegExp-0.04.tar.gz
(Stored with Git LFS)
Normal file
BIN
XML-RegExp-0.04.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu May 31 08:46:15 UTC 2012 - cfarrell@suse.com
|
||||||
|
|
||||||
|
- license update: GPL-1.0+ or Artistic-1.0
|
||||||
|
SPDX format (without CHECK())
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed May 23 13:00:19 UTC 2012 - coolo@suse.com
|
||||||
|
|
||||||
|
- updated to 0.04
|
||||||
|
- Fixed version number bug in $VERSION, set to 0.04 instead of 0.02
|
||||||
|
( https://rt.cpan.org/Public/Bug/Display.html?id=38536 )
|
||||||
|
|
||||||
|
-----------------------------------------------------------------
|
||||||
|
Fri Nov 18 11:07:54 UTC 2011 - coolo@suse.com
|
||||||
|
|
||||||
|
- use original .tar.gz
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Nov 30 19:21:00 UTC 2010 - coolo@novell.com
|
Tue Nov 30 19:21:00 UTC 2010 - coolo@novell.com
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-XML-RegExp (Version 0.03)
|
# spec file for package perl-XML-RegExp
|
||||||
#
|
#
|
||||||
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -15,55 +15,53 @@
|
|||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
# norootforbuild
|
|
||||||
|
|
||||||
|
|
||||||
Name: perl-XML-RegExp
|
Name: perl-XML-RegExp
|
||||||
Version: 0.03
|
Version: 0.04
|
||||||
Release: 621
|
Release: 0
|
||||||
AutoReqProv: on
|
%define cpan_name XML-RegExp
|
||||||
|
Summary: Regular expressions for XML tokens
|
||||||
|
License: GPL-1.0+ or Artistic-1.0
|
||||||
Group: Development/Libraries/Perl
|
Group: Development/Libraries/Perl
|
||||||
License: Artistic
|
Url: http://search.cpan.org/dist/XML-RegExp/
|
||||||
Url: http://cpan.org/modules/by-module/XML/
|
Source: http://www.cpan.org/authors/id/T/TJ/TJMATHER/%{cpan_name}-%{version}.tar.gz
|
||||||
Summary: Regular Expressions for XML Tokens
|
Source100: README.md
|
||||||
Source: XML-RegExp-%{version}.tar.bz2
|
BuildArch: noarch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%{perl_requires}
|
|
||||||
BuildRequires: perl
|
BuildRequires: perl
|
||||||
BuildRequires: perl-macros
|
BuildRequires: perl-macros
|
||||||
|
#BuildRequires: perl(XML::RegExp)
|
||||||
|
%{perl_requires}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
This package contains regular expressions for the following XML tokens:
|
This package contains regular expressions for the following XML tokens:
|
||||||
BaseChar, Ideographic, Letter, Digit, Extender, CombiningChar,
|
BaseChar, Ideographic, Letter, Digit, Extender, CombiningChar, NameChar,
|
||||||
NameChar, EntityRef, CharRef, Reference, Name, NmToken, and AttValue.
|
EntityRef, CharRef, Reference, Name, NmToken, and AttValue.
|
||||||
|
|
||||||
|
The definitions of these tokens were taken from the XML spec (Extensible
|
||||||
|
Markup Language 1.0) at the http://www.w3.org/TR/REC-xml manpage.
|
||||||
|
|
||||||
|
Also contains the regular expressions for the following tokens from the XML
|
||||||
Authors:
|
Namespaces spec at the http://www.w3.org/TR/REC-xml-names manpage:
|
||||||
--------
|
NCNameChar, NCName, QName, Prefix and LocalPart.
|
||||||
Enno Derksen <enno@att.com>
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -n XML-RegExp-%{version}
|
%setup -q -n %{cpan_name}-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
perl Makefile.PL
|
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
||||||
make %{?_smp_mflags}
|
%{__make} %{?_smp_mflags}
|
||||||
make test
|
|
||||||
|
%check
|
||||||
|
%{__make} test
|
||||||
|
|
||||||
%install
|
%install
|
||||||
rm -rf $RPM_BUILD_ROOT
|
%perl_make_install
|
||||||
make DESTDIR=$RPM_BUILD_ROOT install_vendor
|
|
||||||
%perl_process_packlist
|
%perl_process_packlist
|
||||||
|
%perl_gen_filelist
|
||||||
|
|
||||||
%files
|
%files -f %{name}.files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root,755)
|
||||||
%doc Changes README
|
%doc Changes README
|
||||||
%doc %{_mandir}/man?/*
|
|
||||||
%{perl_vendorarch}/auto/XML
|
|
||||||
%{perl_vendorlib}/XML
|
|
||||||
|
|
||||||
%clean
|
|
||||||
rm -rf $RPM_BUILD_ROOT
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Reference in New Issue
Block a user