8
0
Files
perl-Text-Table/perl-Text-Table.spec
Stephan Kulow 8dfdb96552 Accepting request 224631 from home:scarabeus_iv
- Version bump to 1.129:
  * Add minimum perl version to META.yml (CPANTS).
  * Typo fixes thanks to David Steinbrunner.
  * Add t/style-trailing-space.t.
  * Remove trailing space.
  * Fix handling of regular expression aligners.
  * Add examples/Text-Table-UTF8-example.pl

- Format with spec-cleaner and add required header license.
- Fix license string.

OBS-URL: https://build.opensuse.org/request/show/224631
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Text-Table?expand=0&rev=9
2014-03-04 21:26:32 +00:00

71 lines
2.3 KiB
RPMSpec

#
# spec file for package perl-Text-Table
#
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# 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/
#
Name: perl-Text-Table
Version: 1.129
Release: 0
Summary: Organize Data in Tables
License: BSD-3-Clause
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/Text-Table
Source: http://search.cpan.org/CPAN/authors/id/S/SH/SHLOMIF/Text-Table-%{version}.tar.gz
BuildRequires: perl-macros
BuildRequires: perl(Module::Build) >= 0.36
BuildRequires: perl(Test::More)
BuildRequires: perl(Text::Aligner) >= 0.05
BuildRequires: perl(strict)
BuildRequires: perl(warnings)
Requires: perl(Text::Aligner) >= 0.05
Requires: perl(strict)
Requires: perl(warnings)
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch
%{perl_requires}
%description
Organization of data in table form is a time-honored and useful method of
data representation. While columns of data are trivially generated by
computer through formatted output, even simple tasks like keeping titles
aligned with the data columns are not trivial, and the one-shot solutions
one comes up with tend to be particularly hard to maintain. Text::Table
allows you to create and maintain tables that adapt to alignment
requirements as you use them.
%prep
%setup -q -n "Text-Table-%{version}"
%build
perl ./Build.PL
./Build
%install
./Build pure_install --destdir %{buildroot} --installdirs vendor
%perl_process_packlist
%check
./Build test
%files
%defattr(-,root,root)
%doc Changes README LICENSE
%dir %{perl_vendorlib}/Text
%{perl_vendorlib}/Text/Table.pm
%doc %{perl_man3dir}/Text::Table.%{perl_man3ext}%{ext_man}
%changelog