wok rev 24268
updated perl-uri (1.76 -> 5.10)
author | Hans-G?nter Theisgen |
---|---|
date | Sun Jan 02 10:35:32 2022 +0100 (2022-01-02) |
parents | 00eba47b3047 |
children | efb724a8e25a |
files | perl-uri/description.txt perl-uri/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/perl-uri/description.txt Sun Jan 02 10:35:32 2022 +0100 1.3 @@ -0,0 +1,20 @@ 1.4 +This module implements the URI class. 1.5 +Objects of this class represent "Uniform Resource Identifier references" as 1.6 +specified in RFC 2396 (and updated by RFC 2732). 1.7 + 1.8 +A Uniform Resource Identifier is a compact string of characters that 1.9 +identifies an abstract or physical resource. 1.10 +A Uniform Resource Identifier can be further classified as either a 1.11 +Uniform Resource Locator (URL) or a Uniform Resource Name (URN). 1.12 +The distinction between URL and URN does not matter to the URI class interface. 1.13 +A "URI-reference" is a URI that may have additional information attached in 1.14 +the form of a fragment identifier. 1.15 + 1.16 +An absolute URI reference consists of three parts: a scheme, a scheme-specific 1.17 +part and a fragment identifier. 1.18 +A subset of URI references share a common syntax for hierarchical namespaces. 1.19 +For these, the scheme-specific part is further broken down into authority, 1.20 +path and query components. 1.21 +These URIs can also take the form of relative URI references, where the scheme 1.22 +(and usually also the authority) component is missing, but implied by the 1.23 +context of the URI reference.
2.1 --- a/perl-uri/receipt Sun Jan 02 10:33:22 2022 +0100 2.2 +++ b/perl-uri/receipt Sun Jan 02 10:35:32 2022 +0100 2.3 @@ -1,12 +1,13 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="perl-uri" 2.7 -VERSION="1.76" 2.8 +VERSION="5.10" 2.9 CATEGORY="development" 2.10 SHORT_DESC="Perl extensions URI::Escape, URI::File, URI::ldap and URI::URL." 2.11 MAINTAINER="erjo@slitaz.org" 2.12 LICENSE="GPL" 2.13 -WEB_SITE="https://metacpan.org/release/URI" 2.14 +WEB_SITE="https://metacpan.org/pod/URI" 2.15 +REPOLOGY="perl:uri" 2.16 2.17 SOURCE="URI" 2.18 TARBALL="$SOURCE-$VERSION.tar.gz" 2.19 @@ -33,6 +34,5 @@ 2.20 # Rules to gen a SliTaz package suitable for Tazpkg. 2.21 genpkg_rules() 2.22 { 2.23 - mkdir -p $fs/usr 2.24 - cp -a $install/usr/lib $fs/usr 2.25 + cook_copy_folders lib 2.26 }