2011-02-25 20:04:52 +00:00
|
|
|
# vim: set ts=4 sw=4 et:
|
2011-12-20 13:44:51 +00:00
|
|
|
#
|
|
|
|
# spec file for package perl-local-lib
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
# 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-02-25 20:04:52 +00:00
|
|
|
Name: perl-local-lib
|
|
|
|
Version: 1.008004
|
|
|
|
Release: 0
|
|
|
|
Summary: Create and Use a local Library Directory for Perl Modules
|
2011-12-20 13:44:51 +00:00
|
|
|
License: Artistic-1.0 or GPL-1.0+
|
|
|
|
Group: Development/Libraries/Perl
|
2011-02-25 20:04:52 +00:00
|
|
|
Source: http://search.cpan.org/CPAN/authors/id/A/AP/APEIRON/local-lib-%{version}.tar.gz
|
|
|
|
Source1: perl-homedir.sh
|
|
|
|
Source2: perl-homedir.csh
|
2011-12-20 13:44:51 +00:00
|
|
|
Url: http://search.cpan.org/dist/local-lib/
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
BuildRequires: make
|
|
|
|
BuildRequires: perl
|
|
|
|
BuildRequires: perl-macros
|
2011-02-25 20:04:52 +00:00
|
|
|
BuildRequires: perl(CPAN) >= 1.80
|
|
|
|
BuildRequires: perl(ExtUtils::CBuilder)
|
2011-12-20 13:44:51 +00:00
|
|
|
BuildRequires: perl(ExtUtils::Install) >= 1.43
|
|
|
|
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.42
|
2011-02-25 20:04:52 +00:00
|
|
|
BuildRequires: perl(ExtUtils::ParseXS)
|
|
|
|
BuildRequires: perl(Module::Build) >= 0.28
|
|
|
|
BuildRequires: perl(Test::More)
|
2010-04-01 17:02:06 +00:00
|
|
|
%if 0%{?suse_version} >= 1030
|
2011-02-25 20:04:52 +00:00
|
|
|
Requires: perl-base = %{perl_version}
|
2010-04-01 17:02:06 +00:00
|
|
|
%else
|
2011-02-25 20:04:52 +00:00
|
|
|
Requires: perl
|
2010-04-01 17:02:06 +00:00
|
|
|
%endif
|
2011-02-25 20:04:52 +00:00
|
|
|
Requires: perl(CPAN) >= 1.80
|
|
|
|
Requires: perl(ExtUtils::CBuilder)
|
|
|
|
Requires: perl(ExtUtils::Install) >= 1.43
|
|
|
|
Requires: perl(ExtUtils::MakeMaker) >= 6.31
|
|
|
|
Requires: perl(ExtUtils::ParseXS)
|
|
|
|
Requires: perl(Module::Build) >= 0.28
|
2010-02-03 19:44:19 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
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.
|
|
|
|
|
|
|
|
More generally, local::lib allows for the bootstrapping and usage of a
|
|
|
|
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.
|
|
|
|
|
|
|
|
%package -n perl-homedir
|
2011-02-25 20:04:52 +00:00
|
|
|
Summary: Per-user Perl local::lib setup
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
Requires: /usr/bin/cpan
|
2010-02-03 19:44:19 +00:00
|
|
|
|
|
|
|
%description -n perl-homedir
|
|
|
|
perl-homedir configures the system to automatically create a ~/perl5
|
|
|
|
directory in each user's $HOME on user login. This allows each user to
|
|
|
|
install and CPAN packages via the CPAN to their $HOME, with no additional
|
|
|
|
configuration or privliges, and without installing them system-wide.
|
|
|
|
|
|
|
|
If you want your users to be able to install and use their own Perl modules,
|
|
|
|
install this package.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n "local-lib-%{version}"
|
2010-08-26 06:34:04 +00:00
|
|
|
%__chmod 0644 Changes
|
2010-02-03 19:44:19 +00:00
|
|
|
|
|
|
|
%build
|
2010-04-01 17:02:06 +00:00
|
|
|
unset PERL_MM_OPT
|
2010-02-03 19:44:19 +00:00
|
|
|
%__perl Makefile.PL INSTALLDIRS=vendor PREFIX="%{_prefix}"
|
|
|
|
%__make %{?jobs:-j%{jobs}}
|
|
|
|
|
|
|
|
%install
|
2010-04-01 17:02:06 +00:00
|
|
|
unset PERL_MM_OPT
|
2010-02-03 19:44:19 +00:00
|
|
|
%perl_make_install
|
2010-06-12 23:09:49 +00:00
|
|
|
|
|
|
|
%__chmod 0644 "%{buildroot}%{perl_vendorlib}/local/lib.pm"
|
2010-08-26 06:34:04 +00:00
|
|
|
%__chmod 0644 "%{buildroot}%{perl_vendorlib}/POD2"/*/"local/lib.pod"
|
|
|
|
%__chmod 0644 "%{buildroot}%{perl_man3dir}"/POD2::*::local::lib.%{perl_man3ext}
|
2010-06-12 23:09:49 +00:00
|
|
|
|
2010-02-03 19:44:19 +00:00
|
|
|
%perl_process_packlist
|
|
|
|
|
|
|
|
%__install -d "%{buildroot}%{_sysconfdir}/profile.d"
|
|
|
|
%__install -m0644 "%{SOURCE1}" "%{SOURCE2}" "%{buildroot}%{_sysconfdir}/profile.d/"
|
|
|
|
|
|
|
|
%check
|
2010-04-01 17:02:06 +00:00
|
|
|
unset PERL_MM_OPT
|
2010-02-03 19:44:19 +00:00
|
|
|
%__make test
|
|
|
|
|
|
|
|
%clean
|
|
|
|
%__rm -rf "%{buildroot}"
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%doc Changes
|
2010-04-01 17:02:06 +00:00
|
|
|
%dir %{perl_vendorlib}/lib
|
|
|
|
%dir %{perl_vendorlib}/lib/core
|
|
|
|
%{perl_vendorlib}/lib/core/only.pm
|
2010-02-03 19:44:19 +00:00
|
|
|
%dir %{perl_vendorlib}/local/
|
|
|
|
%{perl_vendorlib}/local/lib.pm
|
|
|
|
%dir %{perl_vendorarch}/auto/local
|
|
|
|
%{perl_vendorarch}/auto/local/lib
|
2010-04-01 17:02:06 +00:00
|
|
|
%doc %{perl_man3dir}/lib::core::only.%{perl_man3ext}%{ext_man}
|
2010-02-03 19:44:19 +00:00
|
|
|
%doc %{perl_man3dir}/local::lib.%{perl_man3ext}%{ext_man}
|
|
|
|
|
2010-06-12 23:09:49 +00:00
|
|
|
%dir %{perl_vendorlib}/POD2
|
2010-08-26 06:34:04 +00:00
|
|
|
%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}
|
2010-06-12 23:09:49 +00:00
|
|
|
|
2010-02-03 19:44:19 +00:00
|
|
|
%files -n perl-homedir
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%config(noreplace) %{_sysconfdir}/profile.d/*
|
|
|
|
|
|
|
|
%changelog
|