Files
perl-Dancer-Plugin-Progress/perl-Dancer-Plugin-Progress.spec

67 lines
2.1 KiB
RPMSpec

#
# spec file for package perl-Dancer-Plugin-Progress (Version 0.001)
#
# Copyright (c) 2011 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-Dancer-Plugin-Progress
Version: 0.001
Release: 1
License: Perl License
%define cpan_name Dancer-Plugin-Progress
Summary: Dancer plugin to display a progress bar during long-running requests
Url: http://search.cpan.org/dist/Dancer-Plugin-Progress/
Group: Development/Libraries/Perl
#Source: http://www.cpan.org/authors/id/M/MS/MSTPLBG/Dancer-Plugin-Progress-%%{version}.tar.gz
Source: %{cpan_name}-%{version}.tar.bz2
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(Dancer) >= 1.175
Requires: perl(Dancer) >= 1.175
%{perl_requires}
%description
This plugin helps you displaying a progress bar during long-running requests (routes that take multiple seconds to finish, for example due to network latency to a backend).
%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
# do not perl_process_packlist (noarch)
# remove .packlist file
%{__rm} -rf $RPM_BUILD_ROOT%perl_vendorarch
# remove perllocal.pod file
%{__rm} -rf $RPM_BUILD_ROOT%perl_archlib
%perl_gen_filelist
%clean
%{__rm} -rf %{buildroot}
%files -f %{name}.files
%defattr(-,root,root,755)
%doc README
%changelog