Sync from SUSE:SLFO:Main perl-ExtUtils-InstallPaths revision 0a1fc357a7fe4f1ebf5c547aed483abe
This commit is contained in:
parent
eedf5c049d
commit
2a8a1904e1
BIN
ExtUtils-InstallPaths-0.012.tar.gz
(Stored with Git LFS)
BIN
ExtUtils-InstallPaths-0.012.tar.gz
(Stored with Git LFS)
Binary file not shown.
BIN
ExtUtils-InstallPaths-0.014.tar.gz
(Stored with Git LFS)
Normal file
BIN
ExtUtils-InstallPaths-0.014.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,3 +1,22 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Sep 11 05:32:24 UTC 2024 - Tina Müller <timueller+perl@suse.de>
|
||||||
|
|
||||||
|
- updated to 0.14.0 (0.014)
|
||||||
|
see /usr/share/doc/packages/perl-ExtUtils-InstallPaths/Changes
|
||||||
|
|
||||||
|
0.014 2024-09-10 18:20:50+02:00 Europe/Brussels
|
||||||
|
- Drop 5.006 support
|
||||||
|
- Compensate for perls without installsitescript
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Apr 26 03:08:38 UTC 2024 - Tina Müller <timueller+perl@suse.de>
|
||||||
|
|
||||||
|
- updated to 0.013
|
||||||
|
see /usr/share/doc/packages/perl-ExtUtils-InstallPaths/Changes
|
||||||
|
|
||||||
|
0.013 2024-04-25 12:28:37+02:00 Europe/Brussels
|
||||||
|
- Try to install any installable paths
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri May 11 05:19:22 UTC 2018 - coolo@suse.com
|
Fri May 11 05:19:22 UTC 2018 - coolo@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-ExtUtils-InstallPaths
|
# spec file for package perl-ExtUtils-InstallPaths
|
||||||
#
|
#
|
||||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2024 SUSE LLC
|
||||||
#
|
#
|
||||||
# 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,26 +12,28 @@
|
|||||||
# 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-ExtUtils-InstallPaths
|
|
||||||
Version: 0.012
|
|
||||||
Release: 0
|
|
||||||
%define cpan_name ExtUtils-InstallPaths
|
%define cpan_name ExtUtils-InstallPaths
|
||||||
Summary: Build.PL install path logic made easy
|
Name: perl-ExtUtils-InstallPaths
|
||||||
|
Version: 0.14.0
|
||||||
|
Release: 0
|
||||||
|
# 0.014 -> normalize -> 0.14.0
|
||||||
|
%define cpan_version 0.014
|
||||||
License: Artistic-1.0 OR GPL-1.0-or-later
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
||||||
Group: Development/Libraries/Perl
|
Summary: Build.PL install path logic made easy
|
||||||
Url: http://search.cpan.org/dist/ExtUtils-InstallPaths/
|
URL: https://metacpan.org/release/%{cpan_name}
|
||||||
Source0: https://cpan.metacpan.org/authors/id/L/LE/LEONT/%{cpan_name}-%{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
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
||||||
BuildRequires: perl
|
BuildRequires: perl
|
||||||
BuildRequires: perl-macros
|
BuildRequires: perl-macros
|
||||||
BuildRequires: perl(ExtUtils::Config) >= 0.002
|
BuildRequires: perl(ExtUtils::Config) >= 0.9.0
|
||||||
Requires: perl(ExtUtils::Config) >= 0.002
|
Requires: perl(ExtUtils::Config) >= 0.9.0
|
||||||
|
Provides: perl(ExtUtils::InstallPaths) = %{version}
|
||||||
|
%undefine __perllib_provides
|
||||||
%{perl_requires}
|
%{perl_requires}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -94,14 +96,14 @@ This is the same as 'libdoc' above, but applies to HTML documents. Unless
|
|||||||
explicitly set, this is only available when perl was configured to do so.
|
explicitly set, this is only available when perl was configured to do so.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{cpan_name}-%{version}
|
%autosetup -n %{cpan_name}-%{cpan_version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
perl Makefile.PL INSTALLDIRS=vendor
|
||||||
%{__make} %{?_smp_mflags}
|
%make_build
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%{__make} test
|
make test
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%perl_make_install
|
%perl_make_install
|
||||||
@ -109,8 +111,7 @@ explicitly set, this is only available when perl was configured to do so.
|
|||||||
%perl_gen_filelist
|
%perl_gen_filelist
|
||||||
|
|
||||||
%files -f %{name}.files
|
%files -f %{name}.files
|
||||||
%defattr(-,root,root,755)
|
%doc Changes README
|
||||||
%doc Changes
|
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
x
Reference in New Issue
Block a user