2007-01-15 23:30:02 +00:00
|
|
|
#
|
2011-11-11 11:14:47 +00:00
|
|
|
# spec file for package perl-Class-XPath
|
2007-01-15 23:30:02 +00:00
|
|
|
#
|
2011-11-11 11:14:47 +00:00
|
|
|
# Copyright (c) 2011 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
|
|
|
#
|
|
|
|
|
2011-11-11 11:14:47 +00:00
|
|
|
|
|
|
|
|
2009-06-18 15:00:06 +00:00
|
|
|
Name: perl-Class-XPath
|
2011-02-04 22:27:16 +00:00
|
|
|
%define cpan_name Class-XPath
|
|
|
|
Summary: Adds xpath matching to object trees
|
2009-06-18 15:00:06 +00:00
|
|
|
Version: 1.4
|
2011-02-04 22:27:16 +00:00
|
|
|
Release: 144
|
|
|
|
License: GPL+ or Artistic
|
2009-06-18 15:00:06 +00:00
|
|
|
Group: Development/Libraries/Perl
|
2011-02-04 22:27:16 +00:00
|
|
|
Url: http://search.cpan.org/dist/Class-XPath/
|
|
|
|
#Source: http://www.cpan.org/authors/id/S/SA/SAMTREGAR/Class-XPath-%{version}.tar.gz
|
|
|
|
Source: %{cpan_name}-%{version}.tar.bz2
|
|
|
|
BuildArch: noarch
|
2009-06-18 15:00:06 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
2011-02-04 22:27:16 +00:00
|
|
|
BuildRequires: perl
|
|
|
|
BuildRequires: perl-macros
|
|
|
|
BuildRequires: perl(Test::More) >= 0.47
|
|
|
|
BuildRequires: perl(HTML::TreeBuilder)
|
|
|
|
%{perl_requires}
|
2007-01-15 23:30:02 +00:00
|
|
|
|
|
|
|
%description
|
2011-02-04 22:27:16 +00:00
|
|
|
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.
|
2007-01-15 23:30:02 +00:00
|
|
|
|
2011-02-04 22:27:16 +00:00
|
|
|
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.
|
2007-01-15 23:30:02 +00:00
|
|
|
|
2011-02-04 22:27:16 +00:00
|
|
|
*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.
|
2007-01-15 23:30:02 +00:00
|
|
|
|
|
|
|
%prep
|
2011-02-04 22:27:16 +00:00
|
|
|
%setup -q -n %{cpan_name}-%{version}
|
2007-01-15 23:30:02 +00:00
|
|
|
|
|
|
|
%build
|
2011-02-04 22:27:16 +00:00
|
|
|
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
|
|
|
%{__make} %{?_smp_mflags}
|
|
|
|
|
|
|
|
%check
|
|
|
|
%{__make} test
|
2007-01-15 23:30:02 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
%perl_make_install
|
|
|
|
%perl_process_packlist
|
2011-02-04 22:27:16 +00:00
|
|
|
%perl_gen_filelist
|
2007-01-15 23:30:02 +00:00
|
|
|
|
|
|
|
%clean
|
2011-02-04 22:27:16 +00:00
|
|
|
%{__rm} -rf %{buildroot}
|
2007-01-15 23:30:02 +00:00
|
|
|
|
2011-02-04 22:27:16 +00:00
|
|
|
%files -f %{name}.files
|
|
|
|
%defattr(644,root,root,755)
|
|
|
|
%doc Changes README
|
2007-01-15 23:30:02 +00:00
|
|
|
|
2009-06-18 15:00:06 +00:00
|
|
|
%changelog
|