Accepting request 325464 from devel:languages:perl:autoupdate

automatic update

OBS-URL: https://build.opensuse.org/request/show/325464
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Data-UUID?expand=0&rev=22
This commit is contained in:
Stephan Kulow
2015-08-23 14:19:00 +00:00
committed by Git OBS Bridge
parent 2bf423d11c
commit 6d6c6740c1
5 changed files with 41 additions and 6 deletions

View File

@@ -17,14 +17,15 @@
Name: perl-Data-UUID
Version: 1.220
Version: 1.221
Release: 0
%define cpan_name Data-UUID
Summary: Globally/Universally Unique Identifiers (GUIDs/UUIDs)
License: BSD-3-Clause
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/Data-UUID/
Source: http://www.cpan.org/authors/id/R/RJ/RJBS/%{cpan_name}-%{version}.tar.gz
Source0: http://www.cpan.org/authors/id/R/RJ/RJBS/%{cpan_name}-%{version}.tar.gz
Source1: cpanspec.yml
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
@@ -65,11 +66,13 @@ This modules provides several methods to create a UUID. In all methods,
# creates UUID string, using conventional UUID string format,
# such as: 4162F712-1DD2-11B2-B17E-C09EFE1DC403
# Note that digits A-F are capitalized, which is contrary to rfc4122
$ug->create_str();
$ug->create_from_name_str(<namespace>, <name>);
# creates UUID string as a hex string,
# such as: 0x4162F7121DD211B2B17EC09EFE1DC403
# Note that digits A-F are capitalized, which is contrary to rfc4122
$ug->create_hex();
$ug->create_from_name_hex(<namespace>, <name>);
@@ -82,7 +85,7 @@ This modules provides several methods to create a UUID. In all methods,
# convert to conventional string representation
$ug->to_string(<uuid>);
# convert to hex string
# convert to hex string (using upper, rather than lower, case letters)
$ug->to_hexstring(<uuid>);
# convert to Base64-encoded string