Accepting request 694671 from devel:languages:perl:autoupdate
automatic update OBS-URL: https://build.opensuse.org/request/show/694671 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Module-Build?expand=0&rev=50
This commit is contained in:
parent
a88ad60d42
commit
ce473a86be
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:a6ca15d78244a7b50fdbf27f85c85f4035aa799ce7dd018a0d98b358ef7bc782
|
|
||||||
size 304181
|
|
3
Module-Build-0.4229.tar.gz
Normal file
3
Module-Build-0.4229.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:1fe491a6cda914b01bc8e592faa2b5404e9f35915ca15322f8f2a8d8f9008c18
|
||||||
|
size 304340
|
@ -1,3 +1,28 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Apr 16 05:14:36 UTC 2019 - Stephan Kulow <coolo@suse.com>
|
||||||
|
|
||||||
|
- updated to 0.4229
|
||||||
|
see /usr/share/doc/packages/perl-Module-Build/Changes
|
||||||
|
|
||||||
|
0.4229 - Tue Apr 16 00:49:45 CEST 2019
|
||||||
|
- Released 0.42_28 without changes
|
||||||
|
|
||||||
|
0.42_28 - Thu Apr 19 16:34:32 CEST 2018
|
||||||
|
|
||||||
|
- Replace "MOTIVATIONS" section with "COMPARISON" [Dan Brook]
|
||||||
|
|
||||||
|
- Update configure, build, test prereqs [Karen Etheridge]
|
||||||
|
|
||||||
|
0.4227 - Wed Dec 13 11:17:51 CET 2017
|
||||||
|
|
||||||
|
- Released 0.42_26 without changes
|
||||||
|
|
||||||
|
0.42_26 - Wed Dec 13 10:52:39 CET 2017
|
||||||
|
|
||||||
|
- Improve pureperl-only support (#119914) [Shoichi Kaji]
|
||||||
|
|
||||||
|
- Improve the documentation of Module::Build::Compat and dynamic_config [Dan Brook]
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed May 31 06:06:46 UTC 2017 - coolo@suse.com
|
Wed May 31 06:06:46 UTC 2017 - coolo@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-Module-Build
|
# spec file for package perl-Module-Build
|
||||||
#
|
#
|
||||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2019 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
|
||||||
@ -12,20 +12,20 @@
|
|||||||
# license that conforms to the Open Source Definition (Version 1.9)
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
# published by the Open Source Initiative.
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
Name: perl-Module-Build
|
Name: perl-Module-Build
|
||||||
Version: 0.422400
|
Version: 0.422900
|
||||||
Release: 0
|
Release: 0
|
||||||
%define cpan_version 0.4224
|
%define cpan_version 0.4229
|
||||||
Provides: perl(Module::Build) = 0.422400
|
Provides: perl(Module::Build) = 0.422900
|
||||||
%define cpan_name Module-Build
|
%define cpan_name Module-Build
|
||||||
Summary: Build and install Perl modules
|
Summary: Build and install Perl modules
|
||||||
License: Artistic-1.0 or GPL-1.0+
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
||||||
Group: Development/Libraries/Perl
|
Group: Development/Libraries/Perl
|
||||||
Url: http://search.cpan.org/dist/Module-Build/
|
Url: https://metacpan.org/release/%{cpan_name}
|
||||||
Source0: https://cpan.metacpan.org/authors/id/L/LE/LEONT/%{cpan_name}-%{cpan_version}.tar.gz
|
Source0: https://cpan.metacpan.org/authors/id/L/LE/LEONT/%{cpan_name}-%{cpan_version}.tar.gz
|
||||||
Source1: cpanspec.yml
|
Source1: cpanspec.yml
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
@ -56,13 +56,12 @@ Recommends: perl(ExtUtils::Manifest) >= 1.54
|
|||||||
%description
|
%description
|
||||||
'Module::Build' is a system for building, testing, and installing Perl
|
'Module::Build' is a system for building, testing, and installing Perl
|
||||||
modules. It is meant to be an alternative to 'ExtUtils::MakeMaker'.
|
modules. It is meant to be an alternative to 'ExtUtils::MakeMaker'.
|
||||||
Developers may alter the behavior of the module through subclassing in a
|
Developers may alter the behavior of the module through subclassing. It
|
||||||
much more straightforward way than with 'MakeMaker'. It also does not
|
also does not require a 'make' on your system - most of the 'Module::Build'
|
||||||
require a 'make' on your system - most of the 'Module::Build' code is
|
code is pure-perl and written in a very cross-platform way.
|
||||||
pure-perl and written in a very cross-platform way.
|
|
||||||
|
|
||||||
See "MOTIVATIONS" for more comparisons between 'ExtUtils::MakeMaker' and
|
See "COMPARISON" for more comparisons between 'Module::Build' and other
|
||||||
'Module::Build'.
|
installer tools.
|
||||||
|
|
||||||
To install 'Module::Build', and any other module that uses 'Module::Build'
|
To install 'Module::Build', and any other module that uses 'Module::Build'
|
||||||
for its installation process, do the following:
|
for its installation process, do the following:
|
||||||
@ -102,7 +101,7 @@ You can run the 'help' action for a complete list of actions.
|
|||||||
%setup -q -n %{cpan_name}-%{cpan_version}
|
%setup -q -n %{cpan_name}-%{cpan_version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%{__perl} Build.PL installdirs=vendor
|
perl Build.PL installdirs=vendor
|
||||||
./Build build flags=%{?_smp_mflags}
|
./Build build flags=%{?_smp_mflags}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
|
Loading…
Reference in New Issue
Block a user