From 4bc077f5d9272c1640b36a0461bcbadbcd47ce41 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 09:56:04 +0100 Subject: [PATCH] perl 5.16 mass rebuild [release 0.68-5mamba;Tue Nov 13 2012] --- README.md | 3 +++ perl-XML-XQL.spec | 68 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 71 insertions(+) create mode 100644 perl-XML-XQL.spec diff --git a/README.md b/README.md index 9329ab4..e3badd3 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,5 @@ # perl-XML-XQL +This is a Perl extension that allows you to perform XQL queries on XML object trees. +Currently only the XML::DOM module is supported, but other implementations, like XML::Grove, may soon follow. + diff --git a/perl-XML-XQL.spec b/perl-XML-XQL.spec new file mode 100644 index 0000000..a1baa7c --- /dev/null +++ b/perl-XML-XQL.spec @@ -0,0 +1,68 @@ +%define perl_major_ver %(eval `perl -V:version`; echo ${version%*.[0-9]*}.0) + +Name: perl-XML-XQL +Version: 0.68 +Release: 5mamba +Summary: XML-XQL :: Query XML tree structures with XQL +Group: Development/Libraries/Perl +Vendor: openmamba +Distribution: openmamba +Packager: Aleph0 +URL: http://www.cpan.org +Source: http://www.cpan.org/modules/by-module/XML/XML-XQL-%{version}.tar.gz +License: Artistic +Requires: perl >= %perl_major_ver +BuildRequires: perl-devel >= %perl_major_ver +BuildRequires: perl-XML-DOM +BuildRequires: perl-Parse-Yapp +BuildRequires: perl-Date-Manip +BuildArch: noarch +BuildRoot: %{_tmppath}/perl-root + +%description +This is a Perl extension that allows you to perform XQL queries on XML object trees. +Currently only the XML::DOM module is supported, but other implementations, like XML::Grove, may soon follow. + +%prep +%setup -q -n XML-XQL-%{version} + +%build +perl Makefile.PL PREFIX=%{_prefix} INSTALLDIRS=vendor +%make +%make test + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall_perl +packlist=`find %{buildroot} -name .packlist` +[ -z "$packlist" ] && exit 1 || cat $packlist | \ + sed "s,%buildroot,,g;s,.*/man/.*,&.gz,g" | \ + sort -u > .packlist && rm $packlist + +strid=`echo $packlist | sed 's,.*auto\(.*\)/.packlist,\1,'` +for dir in `find %{buildroot} -type d | grep $strid`; do + echo "%dir ${dir#%buildroot}" >> .packlist +done + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +rm -f .packlist + +%files -f .packlist +%defattr(-,root,root) + +%changelog +* Tue Nov 13 2012 Silvan Calarco 0.68-5mamba +- perl 5.16 mass rebuild + +* Thu Nov 06 2008 Silvan Calarco 0.68-4mamba +- automatic rebuild by autodist + +* Tue Nov 20 2007 Aleph0 0.68-3mamba +- rebuilt + +* Wed Oct 27 2004 Davide Madrisan 0.68-2qilnx +- package recreated by autospec + +* Tue Sep 14 2004 Matteo Bernasconi 0.68-1qilnx +- first build