2015-04-14 08:05:45 +00:00
|
|
|
#
|
|
|
|
# spec file for package perl-Data-Validate-URI
|
|
|
|
#
|
2016-01-21 11:08:32 +00:00
|
|
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
2015-04-14 08:05:45 +00:00
|
|
|
#
|
|
|
|
# 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/
|
|
|
|
#
|
|
|
|
|
2011-05-23 08:35:29 +00:00
|
|
|
|
|
|
|
Name: perl-Data-Validate-URI
|
2016-01-21 11:08:32 +00:00
|
|
|
Version: 0.07
|
2011-05-23 08:35:29 +00:00
|
|
|
Release: 0
|
2015-04-14 08:05:45 +00:00
|
|
|
%define cpan_name Data-Validate-URI
|
2016-01-21 11:08:32 +00:00
|
|
|
Summary: Common Url Validation Methods
|
2015-04-14 08:05:45 +00:00
|
|
|
License: GPL-1.0+ or Artistic-1.0
|
2011-05-23 08:35:29 +00:00
|
|
|
Group: Development/Libraries/Perl
|
2015-04-14 08:05:45 +00:00
|
|
|
Url: http://search.cpan.org/dist/Data-Validate-URI/
|
2016-01-21 11:08:32 +00:00
|
|
|
Source0: http://www.cpan.org/authors/id/S/SO/SONNEN/%{cpan_name}-%{version}.tar.gz
|
|
|
|
Source1: cpanspec.yml
|
2015-04-14 08:05:45 +00:00
|
|
|
BuildArch: noarch
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
BuildRequires: perl
|
2011-05-23 08:35:29 +00:00
|
|
|
BuildRequires: perl-macros
|
|
|
|
BuildRequires: perl(Data::Validate::Domain)
|
|
|
|
BuildRequires: perl(Data::Validate::IP)
|
|
|
|
Requires: perl(Data::Validate::Domain)
|
|
|
|
Requires: perl(Data::Validate::IP)
|
2015-04-14 08:05:45 +00:00
|
|
|
%{perl_requires}
|
2011-05-23 08:35:29 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
This module collects common URI validation routines to make input
|
|
|
|
validation, and untainting easier and more readable.
|
2015-04-14 08:05:45 +00:00
|
|
|
|
|
|
|
All functions return an untainted value if the test passes, and undef if it
|
|
|
|
fails. This means that you should always check for a defined status
|
2011-05-23 08:35:29 +00:00
|
|
|
explicitly. Don't assume the return will be true.
|
2015-04-14 08:05:45 +00:00
|
|
|
|
2011-05-23 08:35:29 +00:00
|
|
|
The value to test is always the first (and often only) argument.
|
2015-04-14 08:05:45 +00:00
|
|
|
|
2011-05-23 08:35:29 +00:00
|
|
|
There are a number of other URI validation modules out there as well (see
|
|
|
|
below.) This one focuses on being fast, lightweight, and relatively
|
|
|
|
'real-world'. i.e. it's good if you want to check user input, and don't
|
|
|
|
need to parse out the URI/URL into chunks.
|
2015-04-14 08:05:45 +00:00
|
|
|
|
2011-05-23 08:35:29 +00:00
|
|
|
Right now the module focuses on HTTP URIs, since they're arguably the most
|
|
|
|
common. If you have a specialized scheme you'd like to have supported, let
|
|
|
|
me know.
|
|
|
|
|
|
|
|
%prep
|
2015-04-14 08:05:45 +00:00
|
|
|
%setup -q -n %{cpan_name}-%{version}
|
2011-05-23 08:35:29 +00:00
|
|
|
|
|
|
|
%build
|
2015-04-14 08:05:45 +00:00
|
|
|
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
|
|
|
%{__make} %{?_smp_mflags}
|
|
|
|
|
|
|
|
%check
|
|
|
|
%{__make} test
|
2011-05-23 08:35:29 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
%perl_make_install
|
|
|
|
%perl_process_packlist
|
2015-04-14 08:05:45 +00:00
|
|
|
%perl_gen_filelist
|
2011-05-23 08:35:29 +00:00
|
|
|
|
2015-04-14 08:05:45 +00:00
|
|
|
%files -f %{name}.files
|
|
|
|
%defattr(-,root,root,755)
|
2011-05-23 08:35:29 +00:00
|
|
|
%doc Changes README
|
|
|
|
|
2015-04-14 08:05:45 +00:00
|
|
|
%changelog
|