2007-01-15 23:30:02 +00:00
|
|
|
#
|
|
|
|
# spec file for package perl-Class-XPath (Version 1.4)
|
|
|
|
#
|
2010-01-12 13:15:56 +00:00
|
|
|
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2007-01-15 23:30:02 +00:00
|
|
|
#
|
2009-06-18 15:00:06 +00:00
|
|
|
# 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/
|
2007-01-15 23:30:02 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
# norootforbuild
|
|
|
|
|
2009-06-18 15:00:06 +00:00
|
|
|
|
|
|
|
Name: perl-Class-XPath
|
2010-12-10 11:09:00 +00:00
|
|
|
BuildRequires: perl-HTML-Tree
|
2009-06-18 15:00:06 +00:00
|
|
|
Version: 1.4
|
2010-12-05 20:41:23 +00:00
|
|
|
Release: 143
|
2009-06-18 15:00:06 +00:00
|
|
|
AutoReqProv: on
|
|
|
|
Group: Development/Libraries/Perl
|
2010-01-12 13:15:56 +00:00
|
|
|
License: Artistic
|
2009-06-18 15:00:06 +00:00
|
|
|
Url: http://search.cpan.org/~samtregar/
|
|
|
|
Summary: adds xpath matching to object trees
|
|
|
|
Source: Class-XPath-%{version}.tar.bz2
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
2007-01-15 23:30:02 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
This module adds XPath-style matching to your object trees. This means
|
|
|
|
that you can find nodes using an XPath-esque query with match() from
|
|
|
|
anywhere in the tree. Also, the xpath() method returns a unique path to
|
|
|
|
a given node which can be used as an identifier.
|
|
|
|
|
|
|
|
To use this module you must already have an OO implementation of a
|
|
|
|
tree. The tree must be a true tree - all nodes have a single parent and
|
|
|
|
the tree must have a single root node. Also, the order of children
|
|
|
|
within a node must be stable.
|
|
|
|
|
|
|
|
NOTE: This module is not yet a complete XPath implementation. Over time
|
|
|
|
I expect the subset of XPath supported to grow. See the SYNTAX
|
|
|
|
documentation for details on the current level of support.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Authors:
|
|
|
|
--------
|
|
|
|
sam@tregar.com
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -n Class-XPath-%{version} -q
|
|
|
|
|
|
|
|
%build
|
|
|
|
perl Makefile.PL
|
2010-01-12 13:15:56 +00:00
|
|
|
make %{?_smp_mflags}
|
2007-01-15 23:30:02 +00:00
|
|
|
make test
|
|
|
|
|
|
|
|
%install
|
|
|
|
%perl_make_install
|
|
|
|
%perl_process_packlist
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-, root, root)
|
|
|
|
%doc README Changes
|
|
|
|
%doc %{_mandir}/man?/*
|
|
|
|
%{perl_vendorarch}/auto/Class
|
|
|
|
%{perl_vendorlib}/Class
|
|
|
|
|
2009-06-18 15:00:06 +00:00
|
|
|
%changelog
|