Hello community,
here is the log from the commit of package perl-File-Listing for
openSUSE:Factory checked in at 2020-10-08 13:10:14
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-File-Listing (Old)
and /work/SRC/openSUSE:Factory/.perl-File-Listing.new.4249 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-File-Listing"
Thu Oct 8 13:10:14 2020 rev:12 rq:840014 version:6.11
Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-File-Listing/perl-File-Listing.changes
2012-02-16 16:22:03.000000000 +0100
+++
/work/SRC/openSUSE:Factory/.perl-File-Listing.new.4249/perl-File-Listing.changes
2020-10-08 13:11:16.783123301 +0200
@@ -1,0 +2,33 @@
+Wed Oct 7 03:07:33 UTC 2020 - Tina Müller <[email protected]>
+
+- updated to 6.11
+ see /usr/share/doc/packages/perl-File-Listing/Changes
+
+ 6.11 2020-10-06 03:00:45 -0600
+ - Remove accidental recursive req on LWP::Simple
+
+-------------------------------------------------------------------
+Tue Oct 6 03:11:11 UTC 2020 - Tina Müller <[email protected]>
+
+- updated to 6.10
+ see /usr/share/doc/packages/perl-File-Listing/Changes
+
+ 6.10 2020-10-05 15:18:30 -0600
+ - Production version identical to 6.09_01
+
+ 6.09_01 2020-10-05 08:17:32 -0600
+ - Remove TABs from source files and tests (gh#17)
+ - Restores (theoretical, untested) support for 5.6, which was removed when
+ the tests added modern file tests (gh#17)
+ - Fixes or silences several minor nits reported by PerlCritic (gh#17)
+
+ 6.08_01 2020-10-01 17:28:35 -0600
+ - We now only call Time::Local::timelocal with four digit years (gh#5,
gh#14)
+
+-------------------------------------------------------------------
+Sun Oct 4 03:10:05 UTC 2020 - Tina Müller <[email protected]>
+
+- updated to 6.07
+ see /usr/share/doc/packages/perl-File-Listing/Changes
+
+-------------------------------------------------------------------
Old:
----
File-Listing-6.04.tar.gz
New:
----
File-Listing-6.11.tar.gz
cpanspec.yml
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ perl-File-Listing.spec ++++++
--- /var/tmp/diff_new_pack.aNCJwc/_old 2020-10-08 13:11:17.299123768 +0200
+++ /var/tmp/diff_new_pack.aNCJwc/_new 2020-10-08 13:11:17.303123771 +0200
@@ -1,7 +1,7 @@
#
# spec file for package perl-File-Listing
#
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -12,69 +12,43 @@
# 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/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
Name: perl-File-Listing
-Version: 6.04
+Version: 6.11
Release: 0
%define cpan_name File-Listing
-Summary: parse directory listing
-License: Artistic-1.0 or GPL-1.0+
+Summary: Parse directory listing
+License: Artistic-1.0 OR GPL-1.0-or-later
Group: Development/Libraries/Perl
-Url: http://search.cpan.org/dist/File-Listing/
-Source:
http://www.cpan.org/authors/id/G/GA/GAAS/%{cpan_name}-%{version}.tar.gz
+URL: https://metacpan.org/release/%{cpan_name}
+Source0:
https://cpan.metacpan.org/authors/id/P/PL/PLICEASE/%{cpan_name}-%{version}.tar.gz
+Source1: cpanspec.yml
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
-BuildRequires: perl(HTTP::Date) >= 6
-#BuildRequires: perl(File::Listing)
-#BuildRequires: perl(LWP::Simple)
-Requires: perl(HTTP::Date) >= 6
+BuildRequires: perl(HTTP::Date)
+BuildRequires: perl(Test::More) >= 0.98
+Requires: perl(HTTP::Date)
%{perl_requires}
%description
-This module exports a single function called parse_dir(), which can be used
+This module exports a single function called 'parse_dir', which can be used
to parse directory listings.
-The first parameter to parse_dir() is the directory listing to parse. It
-can be a scalar, a reference to an array of directory lines or a glob
-representing a filehandle to read the directory listing from.
-
-The second parameter is the time zone to use when parsing time stamps in
-the listing. If this value is undefined, then the local time zone is
-assumed.
-
-The third parameter is the type of listing to assume. Currently supported
-formats are 'unix', 'apache' and 'dosftp'. The default value is 'unix'.
-Ideally, the listing type should be determined automatically.
-
-The fourth parameter specifies how unparseable lines should be treated.
-Values can be 'ignore', 'warn' or a code reference. Warn means that the
-perl warn() function will be called. If a code reference is passed, then
-this routine will be called and the return value from it will be
-incorporated in the listing. The default is 'ignore'.
-
-Only the first parameter is mandatory.
-
-The return value from parse_dir() is a list of directory entries. In a
-scalar context the return value is a reference to the list. The directory
-entries are represented by an array consisting of [ $filename, $filetype,
-$filesize, $filetime, $filemode ]. The $filetype value is one of the
-letters 'f', 'd', 'l' or '?'. The $filetime value is the seconds since Jan
-1, 1970. The $filemode is a bitmask like the mode returned by stat().
-
%prep
%setup -q -n %{cpan_name}-%{version}
+find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path
"*/script/*" ! -name "configure" -print0 | xargs -0 chmod 644
%build
-%{__perl} Makefile.PL INSTALLDIRS=vendor
-%{__make} %{?_smp_mflags}
+perl Makefile.PL INSTALLDIRS=vendor
+make %{?_smp_mflags}
%check
-%{__make} test
+make test
%install
%perl_make_install
@@ -83,6 +57,7 @@
%files -f %{name}.files
%defattr(-,root,root,755)
-%doc Changes README
+%doc author.yml Changes Changes.original README
+%license LICENSE
%changelog
++++++ File-Listing-6.04.tar.gz -> File-Listing-6.11.tar.gz ++++++
++++ 3237 lines of diff (skipped)
++++++ cpanspec.yml ++++++
---
#description_paragraphs: 3
#description: |-
# override description from CPAN
#summary: override summary from CPAN
#no_testing: broken upstream
#sources:
# - source1
# - source2
#patches:
# foo.patch: -p1
# bar.patch:
#preamble: |-
# BuildRequires: gcc-c++
#post_prep: |-
# hunspell=`pkg-config --libs hunspell | sed -e 's,-l,,; s, *,,g'`
# sed -i -e "s,hunspell-X,$hunspell," t/00-prereq.t Makefile.PL
#post_build: |-
# rm unused.files
#post_install: |-
# sed on %{name}.files
#license: SUSE-NonFree
#skip_noarch: 1
#custom_build: |-
#./Build build flags=%{?_smp_mflags} --myflag
#custom_test: |-
#startserver && make test
#ignore_requires: Bizarre::Module