Accepting request 660672 from devel:languages:perl:autoupdate

automatic update

OBS-URL: https://build.opensuse.org/request/show/660672
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Algorithm-Dependency?expand=0&rev=4
This commit is contained in:
Lars Vogdt
2019-01-02 15:09:30 +00:00
committed by Git OBS Bridge
parent f85749a1ff
commit f582aa5729
5 changed files with 84 additions and 45 deletions

View File

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

View File

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

28
cpanspec.yml Normal file
View File

@@ -0,0 +1,28 @@
---
#description_paragraphs: 3
#description: |-
# override description from CPAN
#summary: override summary from CPAN
#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_build: |-
# rm unused.files
#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,9 @@
-------------------------------------------------------------------
Sat Dec 22 06:00:39 UTC 2018 - Stephan Kulow <coolo@suse.com>
- updated to 1.111
see /usr/share/doc/packages/perl-Algorithm-Dependency/Changes
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Oct 7 12:19:47 UTC 2018 - Dirk Stoecker <opensuse@dstoecker.de> Sun Oct 7 12:19:47 UTC 2018 - Dirk Stoecker <opensuse@dstoecker.de>

View File

@@ -1,63 +1,68 @@
# vim: set sw=4 ts=4 et nu: #
# spec file for package perl-Algorithm-Dependency
#
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
Name: perl-Algorithm-Dependency Name: perl-Algorithm-Dependency
Version: 1.110 Version: 1.111
Release: 0 Release: 0
%define cpan_name Algorithm-Dependency
Summary: Base class for implementing various dependency trees Summary: Base class for implementing various dependency trees
Source: ftp://ftp.cpan.org/pub/CPAN/authors/id/A/AD/ADAMK/Algorithm-Dependency-%{version}.tar.gz License: Artistic-1.0 OR GPL-1.0-or-later
URL: http://search.cpan.org/dist/Algorithm-Dependency
Group: Development/Libraries/Perl Group: Development/Libraries/Perl
License: Perl License Url: https://metacpan.org/release/%{cpan_name}
BuildRoot: %{_tmppath}/build-%{name}-%{version} Source0: https://cpan.metacpan.org/authors/id/E/ET/ETHER/%{cpan_name}-%{version}.tar.gz
%{perl_requires} Source1: cpanspec.yml
BuildRequires: perl-macros
BuildRequires: make
BuildRequires: perl(Module::Install::DSL)
BuildRequires: perl(Test::More) >= 0.47
BuildRequires: perl(File::Spec) >= 0.80
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.42
BuildRequires: perl(Test::ClassAPI) >= 0.6
BuildRequires: perl(List::Util) >= 1.11
BuildRequires: perl(Params::Util) >= 0.31
Requires: perl(List::Util) >= 1.11
Requires: perl(Params::Util) >= 0.31
%if 0%{?suse_version} >= 1120
BuildArch: noarch BuildArch: noarch
%endif BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(Params::Util)
BuildRequires: perl(Test::ClassAPI)
Requires: perl(Params::Util)
%{perl_requires}
%description %description
Algorithm::Dependency is a framework for creating simple read-only Algorithm::Dependency is a framework for creating simple read-only
dependency heirachies, where you have a set of items that rely on other dependency hierarchies, where you have a set of items that rely on other
items in the set, and require actions on them as well. items in the set, and require actions on them as well.
Despite the most visible of these being software installation systems like Despite the most visible of these being software installation systems like
the CPAN installer, or debian apt-get, they are useful in other the CPAN installer, or Debian apt-get, they are useful in other situations.
situations. This module intentionally uses implementation-neutral words, This module intentionally uses implementation-neutral words, to avoid
to avoid confusion. confusion.
%prep %prep
%setup -q -n "Algorithm-Dependency-%{version}" %setup -q -n %{cpan_name}-%{version}
%__sed -i '/^auto_install/d' Makefile.PL
%build %build
%__perl Makefile.PL PREFIX="%{_prefix}" perl Makefile.PL INSTALLDIRS=vendor
%__make %{?jobs:-j%{jobs}} make %{?_smp_mflags}
%check
make test
%install %install
%perl_make_install %perl_make_install
%perl_process_packlist %perl_process_packlist
%perl_gen_filelist
%check %files -f %{name}.files
%__make test %defattr(-,root,root,755)
%doc Changes CONTRIBUTING README
%clean %license LICENSE
%{?buildroot:%__rm -rf "%{buildroot}"}
%files
%defattr(-,root,root)
%doc README LICENSE Changes
%dir %{perl_vendorlib}/Algorithm
%{perl_vendorlib}/Algorithm/Dependency
%{perl_vendorlib}/Algorithm/Dependency.pm
%doc %{perl_man3dir}/Algorithm::Dependency.%{perl_man3ext}%{ext_man}
%doc %{perl_man3dir}/Algorithm::Dependency::*.%{perl_man3ext}%{ext_man}
%changelog