Accepting request 297245 from devel:languages:perl:autoupdate
automatic update OBS-URL: https://build.opensuse.org/request/show/297245 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Clone?expand=0&rev=29
This commit is contained in:
parent
982542cbff
commit
1d77822036
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:03def6e82579cd405f75574a5e8e7590063fa0a753a0df6a53be194289a020c5
|
|
||||||
size 13132
|
|
3
Clone-0.38.tar.gz
Normal file
3
Clone-0.38.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:9fb0534bb7ef6ca1f6cc1dc3f29750d6d424394d14c40efdc77832fad3cebde8
|
||||||
|
size 13636
|
20
cpanspec.yml
Normal file
20
cpanspec.yml
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
---
|
||||||
|
#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
|
@ -1,3 +1,18 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 16 17:27:41 UTC 2015 - coolo@suse.com
|
||||||
|
|
||||||
|
- updated to 0.38
|
||||||
|
see /usr/share/doc/packages/perl-Clone/Changes
|
||||||
|
|
||||||
|
0.38 2015-01-18 19:27:41 garu
|
||||||
|
- typo fixes and improvements to the README (zmughal)
|
||||||
|
- travis/coveralls integration (zmughal)
|
||||||
|
|
||||||
|
0.37 2014-05-15 16:45:33 garu
|
||||||
|
- removed Carp dependency (GARU)
|
||||||
|
- silenced some clang warnings (JACQUESG)
|
||||||
|
- added a README (GARU)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 9 11:17:50 UTC 2013 - coolo@suse.com
|
Mon Dec 9 11:17:50 UTC 2013 - coolo@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-Clone
|
# spec file for package perl-Clone
|
||||||
#
|
#
|
||||||
# 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,28 +17,27 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: perl-Clone
|
Name: perl-Clone
|
||||||
Version: 0.36
|
Version: 0.38
|
||||||
Release: 0
|
Release: 0
|
||||||
%define cpan_name Clone
|
%define cpan_name Clone
|
||||||
Summary: recursively copy Perl datatypes
|
Summary: Recursively Copy Perl Datatypes
|
||||||
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/Clone/
|
Url: http://search.cpan.org/dist/Clone/
|
||||||
Source: http://www.cpan.org/authors/id/G/GA/GARU/%{cpan_name}-%{version}.tar.gz
|
Source0: http://www.cpan.org/authors/id/G/GA/GARU/%{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
|
||||||
#BuildRequires: perl(Clone)
|
|
||||||
#BuildRequires: perl(Hash::Util::FieldHash)
|
|
||||||
%{perl_requires}
|
%{perl_requires}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
This module provides a clone() method which makes recursive copies of
|
This module provides a 'clone()' method which makes recursive copies of
|
||||||
nested hash, array, scalar and reference types, including tied variables
|
nested hash, array, scalar and reference types, including tied variables
|
||||||
and objects.
|
and objects.
|
||||||
|
|
||||||
clone() takes a scalar argument and duplicates it. To duplicate lists,
|
'clone()' takes a scalar argument and duplicates it. To duplicate lists,
|
||||||
arrays or hashes, pass them in by reference. e.g.
|
arrays or hashes, pass them in by reference, e.g.
|
||||||
|
|
||||||
my $copy = clone (\@array);
|
my $copy = clone (\@array);
|
||||||
|
|
||||||
@ -64,6 +63,6 @@ find . -type f -print0 | xargs -0 chmod 644
|
|||||||
|
|
||||||
%files -f %{name}.files
|
%files -f %{name}.files
|
||||||
%defattr(-,root,root,755)
|
%defattr(-,root,root,755)
|
||||||
%doc Changes
|
%doc Changes README
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
Reference in New Issue
Block a user