Accepting request 296479 from devel:languages:perl:autoupdate
automatic update OBS-URL: https://build.opensuse.org/request/show/296479 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-URL-Encode?expand=0&rev=2
This commit is contained in:
committed by
Git OBS Bridge
parent
c5df086178
commit
82f1870fb7
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:128a5e75de9e3eab981433cbab3f06c777e2c98ea1aedb9d8ec8a4d1cb1fd5c1
|
|
||||||
size 20921
|
|
3
URL-Encode-0.03.tar.gz
Normal file
3
URL-Encode-0.03.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:7295d7f07796b179131d9c0f230a6effa56d204de2f8dc72f2e09c61458c8ee6
|
||||||
|
size 24012
|
@@ -1,3 +1,18 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Apr 14 20:22:47 UTC 2015 - coolo@suse.com
|
||||||
|
|
||||||
|
- updated to 0.03
|
||||||
|
see /usr/share/doc/packages/perl-URL-Encode/Changes
|
||||||
|
|
||||||
|
0.03 2014-02-20
|
||||||
|
- Added support for semicolon as a separator in data sets.
|
||||||
|
- Added support pairs without value (i.e. without '=' sign).
|
||||||
|
|
||||||
|
0.02 2013-09-30
|
||||||
|
- No functional changes in this release, only documentation improvements.
|
||||||
|
- Rewritten most documentation
|
||||||
|
- Added a section about performance
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Oct 1 06:39:38 UTC 2013 - coolo@suse.com
|
Tue Oct 1 06:39:38 UTC 2013 - coolo@suse.com
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-URL-Encode
|
# spec file for package perl-URL-Encode
|
||||||
#
|
#
|
||||||
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -17,36 +17,45 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: perl-URL-Encode
|
Name: perl-URL-Encode
|
||||||
Version: 0.01
|
Version: 0.03
|
||||||
Release: 0
|
Release: 0
|
||||||
%define cpan_name URL-Encode
|
%define cpan_name URL-Encode
|
||||||
Summary: Encoding and decoding of C<application/x-www-form-urlencoded> encoding.
|
Summary: Encoding and decoding of C<application/x-www-form-urlencoded> encoding
|
||||||
License: Artistic-1.0 or GPL-1.0+
|
License: Artistic-1.0 or GPL-1.0+
|
||||||
Group: Development/Libraries/Perl
|
Group: Development/Libraries/Perl
|
||||||
Url: http://search.cpan.org/dist/URL-Encode/
|
Url: http://search.cpan.org/dist/URL-Encode/
|
||||||
#Source: http://www.cpan.org/authors/id/C/CH/CHANSEN/%{cpan_name}-0.02.tar.gz
|
Source: http://www.cpan.org/authors/id/C/CH/CHANSEN/%{cpan_name}-%{version}.tar.gz
|
||||||
Source: URL-Encode-0.01.tar.gz
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
BuildRequires: perl
|
BuildRequires: perl
|
||||||
BuildRequires: perl-macros
|
BuildRequires: perl-macros
|
||||||
#BuildRequires: perl(inc::Module::Install)
|
BuildRequires: perl(Test::More) >= 0.88
|
||||||
#BuildRequires: perl(JSON)
|
|
||||||
#BuildRequires: perl(LWP::Simple)
|
|
||||||
#BuildRequires: perl(Module::Build)
|
|
||||||
#BuildRequires: perl(Module::Install::Base)
|
|
||||||
#BuildRequires: perl(Parse::CPAN::Meta)
|
|
||||||
#BuildRequires: perl(URL::Encode::PP)
|
|
||||||
#BuildRequires: perl(URL::Encode::XS)
|
|
||||||
#BuildRequires: perl(YAML::Tiny)
|
|
||||||
%{perl_requires}
|
%{perl_requires}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
This module provides functions to encode and decode strings into and from
|
This module provides functions to encode and decode strings into and from
|
||||||
the 'application/x-www-form-urlencoded' encoding.
|
the 'application/x-www-form-urlencoded' encoding.
|
||||||
|
|
||||||
|
The 'application/x-www-form-urlencoded' format encodes a ordered data sets
|
||||||
|
of pairs consisting of a name and a value, with pairs seperated by
|
||||||
|
ampersand or semicolon and names and values seperated by the equal sign.
|
||||||
|
Space characters are replaced with plus sign and any characters not in the
|
||||||
|
unreserved character set is encoded using the percent-encoding scheme also
|
||||||
|
used for resource identifiers. A percent-encoded octet is encoded as a
|
||||||
|
character triplet, consisting of the percent character "%" followed by the
|
||||||
|
two hexadecimal digits representing that octet's numeric value.
|
||||||
|
|
||||||
|
The unreserved character set includes the uppercase and lowercase letters,
|
||||||
|
decimal digits, hyphen, period, underscore, and tilde.
|
||||||
|
|
||||||
|
ABCDEFGHIJKLMNOPQRSTUVWXYZ
|
||||||
|
abcdefghijklmnopqrstuvwxyz
|
||||||
|
0123456789
|
||||||
|
- . _ ~
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{cpan_name}-%{version}
|
%setup -q -n %{cpan_name}-%{version}
|
||||||
|
find . -type f -print0 | xargs -0 chmod 644
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
||||||
|
Reference in New Issue
Block a user