2011-12-20 13:44:51 +00:00
|
|
|
#
|
|
|
|
# spec file for package perl-local-lib
|
|
|
|
#
|
2017-06-25 08:37:57 +00:00
|
|
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
2011-12-20 13:44:51 +00:00
|
|
|
#
|
|
|
|
# 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.
|
2011-02-25 20:04:52 +00:00
|
|
|
|
2011-12-20 13:44:51 +00:00
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
2011-12-20 13:45:03 +00:00
|
|
|
|
2013-06-11 18:40:51 +00:00
|
|
|
|
2011-02-25 20:04:52 +00:00
|
|
|
Name: perl-local-lib
|
2017-06-25 08:37:57 +00:00
|
|
|
Version: 2.000023
|
2011-02-25 20:04:52 +00:00
|
|
|
Release: 0
|
2017-06-25 08:37:57 +00:00
|
|
|
%define cpan_name local-lib
|
2016-05-20 05:12:55 +00:00
|
|
|
Summary: Create and Use a Local Lib/ for Perl Modules with Perl5lib
|
2011-12-20 13:44:51 +00:00
|
|
|
License: Artistic-1.0 or GPL-1.0+
|
|
|
|
Group: Development/Libraries/Perl
|
|
|
|
Url: http://search.cpan.org/dist/local-lib/
|
2017-06-25 08:37:57 +00:00
|
|
|
Source0: https://cpan.metacpan.org/authors/id/H/HA/HAARG/%{cpan_name}-%{version}.tar.gz
|
2017-06-25 08:41:32 +00:00
|
|
|
Source1: perl-homedir.sh
|
|
|
|
Source2: perl-homedir.csh
|
|
|
|
Source3: cpanspec.yml
|
2017-06-25 08:37:57 +00:00
|
|
|
BuildArch: noarch
|
2011-12-20 13:44:51 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
BuildRequires: perl
|
|
|
|
BuildRequires: perl-macros
|
2013-06-11 18:45:11 +00:00
|
|
|
BuildRequires: perl(CPAN) >= 1.82
|
2011-12-20 13:44:51 +00:00
|
|
|
BuildRequires: perl(ExtUtils::Install) >= 1.43
|
2015-02-07 07:36:33 +00:00
|
|
|
BuildRequires: perl(ExtUtils::MakeMaker) >= 7.00
|
2015-11-22 06:44:38 +00:00
|
|
|
BuildRequires: perl(Module::Build) >= 0.360000
|
2013-06-11 18:45:11 +00:00
|
|
|
Requires: perl(CPAN) >= 1.82
|
2017-06-25 08:37:57 +00:00
|
|
|
Requires: perl(ExtUtils::Install) >= 1.43
|
|
|
|
Requires: perl(ExtUtils::MakeMaker) >= 7.00
|
|
|
|
Requires: perl(Module::Build) >= 0.360000
|
2013-06-11 18:45:11 +00:00
|
|
|
%{perl_requires}
|
2010-02-03 19:44:19 +00:00
|
|
|
|
|
|
|
%description
|
2013-06-11 18:45:11 +00:00
|
|
|
This module provides a quick, convenient way of bootstrapping a user-local
|
|
|
|
Perl module library located within the user's home directory. It also
|
|
|
|
constructs and prints out for the user the list of environment variables
|
|
|
|
using the syntax appropriate for the user's current shell (as specified by
|
|
|
|
the 'SHELL' environment variable), suitable for directly adding to one's
|
|
|
|
shell configuration file.
|
2010-02-03 19:44:19 +00:00
|
|
|
|
|
|
|
More generally, local::lib allows for the bootstrapping and usage of a
|
2013-06-11 18:45:11 +00:00
|
|
|
directory containing Perl modules outside of Perl's '@INC'. This makes it
|
|
|
|
easier to ship an application with an app-specific copy of a Perl module,
|
|
|
|
or collection of modules. Useful in cases like when an upstream maintainer
|
|
|
|
hasn't applied a patch to a module of theirs that you need for your
|
|
|
|
application.
|
2010-02-03 19:44:19 +00:00
|
|
|
|
2017-06-25 08:37:57 +00:00
|
|
|
On import, local::lib sets the following environment variables to
|
|
|
|
appropriate values:
|
|
|
|
|
|
|
|
* PERL_MB_OPT
|
|
|
|
|
|
|
|
* PERL_MM_OPT
|
|
|
|
|
|
|
|
* PERL5LIB
|
|
|
|
|
|
|
|
* PATH
|
2010-02-03 19:44:19 +00:00
|
|
|
|
2017-06-25 08:37:57 +00:00
|
|
|
* PERL_LOCAL_LIB_ROOT
|
2010-02-03 19:44:19 +00:00
|
|
|
|
2017-06-25 08:37:57 +00:00
|
|
|
When possible, these will be appended to instead of overwritten entirely.
|
|
|
|
|
|
|
|
These values are then available for reference by any code after import.
|
2010-02-03 19:44:19 +00:00
|
|
|
|
|
|
|
%prep
|
2017-06-25 08:37:57 +00:00
|
|
|
%setup -q -n %{cpan_name}-%{version}
|
2010-02-03 19:44:19 +00:00
|
|
|
|
|
|
|
%build
|
2017-06-25 08:37:57 +00:00
|
|
|
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
|
|
|
%{__make} %{?_smp_mflags}
|
|
|
|
|
|
|
|
%check
|
|
|
|
%{__make} test
|
2010-02-03 19:44:19 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
%perl_make_install
|
|
|
|
%perl_process_packlist
|
2017-06-25 08:41:32 +00:00
|
|
|
# MANUAL BEGIN
|
2017-06-25 08:39:52 +00:00
|
|
|
%__install -d "%{buildroot}%{_sysconfdir}/profile.d"
|
|
|
|
%__install -m0644 "%{SOURCE1}" "%{SOURCE2}" "%{buildroot}%{_sysconfdir}/profile.d/"
|
2017-06-25 08:41:32 +00:00
|
|
|
# MANUAL END
|
|
|
|
%perl_gen_filelist
|
2017-06-25 08:39:52 +00:00
|
|
|
|
2017-06-25 08:43:42 +00:00
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%doc Changes
|
|
|
|
%dir %{perl_vendorlib}/lib
|
|
|
|
%dir %{perl_vendorlib}/lib/core
|
|
|
|
%{perl_vendorlib}/lib/core/only.pm
|
|
|
|
%dir %{perl_vendorlib}/local/
|
|
|
|
%{perl_vendorlib}/local/lib.pm
|
|
|
|
%dir %{perl_vendorarch}/auto/local
|
|
|
|
%{perl_vendorarch}/auto/local/lib
|
|
|
|
%doc %{perl_man3dir}/lib::core::only.%{perl_man3ext}%{ext_man}
|
|
|
|
%doc %{perl_man3dir}/local::lib.%{perl_man3ext}%{ext_man}
|
|
|
|
|
|
|
|
%dir %{perl_vendorlib}/POD2
|
|
|
|
%lang(de) %dir %{perl_vendorlib}/POD2/DE
|
|
|
|
%lang(de) %dir %{perl_vendorlib}/POD2/DE/local
|
|
|
|
%lang(de) %{perl_vendorlib}/POD2/DE/local/lib.pod
|
|
|
|
%lang(de) %doc %{perl_man3dir}/POD2::DE::local::lib.%{perl_man3ext}%{ext_man}
|
|
|
|
%lang(pt_BR) %dir %{perl_vendorlib}/POD2/PT_BR
|
|
|
|
%lang(pt_BR) %dir %{perl_vendorlib}/POD2/PT_BR/local
|
|
|
|
%lang(pt_BR) %{perl_vendorlib}/POD2/PT_BR/local/lib.pod
|
|
|
|
%lang(pt_BR) %doc %{perl_man3dir}/POD2::PT_BR::local::lib.%{perl_man3ext}%{ext_man}
|
|
|
|
|
|
|
|
%files -n perl-homedir
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%config(noreplace) %{_sysconfdir}/profile.d/*
|
2010-02-03 19:44:19 +00:00
|
|
|
|
|
|
|
%changelog
|