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

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:99533b06e4348d704e3d2252d7d41aa652680a1bd5af04e1dc8ce7e84e74f960
size 16905

3
Data-UUID-1.221.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3cc7b2a3a7b74b45a059e013f7fd878078500ea4b7269036f84556b022078667
size 17041

23
cpanspec.yml Normal file
View File

@@ -0,0 +1,23 @@
---
#description_paragraphs: 3
#no_testing: broken upstream
#sources:
# - source1
# - source2
#patches:
# foo.patch: -p1
# bar.patch:
#preamble: |-
# BuildRequires: gcc-c++
#post_prep: |-
# hunspell=`pkg-config --libs hunspell | sed -e 's,-l,,; s, *,,g'`
# sed -i -e "s,hunspell-X,$hunspell," t/00-prereq.t Makefile.PL
#post_install: |-
# sed on %{name}.files
#license: SUSE-NonFree
#skip_noarch: 1
#custom_build: |-
#./Build build flags=%{?_smp_mflags} --myflag
#custom_test: |-
#startserver && make test
#ignore_requires: Bizarre::Module

View File

@@ -1,3 +1,12 @@
-------------------------------------------------------------------
Sun Aug 23 08:40:39 UTC 2015 - coolo@suse.com
- updated to 1.221
see /usr/share/doc/packages/perl-Data-UUID/Changes
1.221 2015-08-10
- documentation improvements
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Feb 8 21:51:18 UTC 2015 - coolo@suse.com Sun Feb 8 21:51:18 UTC 2015 - coolo@suse.com

View File

@@ -17,14 +17,15 @@
Name: perl-Data-UUID Name: perl-Data-UUID
Version: 1.220 Version: 1.221
Release: 0 Release: 0
%define cpan_name Data-UUID %define cpan_name Data-UUID
Summary: Globally/Universally Unique Identifiers (GUIDs/UUIDs) Summary: Globally/Universally Unique Identifiers (GUIDs/UUIDs)
License: BSD-3-Clause License: BSD-3-Clause
Group: Development/Libraries/Perl Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/Data-UUID/ 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 BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl BuildRequires: perl
BuildRequires: perl-macros 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, # creates UUID string, using conventional UUID string format,
# such as: 4162F712-1DD2-11B2-B17E-C09EFE1DC403 # such as: 4162F712-1DD2-11B2-B17E-C09EFE1DC403
# Note that digits A-F are capitalized, which is contrary to rfc4122
$ug->create_str(); $ug->create_str();
$ug->create_from_name_str(<namespace>, <name>); $ug->create_from_name_str(<namespace>, <name>);
# creates UUID string as a hex string, # creates UUID string as a hex string,
# such as: 0x4162F7121DD211B2B17EC09EFE1DC403 # such as: 0x4162F7121DD211B2B17EC09EFE1DC403
# Note that digits A-F are capitalized, which is contrary to rfc4122
$ug->create_hex(); $ug->create_hex();
$ug->create_from_name_hex(<namespace>, <name>); $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 # convert to conventional string representation
$ug->to_string(<uuid>); $ug->to_string(<uuid>);
# convert to hex string # convert to hex string (using upper, rather than lower, case letters)
$ug->to_hexstring(<uuid>); $ug->to_hexstring(<uuid>);
# convert to Base64-encoded string # convert to Base64-encoded string