forked from pool/perl-Text-Aligner
One colorskip-dependent test moved into skip block as per rt. #61276 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Text-Aligner?expand=0&rev=6
81 lines
2.7 KiB
RPMSpec
81 lines
2.7 KiB
RPMSpec
#
|
|
# spec file for package perl-Text-Aligner (Version 0.07)
|
|
#
|
|
# Copyright (c) 2010 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-Aligner
|
|
Version: 0.07
|
|
Release: 1
|
|
License: GPL+ or Artistic
|
|
%define cpan_name Text-Aligner
|
|
Summary: Align text in columns
|
|
Url: http://search.cpan.org/dist/Text-Aligner/
|
|
Group: Development/Libraries/Perl
|
|
Source: http://www.cpan.org/authors/id/A/AN/ANNO/%{cpan_name}-%{version}.tar.gz
|
|
BuildArch: noarch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: perl
|
|
BuildRequires: perl-macros
|
|
BuildRequires: perl(ExtUtils::MakeMaker)
|
|
BuildRequires: perl(Term::ANSIColor) >= 2.01
|
|
BuildRequires: perl(Test::More)
|
|
Requires: perl(Term::ANSIColor) >= 2.01
|
|
Requires: perl(Test::More)
|
|
%{perl_requires}
|
|
|
|
%description
|
|
Text::Aligner exports a single function, align(), which is used to justify
|
|
strings to various alignment styles. The alignment specification is the
|
|
first argument, followed by any number of scalars which are subject to
|
|
alignment.
|
|
|
|
The operation depends on context. In list context, a list of the justified
|
|
scalars is returned. In scalar context, the justified arguments are joined
|
|
into a single string with newlines appended. The original arguments remain
|
|
unchanged. In void context, in-place justification is attempted. In this
|
|
case, all arguments must be lvalues.
|
|
|
|
Align() also does one level of scalar dereferencing. That is, whenever one
|
|
of the arguments is a scalar reference, the scalar pointed to is aligned
|
|
instead. Other references are simply stringified. An undefined argument is
|
|
interpreted as an empty string without complaint.
|
|
|
|
Alignment respects colorizing escape sequences a la Term::ANSICOLOR, which
|
|
means it knows that thses sequences don't take up space on the screen.
|
|
|
|
%prep
|
|
%setup -q -n %{cpan_name}-%{version}
|
|
|
|
%build
|
|
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
|
%{__make} %{?_smp_mflags}
|
|
|
|
%check
|
|
%{__make} test
|
|
|
|
%install
|
|
%perl_make_install
|
|
%perl_process_packlist
|
|
%perl_gen_filelist
|
|
|
|
%clean
|
|
%{__rm} -rf %{buildroot}
|
|
|
|
%files -f %{name}.files
|
|
%defattr(-,root,root,755)
|
|
%doc Changes LICENSE README
|
|
|
|
%changelog
|