forked from pool/perl-HTML-TableExtract
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-HTML-TableExtract?expand=0&rev=1
This commit is contained in:
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@@ -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
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
.osc
|
3
HTML-TableExtract-2.10.tar.bz2
Normal file
3
HTML-TableExtract-2.10.tar.bz2
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:26485211a78da74df7df5b1ebfd34cb017437179cf14937265b23959e1356d56
|
||||||
|
size 23675
|
5
perl-HTML-TableExtract.changes
Normal file
5
perl-HTML-TableExtract.changes
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Aug 23 16:00:34 CEST 2007 - sbrabec@suse.cz
|
||||||
|
|
||||||
|
- New SuSE package, version 1.13 (#242504).
|
||||||
|
|
66
perl-HTML-TableExtract.spec
Normal file
66
perl-HTML-TableExtract.spec
Normal file
@@ -0,0 +1,66 @@
|
|||||||
|
#
|
||||||
|
# spec file for package perl-HTML-TableExtract (Version 2.10)
|
||||||
|
#
|
||||||
|
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
|
# This file and all modifications and additions to the pristine
|
||||||
|
# package are under the same license as the package itself.
|
||||||
|
#
|
||||||
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
|
#
|
||||||
|
|
||||||
|
# norootforbuild
|
||||||
|
|
||||||
|
Name: perl-HTML-TableExtract
|
||||||
|
URL: http://cpan.org/modules/by-module/HTML/
|
||||||
|
License: Public Domain, Freeware
|
||||||
|
Group: Development/Libraries/Perl
|
||||||
|
Autoreqprov: on
|
||||||
|
Requires: perl-HTML-Parser
|
||||||
|
Requires: perl = %{perl_version}
|
||||||
|
BuildRequires: perl-HTML-Parser
|
||||||
|
# Needed only for tests:
|
||||||
|
BuildRequires: perl-HTML-Tree perl-Test-Pod-Coverage
|
||||||
|
Summary: Simplifies extraction of information within tables in HTML documents
|
||||||
|
Version: 2.10
|
||||||
|
Release: 1
|
||||||
|
Source: HTML-TableExtract-%{version}.tar.bz2
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
|
||||||
|
%description
|
||||||
|
HTML::TableExtract is a module that simplifies the extraction of
|
||||||
|
information contained in tables within HTML documents.
|
||||||
|
|
||||||
|
Tables of note may be specified using Headers, Depth, Count,
|
||||||
|
Attributes, or some combination of the three. See the module
|
||||||
|
documentation for details.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n HTML-TableExtract-%{version}
|
||||||
|
|
||||||
|
%build
|
||||||
|
perl Makefile.PL
|
||||||
|
make
|
||||||
|
|
||||||
|
%check
|
||||||
|
make test
|
||||||
|
|
||||||
|
%install
|
||||||
|
make DESTDIR=$RPM_BUILD_ROOT install_vendor
|
||||||
|
%perl_process_packlist
|
||||||
|
|
||||||
|
%clean
|
||||||
|
[ "$RPM_BUILD_ROOT" != "/" ] && [ -d $RPM_BUILD_ROOT ] && rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%doc Changes MANIFEST README
|
||||||
|
%doc %{_mandir}/man?/*
|
||||||
|
%{perl_vendorlib}/HTML
|
||||||
|
%{perl_vendorarch}/auto/HTML-TableExtract
|
||||||
|
/var/adm/perl-modules/%{name}
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Thu Aug 23 2007 - sbrabec@suse.cz
|
||||||
|
- New SuSE package, version 1.13 (#242504).
|
Reference in New Issue
Block a user