78 lines
2.5 KiB
RPMSpec
78 lines
2.5 KiB
RPMSpec
#
|
|
# spec file for package perl-URI-Encode
|
|
#
|
|
# Copyright (c) 2016 SUSE LINUX 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-URI-Encode
|
|
Version: 1.1.1
|
|
Release: 0
|
|
%define cpan_name URI-Encode
|
|
Summary: Simple percent Encoding/Decoding
|
|
License: Artistic-1.0 or GPL-1.0+
|
|
Group: Development/Libraries/Perl
|
|
Url: http://search.cpan.org/dist/URI-Encode/
|
|
Source0: http://www.cpan.org/authors/id/M/MI/MITHUN/%{cpan_name}-v%{version}.tar.gz
|
|
Source1: cpanspec.yml
|
|
Source100: README.md
|
|
BuildArch: noarch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: perl
|
|
BuildRequires: perl-macros
|
|
BuildRequires: perl(Module::Build) >= 0.380000
|
|
BuildRequires: perl(version)
|
|
%{perl_requires}
|
|
|
|
%description
|
|
This modules provides simple URI (Percent) encoding/decoding
|
|
|
|
The main purpose of this module (at least for me) was to provide an easy
|
|
method to encode strings (mainly URLs) into a format which can be pasted
|
|
into a plain text emails, and that those links are 'click-able' by the
|
|
person reading that email. This can be accomplished by NOT encoding the
|
|
reserved characters.
|
|
|
|
This module can also be useful when using HTTP::Tiny to ensure the URLs are
|
|
properly escaped.
|
|
|
|
*This module does not encode reserved characters by default*. If you are
|
|
looking for speed and want to encode reserved characters, use
|
|
URI::Escape::XS
|
|
|
|
See this
|
|
script|https://github.com/mithun/perl-uri-encode/raw/master/.author/benchma
|
|
rk.pl for a comparison on encoding results and performance.
|
|
|
|
%prep
|
|
%setup -q -n %{cpan_name}-v%{version}
|
|
find . -type f ! -name \*.pl -print0 | xargs -0 chmod 644
|
|
|
|
%build
|
|
%{__perl} Build.PL installdirs=vendor
|
|
./Build build flags=%{?_smp_mflags}
|
|
|
|
%check
|
|
./Build test
|
|
|
|
%install
|
|
./Build install destdir=%{buildroot} create_packlist=0
|
|
%perl_gen_filelist
|
|
|
|
%files -f %{name}.files
|
|
%defattr(-,root,root,755)
|
|
%doc Changes LICENSE README
|
|
|
|
%changelog
|