forked from pool/perl-Graph
Accepting request 177641 from home:coolo:update-perl
update OBS-URL: https://build.opensuse.org/request/show/177641 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Graph?expand=0&rev=13
This commit is contained in:
committed by
Git OBS Bridge
parent
72db68f496
commit
53a1df9f2f
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:f6f5a36b8a96163a6d4ecb144d3559588272a4d9e58bd9af850ace4a74a2ced3
|
|
||||||
size 146959
|
|
3
Graph-0.96.tar.gz
Normal file
3
Graph-0.96.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:832efa8d483a484f2543a001a3996fcc04c9b37cfc2178d63f603fb0cf8f9727
|
||||||
|
size 147629
|
@@ -1,3 +1,31 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 5 05:50:19 UTC 2013 - coolo@suse.com
|
||||||
|
|
||||||
|
- updated to 0.96
|
||||||
|
* Address rt.cpan.org #85449:
|
||||||
|
"Graph-0.94 tests fail under perl 5.18.0"
|
||||||
|
|
||||||
|
* Address rt.cpan.org #82324:
|
||||||
|
"Test failures due to hash randomisation in perl 5.17.6"
|
||||||
|
|
||||||
|
The two above fixes were the same: the biconnectedness
|
||||||
|
code was rewritten from scratch. The new code behaves
|
||||||
|
differently (but I believe more correctly) on certain
|
||||||
|
edge cases, in general it will generate more biconnected
|
||||||
|
components and bridges, for example for "a=b=c" it will
|
||||||
|
now return the same two biconnected components and bridges
|
||||||
|
(cut edges), namely "a=b" and "b=c", the "b" of course being
|
||||||
|
the articulation point (cut vertex).
|
||||||
|
|
||||||
|
* Address rt.cpan.org #67213:
|
||||||
|
"[PATCH] pod fixes"
|
||||||
|
|
||||||
|
* Remove the t/u_bo.t and t/u_bo1.t since they die in 5.18 due
|
||||||
|
to some strange failure, looks unrelated to Graph as such,
|
||||||
|
probably some fix/change made by newer Perls.
|
||||||
|
|
||||||
|
* Release as 0.95.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Nov 18 11:10:38 UTC 2011 - coolo@suse.com
|
Fri Nov 18 11:10:38 UTC 2011 - coolo@suse.com
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-Graph
|
# spec file for package perl-Graph
|
||||||
#
|
#
|
||||||
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2013 SUSE LINUX Products 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
|
||||||
@@ -15,55 +15,31 @@
|
|||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
# norootforbuild
|
|
||||||
|
|
||||||
%bcond_with pod
|
|
||||||
|
|
||||||
Name: perl-Graph
|
Name: perl-Graph
|
||||||
|
Version: 0.96
|
||||||
|
Release: 0
|
||||||
%define cpan_name Graph
|
%define cpan_name Graph
|
||||||
Summary: Graph data structures and algorithms
|
Summary: Graph data structures and algorithms
|
||||||
Version: 0.94
|
License: Artistic-1.0 or GPL-1.0+
|
||||||
Release: 1
|
|
||||||
License: GPL+ or Artistic
|
|
||||||
Group: Development/Libraries/Perl
|
Group: Development/Libraries/Perl
|
||||||
Url: http://search.cpan.org/dist/Graph/
|
Url: http://search.cpan.org/dist/Graph/
|
||||||
#Source: http://www.cpan.org/modules/by-module/Graph/Graph-%{version}.tar.gz
|
Source: http://www.cpan.org/authors/id/J/JH/JHI/%{cpan_name}-%{version}.tar.gz
|
||||||
Source: %{cpan_name}-%{version}.tar.gz
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%{perl_requires}
|
|
||||||
BuildRequires: perl
|
BuildRequires: perl
|
||||||
BuildRequires: perl-macros
|
BuildRequires: perl-macros
|
||||||
%if %{with pod}
|
# MANUAL further mention if perl >= 5.008
|
||||||
BuildRequires: perl(Test::Pod) >= 1.00
|
|
||||||
BuildRequires: perl(Test::Pod::Coverage) >= 1.00
|
|
||||||
%endif
|
|
||||||
BuildRequires: perl(Test::More)
|
|
||||||
BuildRequires: perl(List::Util)
|
|
||||||
BuildRequires: perl(Math::Complex)
|
|
||||||
BuildRequires: perl(Scalar::Util)
|
|
||||||
# further mention if perl >= 5.008
|
|
||||||
BuildRequires: perl(Safe)
|
|
||||||
BuildRequires: perl(Storable) >= 2.05
|
|
||||||
#
|
|
||||||
Requires: perl(List::Util)
|
|
||||||
Requires: perl(Math::Complex)
|
|
||||||
Requires: perl(Scalar::Util)
|
|
||||||
# further mention if perl >= 5.008
|
|
||||||
Requires: perl(Safe)
|
Requires: perl(Safe)
|
||||||
Requires: perl(Storable) >= 2.05
|
Requires: perl(Storable) >= 2.05
|
||||||
|
%{perl_requires}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Graph::Directed allows you to create directed graphs.
|
graph data structures and algorithms
|
||||||
For the available methods, see Graph.
|
|
||||||
http://search.cpan.org/~jhi/Graph-0.94/lib/Graph.pod
|
|
||||||
|
|
||||||
Authors:
|
|
||||||
--------
|
|
||||||
Jarkko Hietaniemi <jhi@iki.fi>
|
|
||||||
|
|
||||||
%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
|
||||||
@@ -74,20 +50,11 @@ Authors:
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
%perl_make_install
|
%perl_make_install
|
||||||
# do not perl_process_packlist (noarch)
|
%perl_process_packlist
|
||||||
# remove .packlist file
|
|
||||||
%{__rm} -rf $RPM_BUILD_ROOT%perl_vendorarch
|
|
||||||
# remove perllocal.pod file
|
|
||||||
%{__rm} -rf $RPM_BUILD_ROOT%perl_archlib
|
|
||||||
# rpmlint: auto directory is included in the perl package
|
|
||||||
%{__rm} -rf $RPM_BUILD_ROOT%perl_vendorlib/auto
|
|
||||||
%perl_gen_filelist
|
%perl_gen_filelist
|
||||||
|
|
||||||
%clean
|
|
||||||
%{__rm} -rf $RPM_BUILD_ROOT
|
|
||||||
|
|
||||||
%files -f %{name}.files
|
%files -f %{name}.files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,755)
|
||||||
%doc Changes DESIGN README RELEASE TODO
|
%doc Changes DESIGN README RELEASE TODO util
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Reference in New Issue
Block a user