Accepting request 610483 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/610483 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-File-HomeDir?expand=0&rev=25
This commit is contained in:
commit
cf55f86dbc
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:eb4c0c85775138460cd4013d8117232f08e88381c95c6a93b3d11e969185c274
|
|
||||||
size 35441
|
|
3
File-HomeDir-1.004.tar.gz
Normal file
3
File-HomeDir-1.004.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:45f67e2bb5e60a7970d080e8f02079732e5a8dfc0c7c3cbdb29abfb3f9f791ad
|
||||||
|
size 35400
|
@ -1,3 +1,27 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu May 3 05:20:11 UTC 2018 - coolo@suse.com
|
||||||
|
|
||||||
|
- updated to 1.004
|
||||||
|
see /usr/share/doc/packages/perl-File-HomeDir/Changes
|
||||||
|
|
||||||
|
1.004 2018-05-02
|
||||||
|
- release 1.003_002 without further changes
|
||||||
|
|
||||||
|
1.003_002 2018-03-13
|
||||||
|
- build distribution on Linux
|
||||||
|
- add debug message because of RT#65301
|
||||||
|
- run author tests with installed spell-checker
|
||||||
|
|
||||||
|
1.003_001 2018-03-10
|
||||||
|
- skip root homedir test for cygwin (RT#104661)
|
||||||
|
- document even undocumented fetchers for FreeDesktop implementation
|
||||||
|
(RT#103305) and status quo (RT#88681)
|
||||||
|
- Fix several typos (RT#86426, RT#67093, PR#1)
|
||||||
|
- play with https://coveralls.io/
|
||||||
|
- remove tie interface (PR#4, Thanks Yanick)
|
||||||
|
- determine ->my_home when $ENV{HOME} is empty (based on PR#3)
|
||||||
|
- relocate repository
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Sep 23 15:06:50 UTC 2017 - coolo@suse.com
|
Sat Sep 23 15:06:50 UTC 2017 - coolo@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-File-HomeDir
|
# spec file for package perl-File-HomeDir
|
||||||
#
|
#
|
||||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# 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
|
||||||
@ -17,11 +17,11 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: perl-File-HomeDir
|
Name: perl-File-HomeDir
|
||||||
Version: 1.002
|
Version: 1.004
|
||||||
Release: 0
|
Release: 0
|
||||||
%define cpan_name File-HomeDir
|
%define cpan_name File-HomeDir
|
||||||
Summary: Find your home and other directories on any platform
|
Summary: Find your home and other directories on any platform
|
||||||
License: Artistic-1.0 or GPL-1.0+
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
||||||
Group: Development/Libraries/Perl
|
Group: Development/Libraries/Perl
|
||||||
Url: http://search.cpan.org/dist/File-HomeDir/
|
Url: http://search.cpan.org/dist/File-HomeDir/
|
||||||
Source0: https://cpan.metacpan.org/authors/id/R/RE/REHSACK/%{cpan_name}-%{version}.tar.gz
|
Source0: https://cpan.metacpan.org/authors/id/R/RE/REHSACK/%{cpan_name}-%{version}.tar.gz
|
||||||
@ -41,31 +41,13 @@ Requires: perl(File::Which) >= 0.05
|
|||||||
|
|
||||||
%description
|
%description
|
||||||
*File::HomeDir* is a module for locating the directories that are "owned"
|
*File::HomeDir* is a module for locating the directories that are "owned"
|
||||||
by a user (typicaly your user) and to solve the various issues that arise
|
by a user (typically your user) and to solve the various issues that arise
|
||||||
trying to find them consistently across a wide variety of platforms.
|
trying to find them consistently across a wide variety of platforms.
|
||||||
|
|
||||||
The end result is a single API that can find your resources on any
|
The end result is a single API that can find your resources on any
|
||||||
platform, making it relatively trivial to create Perl software that works
|
platform, making it relatively trivial to create Perl software that works
|
||||||
elegantly and correctly no matter where you run it.
|
elegantly and correctly no matter where you run it.
|
||||||
|
|
||||||
This module provides two main interfaces.
|
|
||||||
|
|
||||||
The first is a modern File::Spec-style interface with a consistent OO API
|
|
||||||
and different implementation modules to support various platforms. You are
|
|
||||||
*strongly* recommended to use this interface.
|
|
||||||
|
|
||||||
The second interface is for legacy support of the original 0.07 interface
|
|
||||||
that exported a 'home()' function by default and tied the '%~' variable.
|
|
||||||
|
|
||||||
It is generally not recommended that you use this interface, but due to
|
|
||||||
back-compatibility reasons they will remain supported until at least 2010.
|
|
||||||
|
|
||||||
The '%~' interface has been deprecated. Documentation was removed in 2009,
|
|
||||||
Unit test were removed in 2011, usage will issue warnings from 2012, and
|
|
||||||
the interface will be removed entirely in 2015 (in line with the general
|
|
||||||
Perl toolchain convention of a 10 year support period for legacy APIs that
|
|
||||||
are potentially or actually in common use).
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{cpan_name}-%{version}
|
%setup -q -n %{cpan_name}-%{version}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user