8
0
Files
perl-local-lib/perl-local-lib.spec
Stephan Kulow c2c20ee735 - updated to 1.008026
- drop perl prerequisite to 5.6, since everything works there.
      - fix install test on cygwin
      - fix stackable test on win32 and when external local::lib is set
      - clarify errors in Makefile.PL about CPAN configuration
      - adjust csh output to allow use directly by eval
      - silence a possible warning in Makefile.PL
      - add additional docs about combining local::lib with lib::core::only
      - reverse order of PERL_LOCAL_LIB_ROOT.  new local::libs are now added
        to the beginning instead of the end, to match the order of other
        similar environment variables.
      - fix installation into directories with spaces or backslashes, as
        well as Win32 test failures when Capture::Tiny is installed
      - fix test breaking in some cases when an external local::lib is set
      - fix test compatibility with old versions of Exporter
      - stable release of 1.008022 (no code changes since 1.008012)
      - see 1.008019 through 1.008021
      - yet another attempt to overcome win32 testing issues (paths with
        spaces, backslashes)
      - yet another attempt to overcome win32 testing issues (paths with
        spaces, backslashes)
      - another attempt to overcome win32 testing issues (paths with spaces,
        backslashes)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-local-lib?expand=0&rev=25
2013-11-25 09:24:27 +00:00

125 lines
4.5 KiB
RPMSpec

# vim: set ts=4 sw=4 et:
#
# spec file for package perl-local-lib
#
# Copyright (c) 2013 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.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: perl-local-lib
Version: 1.008026
Release: 0
Summary: Create and Use a local Library Directory for Perl Modules
License: Artistic-1.0 or GPL-1.0+
Group: Development/Libraries/Perl
%define cpan_name local-lib
Source: http://www.cpan.org/authors/id/H/HA/HAARG/%{cpan_name}-%{version}.tar.gz
Source1: perl-homedir.sh
Source2: perl-homedir.csh
Url: http://search.cpan.org/dist/local-lib/
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(CPAN) >= 1.82
BuildRequires: perl(ExtUtils::Install) >= 1.43
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.74
BuildRequires: perl(Module::Build) >= 0.3600
Requires: perl(CPAN) >= 1.82
%{perl_requires}
%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
Summary: Per-user Perl local::lib setup
Group: Development/Libraries/Perl
Requires: %{name} = %{version}-%{release}
Requires: /usr/bin/cpan
%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}"
%__chmod 0644 Changes
%build
unset PERL_MM_OPT
%__perl Makefile.PL INSTALLDIRS=vendor PREFIX="%{_prefix}"
%__make %{?jobs:-j%{jobs}}
%install
unset PERL_MM_OPT
%perl_make_install
%__chmod 0644 "%{buildroot}%{perl_vendorlib}/local/lib.pm"
%__chmod 0644 "%{buildroot}%{perl_vendorlib}/POD2"/*/"local/lib.pod"
%__chmod 0644 "%{buildroot}%{perl_man3dir}"/POD2::*::local::lib.%{perl_man3ext}
%perl_process_packlist
%__install -d "%{buildroot}%{_sysconfdir}/profile.d"
%__install -m0644 "%{SOURCE1}" "%{SOURCE2}" "%{buildroot}%{_sysconfdir}/profile.d/"
%check
unset PERL_MM_OPT
%__make test
%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/*
%changelog