forked from pool/perl-Text-Table
1.120
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Text-Table?expand=0&rev=5
This commit is contained in:
committed by
Git OBS Bridge
parent
cb2087afa5
commit
ef44605aa7
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:600fd936a249fd98101ebe2aa81409cd509f3f8e72795aa17bdb9c345850cbf1
|
|
||||||
size 29800
|
|
3
Text-Table-1.120.tar.gz
Normal file
3
Text-Table-1.120.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:fb0d72ff143d7669193552182ec1915930de9878578a88957744ecdc4fc4c7f4
|
||||||
|
size 23373
|
@@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue May 17 08:11:03 UTC 2011 - pascal.bleser@opensuse.org
|
||||||
|
|
||||||
|
- update to 1.120
|
||||||
|
* add the callback ("sub { ... }")-based ->rule() method to render each
|
||||||
|
section in a rule differently
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Dec 1 13:35:48 UTC 2010 - coolo@novell.com
|
Wed Dec 1 13:35:48 UTC 2010 - coolo@novell.com
|
||||||
|
|
||||||
|
@@ -1,59 +1,58 @@
|
|||||||
# vim: set sw=4 ts=4 et nu:
|
# vim: set sw=4 ts=4 et nu:
|
||||||
# norootforbuild
|
|
||||||
|
|
||||||
Name: perl-Text-Table
|
Name: perl-Text-Table
|
||||||
Version: 1.116
|
Version: 1.120
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Organize Data in Tables
|
Summary: Organize Data in Tables
|
||||||
Source: http://search.cpan.org/CPAN/authors/id/A/AN/ANNO/Text-Table-%{version}.tar.gz
|
Source: http://search.cpan.org/CPAN/authors/id/S/SH/SHLOMIF/Text-Table-%{version}.tar.gz
|
||||||
URL: http://search.cpan.org/dist/Text-Table
|
URL: http://search.cpan.org/dist/Text-Table
|
||||||
Group: Development/Libraries/Perl
|
Group: Development/Libraries/Perl
|
||||||
License: Perl License
|
License: GNU General Public License version 2 or later or Artistic (GPLv2+ or Artistic)
|
||||||
BuildRoot: %{_tmppath}/build-%{name}-%{version}
|
BuildRoot: %{_tmppath}/build-%{name}-%{version}
|
||||||
%{perl_requires}
|
%{perl_requires}
|
||||||
BuildRequires: perl
|
|
||||||
BuildRequires: perl-macros
|
BuildRequires: perl-macros
|
||||||
BuildRequires: make
|
|
||||||
BuildRequires: perl(ExtUtils::MakeMaker)
|
|
||||||
BuildRequires: perl(Test::More)
|
BuildRequires: perl(Test::More)
|
||||||
|
BuildRequires: perl(Module::Build) >= 0.36
|
||||||
|
BuildRequires: perl(warnings)
|
||||||
|
BuildRequires: perl(strict)
|
||||||
BuildRequires: perl(Text::Aligner) >= 0.05
|
BuildRequires: perl(Text::Aligner) >= 0.05
|
||||||
Requires: perl(Test::More)
|
Requires: perl(warnings)
|
||||||
|
Requires: perl(strict)
|
||||||
Requires: perl(Text::Aligner) >= 0.05
|
Requires: perl(Text::Aligner) >= 0.05
|
||||||
|
%if 0%{?suse_version} >= 1120
|
||||||
|
BuildArch: noarch
|
||||||
|
%endif
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Organization of data in table form is a time-honored and useful method of
|
Organization of data in table form is a time-honored and useful method of
|
||||||
data representation. While columns of data are trivially generated by
|
data representation. While columns of data are trivially generated by
|
||||||
computer through formatted output, even simple tasks like keeping titles
|
computer through formatted output, even simple tasks like keeping titles
|
||||||
aligned with the data columns are not trivial, and the one-shot solutions
|
aligned with the data columns are not trivial, and the one-shot solutions
|
||||||
one comes up with tend to be particularly hard to maintain.
|
one comes up with tend to be particularly hard to maintain. Text::Table
|
||||||
|
allows you to create and maintain tables that adapt to alignment
|
||||||
Text::Table allows you to create and maintain tables that adapt to alignment
|
|
||||||
requirements as you use them.
|
requirements as you use them.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n "Text-Table-%{version}"
|
%setup -q -n "Text-Table-%{version}"
|
||||||
%__sed -i '/^auto_install/d' Makefile.PL
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%__perl Makefile.PL PREFIX="%{_prefix}"
|
%__perl ./Build.PL
|
||||||
%__make %{?jobs:-j%{jobs}}
|
./Build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%perl_make_install
|
./Build pure_install --destdir "%{buildroot}" --installdirs vendor
|
||||||
%perl_process_packlist
|
%perl_process_packlist
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%__make test
|
./Build test
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
%{?buildroot:%__rm -rf "%{buildroot}"}
|
%{?buildroot:%__rm -rf "%{buildroot}"}
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc Changes README
|
%doc Changes README LICENSE
|
||||||
%dir %{perl_vendorlib}/Text
|
%dir %{perl_vendorlib}/Text
|
||||||
%{perl_vendorlib}/Text/Table.pm
|
%{perl_vendorlib}/Text/Table.pm
|
||||||
%dir %{perl_vendorarch}/auto/Text
|
|
||||||
%{perl_vendorarch}/auto/Text/Table
|
|
||||||
%doc %{perl_man3dir}/Text::Table.%{perl_man3ext}%{ext_man}
|
%doc %{perl_man3dir}/Text::Table.%{perl_man3ext}%{ext_man}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user