8
0

- updated to 1.01

- Better error message in install_share (CHORNY)
    - Compatibility with MYMETA.yml support in EUMM (CHORNY)
    - Support for extraction of Artistic 2.0 license (CHORNY)
    - Support https links when searching for bug trackers (CHORNY)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Module-Install?expand=0&rev=5
This commit is contained in:
Stephan Kulow
2011-05-01 10:41:50 +00:00
committed by Git OBS Bridge
parent 428f49ce70
commit 3bdbd97b13
4 changed files with 35 additions and 38 deletions

View File

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

View File

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

View File

@@ -1,3 +1,12 @@
-------------------------------------------------------------------
Sun May 1 10:37:31 UTC 2011 - coolo@opensuse.org
- updated to 1.01
- Better error message in install_share (CHORNY)
- Compatibility with MYMETA.yml support in EUMM (CHORNY)
- Support for extraction of Artistic 2.0 license (CHORNY)
- Support https links when searching for bug trackers (CHORNY)
-------------------------------------------------------------------
Wed Dec 1 13:33:43 UTC 2010 - coolo@novell.com

View File

@@ -1,7 +1,7 @@
#
# spec file for package perl-Module-Install (Version 1.00)
# spec file for package perl-Module-Install (Version 1.01)
#
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -15,21 +15,17 @@
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
Name: perl-Module-Install
%define cpan_name Module-Install
Summary: Standalone, extensible Perl module installer
Version: 1.00
Version: 1.01
Release: 1
License: GPL+ or Artistic
Group: Development/Libraries/Perl
%define cpan_name Module-Install
Summary: Standalone, extensible Perl module installer
Url: http://search.cpan.org/dist/Module-Install/
#Source: http://www.cpan.org/modules/by-module/Module/Module-Install-%{version}.tar.gz
Source: %{cpan_name}-%{version}.tar.bz2
Group: Development/Libraries/Perl
Source: http://www.cpan.org/authors/id/A/AD/ADAMK/%{cpan_name}-%{version}.tar.gz
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%{perl_requires}
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(Archive::Tar) >= 1.44
@@ -40,17 +36,18 @@ BuildRequires: perl(File::Remove) >= 1.42
BuildRequires: perl(File::Spec) >= 3.28
BuildRequires: perl(JSON) >= 2.14
BuildRequires: perl(LWP::UserAgent) >= 5.812
BuildRequires: perl(Module::Build) >= 0.29
BuildRequires: perl(Module::CoreList) >= 2.17
BuildRequires: perl(Module::ScanDeps) >= 0.89
BuildRequires: perl(PAR::Dist) >= 0.29
BuildRequires: perl(Parse::CPAN::Meta) >= 1.39
BuildRequires: perl(YAML::Tiny) >= 1.38
# for test
BuildRequires: perl(Test::Harness) >= 3.13
BuildRequires: perl(Test::More) >= 0.84
#
BuildRequires: perl(Test::More) >= 0.86
BuildRequires: perl(YAML::Tiny) >= 1.33
Requires: perl(Archive::Tar) >= 1.44
Requires: perl(Devel::PPPort) >= 3.16
Requires: perl(ExtUtils::Install) >= 1.52
Requires: perl(ExtUtils::ParseXS) >= 2.19
Requires: perl(File::Remove) >= 1.42
Requires: perl(File::Spec) >= 3.28
Requires: perl(JSON) >= 2.14
@@ -61,24 +58,19 @@ Requires: perl(Module::ScanDeps) >= 0.89
Requires: perl(PAR::Dist) >= 0.29
Requires: perl(Parse::CPAN::Meta) >= 1.39
Requires: perl(YAML::Tiny) >= 1.38
%{perl_requires}
%description
Module::Install is a package for writing installers for CPAN (or CPAN-like)
distributions that are clean, simple, minimalist, act in a strictly correct
manner with ExtUtils::MakeMaker, and will run on any Perl installation
version 5.005 or newer.
*Module::Install* is a package for writing installers for CPAN (or
CPAN-like) distributions that are clean, simple, minimalist, act in a
strictly correct manner with the ExtUtils::MakeMaker manpage, and will run
on any Perl installation version 5.005 or newer.
The intent is to make it as easy as possible for CPAN authors (and especially
for first-time CPAN authors) to have installers that follow all the best
practices for distribution installation, but involve as much DWIM
The intent is to make it as easy as possible for CPAN authors (and
especially for first-time CPAN authors) to have installers that follow all
the best practices for distribution installation, but involve as much DWIM
(Do What I Mean) as possible when writing them.
Authors:
--------
Adam Kennedy <adamk@cpan.org>
Audrey Tang <autrijus@autrijus.org>
Brian Ingerson <ingy@cpan.org>
%prep
%setup -q -n %{cpan_name}-%{version}
@@ -91,18 +83,14 @@ Authors:
%install
%perl_make_install
# do not perl_process_packlist (noarch)
# remove .packlist file
%{__rm} -rf $RPM_BUILD_ROOT%perl_vendorarch
# remove perllocal.pod file
%{__rm} -rf $RPM_BUILD_ROOT%perl_archlib
%perl_process_packlist
%perl_gen_filelist
%clean
%{__rm} -rf $RPM_BUILD_ROOT
%{__rm} -rf %{buildroot}
%files -f %{name}.files
%defattr(-,root,root,-)
%defattr(-,root,root,755)
%doc Changes LICENSE README
%changelog