From 725284069cb9df2d633f2cc8b23ffaca0f75dc17 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 23 Jan 2017 13:13:43 +0100 Subject: [PATCH 01/60] update to 1.0.33 (windows only) switch to fedora/autoloader --- .gitignore | 1 + php-league-flysystem-autoload.php | 15 --------------- php-league-flysystem.spec | 32 +++++++++++++++++-------------- sources | 2 +- 4 files changed, 20 insertions(+), 30 deletions(-) delete mode 100644 php-league-flysystem-autoload.php diff --git a/.gitignore b/.gitignore index 73ec195..3bb6c1d 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ /php-league-flysystem-1.0.28-a966364.tgz /php-league-flysystem-1.0.29-b732cc9.tgz /php-league-flysystem-1.0.31-521a233.tgz +/php-league-flysystem-1.0.33-5c7f984.tgz diff --git a/php-league-flysystem-autoload.php b/php-league-flysystem-autoload.php deleted file mode 100644 index dcbdda2..0000000 --- a/php-league-flysystem-autoload.php +++ /dev/null @@ -1,15 +0,0 @@ -register(); -} - -$fedoraClassLoader->addPrefix('League\\Flysystem\\', dirname(dirname(__DIR__))); diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index f8ce47b..6d57c68 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -1,13 +1,13 @@ # remirepo/fedora spec file for php-league-flysystem # -# Copyright (c) 2016 Remi Collet +# Copyright (c) 2016-2017 Remi Collet # License: CC-BY-SA # http://creativecommons.org/licenses/by-sa/4.0/ # # Please, preserve the changelog entries # # Github -%global gh_commit 521a233642773505222a5dd53231ccf5b0607d5a +%global gh_commit 5c7f98498b12d47f9de90ec9186a90000125777c %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,7 +19,7 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.0.31 +Version: 1.0.33 Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API @@ -29,8 +29,6 @@ URL: https://github.com/%{gh_owner}/%{gh_project} Source0: %{name}-%{version}-%{gh_short}.tgz # Create git snapshot as tests are excluded from official tarball Source1: makesrc.sh -# Autoloader -Source2: %{name}-autoload.php BuildArch: noarch BuildRequires: php(language) >= 5.5.9 @@ -49,7 +47,7 @@ BuildRequires: php-composer(phpunit/phpunit) >= 4.0 BuildRequires: php-composer(mockery/mockery) >= 0.9 BuildRequires: php-composer(phpspec/phpspec) >= 2.2 # Autoloader -BuildRequires: php-composer(symfony/class-loader) +BuildRequires: php-composer(fedora/autoloader) # From composer.json, "require": { Requires: php(language) >= 5.5.9 @@ -62,7 +60,7 @@ Requires: php-mbstring Requires: php-pcre Requires: php-spl # Autoloader -Requires: php-composer(symfony/class-loader) +Requires: php-composer(fedora/autoloader) Provides: php-composer(%{pk_vendor}/%{pk_name}) = %{version} @@ -77,11 +75,16 @@ Autoloader: %{_datadir}/php/%{ns_vendor}/%{ns_project}/autoload.php %prep %setup -q -n %{gh_project}-%{gh_commit} -install -pm 644 %{SOURCE2} src/autoload.php - %build -# Nothing +: Create autoloader +cat <<'AUTOLOAD' | tee src/autoload.php +addPrefix("League\\Flysystem\\Stub\\", dirname(__DIR__).'/stub'); -$Loader->register(); +\Fedora\Autoloader\Autoload::addPsr4('%{ns_vendor}\\%{ns_project}\\Stub\\', dirname(__DIR__).'/stub'); EOF : Fix bootstraping @@ -133,6 +133,10 @@ fi %changelog +* Mon Jan 23 2017 Remi Collet - 1.0.33-1 +- update to 1.0.33 (windows only) +- switch to fedora/autoloader + * Wed Oct 19 2016 Remi Collet - 1.0.30-1 - update to 1.0.30 - lower dependency on PHP 5.5.9 diff --git a/sources b/sources index e09b237..8c8360f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -de002feb9667b1c31f18b5f67d4291cf php-league-flysystem-1.0.31-521a233.tgz +SHA512 (php-league-flysystem-1.0.33-5c7f984.tgz) = 06dddcaf0f50e280fe50e52be34c2b15325576cb8cd2f4fcd654c39e0700ea4a53613ddf5b9758b130c40e5f5d341157b52f866857d9ba52b6397ae64a7c2358 From f22a311f4d26c3d64d84ec3bb210f7facba31da3 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 2 Feb 2017 16:26:42 +0100 Subject: [PATCH 02/60] v1.0.34 --- .gitignore | 1 + php-league-flysystem.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 3bb6c1d..7781130 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ /php-league-flysystem-1.0.29-b732cc9.tgz /php-league-flysystem-1.0.31-521a233.tgz /php-league-flysystem-1.0.33-5c7f984.tgz +/php-league-flysystem-1.0.34-469ad53.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index 6d57c68..52edf5e 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -7,7 +7,7 @@ # Please, preserve the changelog entries # # Github -%global gh_commit 5c7f98498b12d47f9de90ec9186a90000125777c +%global gh_commit 469ad53c13ea19a0e54e3e5d70f61227ddcc0299 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,7 +19,7 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.0.33 +Version: 1.0.34 Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API @@ -133,6 +133,9 @@ fi %changelog +* Wed Feb 1 2017 Remi Collet - 1.0.34-1 +- update to 1.0.34 + * Mon Jan 23 2017 Remi Collet - 1.0.33-1 - update to 1.0.33 (windows only) - switch to fedora/autoloader diff --git a/sources b/sources index 8c8360f..6c34b4b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.0.33-5c7f984.tgz) = 06dddcaf0f50e280fe50e52be34c2b15325576cb8cd2f4fcd654c39e0700ea4a53613ddf5b9758b130c40e5f5d341157b52f866857d9ba52b6397ae64a7c2358 +SHA512 (php-league-flysystem-1.0.34-469ad53.tgz) = 89dd45b356172b4b4cdce0b3e3c0de37f9a0c39177b2f4a669a316333dc81d3996244521bde691ffeb78b6cd8c495c8af6745ad4227ea53070449b1cf75985b6 From b373a0acc373208ecb5a1028e7fc85066e8515d7 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 2 Feb 2017 16:28:47 +0100 Subject: [PATCH 03/60] update to 1.0.34 switch to fedora/autoloader --- .gitignore | 2 ++ php-league-flysystem.spec | 32 ++++++++++++++++++-------------- sources | 2 +- 3 files changed, 21 insertions(+), 15 deletions(-) diff --git a/.gitignore b/.gitignore index 73ec195..7781130 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,5 @@ /php-league-flysystem-1.0.28-a966364.tgz /php-league-flysystem-1.0.29-b732cc9.tgz /php-league-flysystem-1.0.31-521a233.tgz +/php-league-flysystem-1.0.33-5c7f984.tgz +/php-league-flysystem-1.0.34-469ad53.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index f8ce47b..2053c1c 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -1,13 +1,13 @@ # remirepo/fedora spec file for php-league-flysystem # -# Copyright (c) 2016 Remi Collet +# Copyright (c) 2016-2017 Remi Collet # License: CC-BY-SA # http://creativecommons.org/licenses/by-sa/4.0/ # # Please, preserve the changelog entries # # Github -%global gh_commit 521a233642773505222a5dd53231ccf5b0607d5a +%global gh_commit 469ad53c13ea19a0e54e3e5d70f61227ddcc0299 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,7 +19,7 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.0.31 +Version: 1.0.34 Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API @@ -29,8 +29,6 @@ URL: https://github.com/%{gh_owner}/%{gh_project} Source0: %{name}-%{version}-%{gh_short}.tgz # Create git snapshot as tests are excluded from official tarball Source1: makesrc.sh -# Autoloader -Source2: %{name}-autoload.php BuildArch: noarch BuildRequires: php(language) >= 5.5.9 @@ -49,7 +47,7 @@ BuildRequires: php-composer(phpunit/phpunit) >= 4.0 BuildRequires: php-composer(mockery/mockery) >= 0.9 BuildRequires: php-composer(phpspec/phpspec) >= 2.2 # Autoloader -BuildRequires: php-composer(symfony/class-loader) +BuildRequires: php-composer(fedora/autoloader) # From composer.json, "require": { Requires: php(language) >= 5.5.9 @@ -62,7 +60,7 @@ Requires: php-mbstring Requires: php-pcre Requires: php-spl # Autoloader -Requires: php-composer(symfony/class-loader) +Requires: php-composer(fedora/autoloader) Provides: php-composer(%{pk_vendor}/%{pk_name}) = %{version} @@ -77,11 +75,16 @@ Autoloader: %{_datadir}/php/%{ns_vendor}/%{ns_project}/autoload.php %prep %setup -q -n %{gh_project}-%{gh_commit} -install -pm 644 %{SOURCE2} src/autoload.php - %build -# Nothing +: Create autoloader +cat <<'AUTOLOAD' | tee src/autoload.php +addPrefix("League\\Flysystem\\Stub\\", dirname(__DIR__).'/stub'); -$Loader->register(); +\Fedora\Autoloader\Autoload::addPsr4('%{ns_vendor}\\%{ns_project}\\Stub\\', dirname(__DIR__).'/stub'); EOF : Fix bootstraping @@ -133,6 +133,10 @@ fi %changelog +* Wed Feb 1 2017 Remi Collet - 1.0.34-1 +- update to 1.0.34 +- switch to fedora/autoloader + * Wed Oct 19 2016 Remi Collet - 1.0.30-1 - update to 1.0.30 - lower dependency on PHP 5.5.9 diff --git a/sources b/sources index e09b237..6c34b4b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -de002feb9667b1c31f18b5f67d4291cf php-league-flysystem-1.0.31-521a233.tgz +SHA512 (php-league-flysystem-1.0.34-469ad53.tgz) = 89dd45b356172b4b4cdce0b3e3c0de37f9a0c39177b2f4a669a316333dc81d3996244521bde691ffeb78b6cd8c495c8af6745ad4227ea53070449b1cf75985b6 From f0e0c7f7aa5cd6fd7c6cfb34cff9a2e6531a2ed2 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 9 Feb 2017 15:19:37 +0100 Subject: [PATCH 04/60] v1.0.35 --- .gitignore | 1 + php-league-flysystem.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 7781130..c9c9553 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ /php-league-flysystem-1.0.31-521a233.tgz /php-league-flysystem-1.0.33-5c7f984.tgz /php-league-flysystem-1.0.34-469ad53.tgz +/php-league-flysystem-1.0.35-dda7f3a.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index 52edf5e..b2d56f1 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -7,7 +7,7 @@ # Please, preserve the changelog entries # # Github -%global gh_commit 469ad53c13ea19a0e54e3e5d70f61227ddcc0299 +%global gh_commit dda7f3ab94158a002d9846a97dc18ebfb7acc062 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,7 +19,7 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.0.34 +Version: 1.0.35 Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API @@ -133,6 +133,9 @@ fi %changelog +* Thu Feb 9 2017 Remi Collet - 1.0.35-1 +- update to 1.0.35 + * Wed Feb 1 2017 Remi Collet - 1.0.34-1 - update to 1.0.34 diff --git a/sources b/sources index 6c34b4b..adc0cdf 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.0.34-469ad53.tgz) = 89dd45b356172b4b4cdce0b3e3c0de37f9a0c39177b2f4a669a316333dc81d3996244521bde691ffeb78b6cd8c495c8af6745ad4227ea53070449b1cf75985b6 +SHA512 (php-league-flysystem-1.0.35-dda7f3a.tgz) = a87620503e612a44ecb978e3f0ff52d13123096049044d155f66f0fb2c7674df1f32de97c6bb0e3c13a66048e5fe6cc6c3a8362f85cc5d3380b798ce10975e2d From 87a3ee5fc9ef65a009a4d96b04a079fc61bb8f47 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 9 Feb 2017 15:19:37 +0100 Subject: [PATCH 05/60] v1.0.35 (cherry picked from commit f0e0c7f7aa5cd6fd7c6cfb34cff9a2e6531a2ed2) --- .gitignore | 1 + php-league-flysystem.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 7781130..c9c9553 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ /php-league-flysystem-1.0.31-521a233.tgz /php-league-flysystem-1.0.33-5c7f984.tgz /php-league-flysystem-1.0.34-469ad53.tgz +/php-league-flysystem-1.0.35-dda7f3a.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index 2053c1c..64d4d7c 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -7,7 +7,7 @@ # Please, preserve the changelog entries # # Github -%global gh_commit 469ad53c13ea19a0e54e3e5d70f61227ddcc0299 +%global gh_commit dda7f3ab94158a002d9846a97dc18ebfb7acc062 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,7 +19,7 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.0.34 +Version: 1.0.35 Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API @@ -133,6 +133,9 @@ fi %changelog +* Thu Feb 9 2017 Remi Collet - 1.0.35-1 +- update to 1.0.35 + * Wed Feb 1 2017 Remi Collet - 1.0.34-1 - update to 1.0.34 - switch to fedora/autoloader diff --git a/sources b/sources index 6c34b4b..adc0cdf 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.0.34-469ad53.tgz) = 89dd45b356172b4b4cdce0b3e3c0de37f9a0c39177b2f4a669a316333dc81d3996244521bde691ffeb78b6cd8c495c8af6745ad4227ea53070449b1cf75985b6 +SHA512 (php-league-flysystem-1.0.35-dda7f3a.tgz) = a87620503e612a44ecb978e3f0ff52d13123096049044d155f66f0fb2c7674df1f32de97c6bb0e3c13a66048e5fe6cc6c3a8362f85cc5d3380b798ce10975e2d From 30ba250abf747fc91d6fc3db3281f78b4c61e688 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 20 Mar 2017 07:28:08 +0100 Subject: [PATCH 06/60] v1.0.36 --- .gitignore | 1 + php-league-flysystem.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index c9c9553..3ac8c02 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ /php-league-flysystem-1.0.33-5c7f984.tgz /php-league-flysystem-1.0.34-469ad53.tgz /php-league-flysystem-1.0.35-dda7f3a.tgz +/php-league-flysystem-1.0.36-d9c1698.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index b2d56f1..46d52f7 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -7,7 +7,7 @@ # Please, preserve the changelog entries # # Github -%global gh_commit dda7f3ab94158a002d9846a97dc18ebfb7acc062 +%global gh_commit d9c1698582dfbfbd092ec9c5c3325f862cdb3297 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,7 +19,7 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.0.35 +Version: 1.0.36 Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API @@ -133,6 +133,9 @@ fi %changelog +* Mon Mar 20 2017 Remi Collet - 1.0.36-1 +- Update to 1.0.36 + * Thu Feb 9 2017 Remi Collet - 1.0.35-1 - update to 1.0.35 diff --git a/sources b/sources index adc0cdf..535a391 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.0.35-dda7f3a.tgz) = a87620503e612a44ecb978e3f0ff52d13123096049044d155f66f0fb2c7674df1f32de97c6bb0e3c13a66048e5fe6cc6c3a8362f85cc5d3380b798ce10975e2d +SHA512 (php-league-flysystem-1.0.36-d9c1698.tgz) = fced3700d8098bde1c313ef8027b2e4f33de51439c7382a6d34a2de7dd6e8e19fd706c0b97647d8815eb4a9e8b06aac29e0bbc731615056367415c90b0f95ba2 From 047ba86e63aaff012ff59930fcc49ed62ac72ce0 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 20 Mar 2017 07:28:08 +0100 Subject: [PATCH 07/60] v1.0.36 (cherry picked from commit 30ba250abf747fc91d6fc3db3281f78b4c61e688) --- .gitignore | 1 + php-league-flysystem.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index c9c9553..3ac8c02 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ /php-league-flysystem-1.0.33-5c7f984.tgz /php-league-flysystem-1.0.34-469ad53.tgz /php-league-flysystem-1.0.35-dda7f3a.tgz +/php-league-flysystem-1.0.36-d9c1698.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index 64d4d7c..2010399 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -7,7 +7,7 @@ # Please, preserve the changelog entries # # Github -%global gh_commit dda7f3ab94158a002d9846a97dc18ebfb7acc062 +%global gh_commit d9c1698582dfbfbd092ec9c5c3325f862cdb3297 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,7 +19,7 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.0.35 +Version: 1.0.36 Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API @@ -133,6 +133,9 @@ fi %changelog +* Mon Mar 20 2017 Remi Collet - 1.0.36-1 +- Update to 1.0.36 + * Thu Feb 9 2017 Remi Collet - 1.0.35-1 - update to 1.0.35 diff --git a/sources b/sources index adc0cdf..535a391 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.0.35-dda7f3a.tgz) = a87620503e612a44ecb978e3f0ff52d13123096049044d155f66f0fb2c7674df1f32de97c6bb0e3c13a66048e5fe6cc6c3a8362f85cc5d3380b798ce10975e2d +SHA512 (php-league-flysystem-1.0.36-d9c1698.tgz) = fced3700d8098bde1c313ef8027b2e4f33de51439c7382a6d34a2de7dd6e8e19fd706c0b97647d8815eb4a9e8b06aac29e0bbc731615056367415c90b0f95ba2 From f650a87a5267183f6f8f8b04ebab63c2aec4b321 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 23 Mar 2017 08:26:03 +0100 Subject: [PATCH 08/60] v1.0.37 --- .gitignore | 1 + php-league-flysystem.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 3ac8c02..8e0aebc 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ /php-league-flysystem-1.0.34-469ad53.tgz /php-league-flysystem-1.0.35-dda7f3a.tgz /php-league-flysystem-1.0.36-d9c1698.tgz +/php-league-flysystem-1.0.37-78b5cc4.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index 46d52f7..8e5bc1b 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -7,7 +7,7 @@ # Please, preserve the changelog entries # # Github -%global gh_commit d9c1698582dfbfbd092ec9c5c3325f862cdb3297 +%global gh_commit 78b5cc4feb61a882302df4fbaf63b7662e5e4ccd %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,7 +19,7 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.0.36 +Version: 1.0.37 Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API @@ -133,6 +133,9 @@ fi %changelog +* Thu Mar 23 2017 Remi Collet - 1.0.37-1 +- Update to 1.0.37 + * Mon Mar 20 2017 Remi Collet - 1.0.36-1 - Update to 1.0.36 diff --git a/sources b/sources index 535a391..a9e3e8a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.0.36-d9c1698.tgz) = fced3700d8098bde1c313ef8027b2e4f33de51439c7382a6d34a2de7dd6e8e19fd706c0b97647d8815eb4a9e8b06aac29e0bbc731615056367415c90b0f95ba2 +SHA512 (php-league-flysystem-1.0.37-78b5cc4.tgz) = fa962343837c38a103cdf2689b36c35af05d04a0c00d018ebc32ce8a5af5944cdb9fc24381bd137a0b57ff93a55c638b021ec9abe105da6a00ef99fd2de4a90c From c3d4bbb66e3446a32ee64d0b3dc46f2149f0c4f0 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 23 Mar 2017 08:26:03 +0100 Subject: [PATCH 09/60] v1.0.37 (cherry picked from commit f650a87a5267183f6f8f8b04ebab63c2aec4b321) --- .gitignore | 1 + php-league-flysystem.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 3ac8c02..8e0aebc 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ /php-league-flysystem-1.0.34-469ad53.tgz /php-league-flysystem-1.0.35-dda7f3a.tgz /php-league-flysystem-1.0.36-d9c1698.tgz +/php-league-flysystem-1.0.37-78b5cc4.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index 2010399..9e3402c 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -7,7 +7,7 @@ # Please, preserve the changelog entries # # Github -%global gh_commit d9c1698582dfbfbd092ec9c5c3325f862cdb3297 +%global gh_commit 78b5cc4feb61a882302df4fbaf63b7662e5e4ccd %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,7 +19,7 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.0.36 +Version: 1.0.37 Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API @@ -133,6 +133,9 @@ fi %changelog +* Thu Mar 23 2017 Remi Collet - 1.0.37-1 +- Update to 1.0.37 + * Mon Mar 20 2017 Remi Collet - 1.0.36-1 - Update to 1.0.36 diff --git a/sources b/sources index 535a391..a9e3e8a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.0.36-d9c1698.tgz) = fced3700d8098bde1c313ef8027b2e4f33de51439c7382a6d34a2de7dd6e8e19fd706c0b97647d8815eb4a9e8b06aac29e0bbc731615056367415c90b0f95ba2 +SHA512 (php-league-flysystem-1.0.37-78b5cc4.tgz) = fa962343837c38a103cdf2689b36c35af05d04a0c00d018ebc32ce8a5af5944cdb9fc24381bd137a0b57ff93a55c638b021ec9abe105da6a00ef99fd2de4a90c From 801e24005d76dcf0bbcb1143697005f73ceae034 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 24 Apr 2017 17:18:56 +0200 Subject: [PATCH 10/60] v1.0.38 --- .gitignore | 1 + php-league-flysystem.spec | 20 ++++++++++++++------ sources | 2 +- 3 files changed, 16 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index 8e0aebc..301d387 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ /php-league-flysystem-1.0.35-dda7f3a.tgz /php-league-flysystem-1.0.36-d9c1698.tgz /php-league-flysystem-1.0.37-78b5cc4.tgz +/php-league-flysystem-1.0.38-4ba6e13.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index 8e5bc1b..9793ce4 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -7,7 +7,7 @@ # Please, preserve the changelog entries # # Github -%global gh_commit 78b5cc4feb61a882302df4fbaf63b7662e5e4ccd +%global gh_commit 4ba6e13f5116204b21c3afdf400ecf2b9eb1c482 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,7 +19,7 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.0.37 +Version: 1.0.38 Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API @@ -88,7 +88,6 @@ AUTOLOAD %install - # Restore PSR-0 tree mkdir -p %{buildroot}%{_datadir}/php/%{ns_vendor} cp -pr src %{buildroot}%{_datadir}/php/%{ns_vendor}/%{ns_project} @@ -119,9 +118,15 @@ then PHPSPEC=/dev/null else PHPSPEC=%{_bindir}/phpspec fi -: Run upstream test suite -%{_bindir}/php $PHPSPEC run -%{_bindir}/phpunit --verbose +ret=0 +for cmd in php php56 php70 php71 php72; do + if which $cmd; then + : Run upstream test suite with PHP 5 + $cmd $PHPSPEC run || ret=1 + $cmd %{_bindir}/phpunit --verbose || ret=1 + fi +done +exit $ret %files @@ -133,6 +138,9 @@ fi %changelog +* Mon Apr 24 2017 Remi Collet - 1.0.38-1 +- Update to 1.0.38 + * Thu Mar 23 2017 Remi Collet - 1.0.37-1 - Update to 1.0.37 diff --git a/sources b/sources index a9e3e8a..a82682f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.0.37-78b5cc4.tgz) = fa962343837c38a103cdf2689b36c35af05d04a0c00d018ebc32ce8a5af5944cdb9fc24381bd137a0b57ff93a55c638b021ec9abe105da6a00ef99fd2de4a90c +SHA512 (php-league-flysystem-1.0.38-4ba6e13.tgz) = 3c1b210f5225379ad2ac77f2094d33e1c29df1b87a596f1ee4df86d3ad0c3991f85d03b370adceaf89d176d77a3c732b12b74a2ae2a9481400ff94d91b226324 From 4cd0b4f2654611ba81709a954bd2101541129368 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 24 Apr 2017 17:18:56 +0200 Subject: [PATCH 11/60] v1.0.38 (cherry picked from commit 801e24005d76dcf0bbcb1143697005f73ceae034) --- .gitignore | 1 + php-league-flysystem.spec | 20 ++++++++++++++------ sources | 2 +- 3 files changed, 16 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index 8e0aebc..301d387 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ /php-league-flysystem-1.0.35-dda7f3a.tgz /php-league-flysystem-1.0.36-d9c1698.tgz /php-league-flysystem-1.0.37-78b5cc4.tgz +/php-league-flysystem-1.0.38-4ba6e13.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index 9e3402c..b158162 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -7,7 +7,7 @@ # Please, preserve the changelog entries # # Github -%global gh_commit 78b5cc4feb61a882302df4fbaf63b7662e5e4ccd +%global gh_commit 4ba6e13f5116204b21c3afdf400ecf2b9eb1c482 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,7 +19,7 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.0.37 +Version: 1.0.38 Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API @@ -88,7 +88,6 @@ AUTOLOAD %install - # Restore PSR-0 tree mkdir -p %{buildroot}%{_datadir}/php/%{ns_vendor} cp -pr src %{buildroot}%{_datadir}/php/%{ns_vendor}/%{ns_project} @@ -119,9 +118,15 @@ then PHPSPEC=/dev/null else PHPSPEC=%{_bindir}/phpspec fi -: Run upstream test suite -%{_bindir}/php $PHPSPEC run -%{_bindir}/phpunit --verbose +ret=0 +for cmd in php php56 php70 php71 php72; do + if which $cmd; then + : Run upstream test suite with PHP 5 + $cmd $PHPSPEC run || ret=1 + $cmd %{_bindir}/phpunit --verbose || ret=1 + fi +done +exit $ret %files @@ -133,6 +138,9 @@ fi %changelog +* Mon Apr 24 2017 Remi Collet - 1.0.38-1 +- Update to 1.0.38 + * Thu Mar 23 2017 Remi Collet - 1.0.37-1 - Update to 1.0.37 diff --git a/sources b/sources index a9e3e8a..a82682f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.0.37-78b5cc4.tgz) = fa962343837c38a103cdf2689b36c35af05d04a0c00d018ebc32ce8a5af5944cdb9fc24381bd137a0b57ff93a55c638b021ec9abe105da6a00ef99fd2de4a90c +SHA512 (php-league-flysystem-1.0.38-4ba6e13.tgz) = 3c1b210f5225379ad2ac77f2094d33e1c29df1b87a596f1ee4df86d3ad0c3991f85d03b370adceaf89d176d77a3c732b12b74a2ae2a9481400ff94d91b226324 From efcac19bb4d8586444d2480ad98016e30f77abd2 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 26 Apr 2017 09:41:09 +0200 Subject: [PATCH 12/60] v1.0.39 --- .gitignore | 1 + php-league-flysystem.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 301d387..5bd86fb 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,4 @@ /php-league-flysystem-1.0.36-d9c1698.tgz /php-league-flysystem-1.0.37-78b5cc4.tgz /php-league-flysystem-1.0.38-4ba6e13.tgz +/php-league-flysystem-1.0.39-2474325.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index 9793ce4..e24aa0f 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -7,7 +7,7 @@ # Please, preserve the changelog entries # # Github -%global gh_commit 4ba6e13f5116204b21c3afdf400ecf2b9eb1c482 +%global gh_commit 2474325ee924134bb05848663b12531f6f2e9fbe %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,7 +19,7 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.0.38 +Version: 1.0.39 Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API @@ -138,6 +138,9 @@ exit $ret %changelog +* Wed Apr 26 2017 Remi Collet - 1.0.39-1 +- Update to 1.0.39 + * Mon Apr 24 2017 Remi Collet - 1.0.38-1 - Update to 1.0.38 diff --git a/sources b/sources index a82682f..56cefef 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.0.38-4ba6e13.tgz) = 3c1b210f5225379ad2ac77f2094d33e1c29df1b87a596f1ee4df86d3ad0c3991f85d03b370adceaf89d176d77a3c732b12b74a2ae2a9481400ff94d91b226324 +SHA512 (php-league-flysystem-1.0.39-2474325.tgz) = 1838c794a231bfdf00c13fd3d452c659cf5032166f4212365fcbc904424a361c6233232e5295e19fe77f42470eeeb08746d88503e86849fb9feac7cd46a593f3 From 3f71cbc0b3d1edaaf80603b65987225a75fb566f Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 26 Apr 2017 09:41:09 +0200 Subject: [PATCH 13/60] v1.0.39 (cherry picked from commit efcac19bb4d8586444d2480ad98016e30f77abd2) --- .gitignore | 1 + php-league-flysystem.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 301d387..5bd86fb 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,4 @@ /php-league-flysystem-1.0.36-d9c1698.tgz /php-league-flysystem-1.0.37-78b5cc4.tgz /php-league-flysystem-1.0.38-4ba6e13.tgz +/php-league-flysystem-1.0.39-2474325.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index b158162..e036ff4 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -7,7 +7,7 @@ # Please, preserve the changelog entries # # Github -%global gh_commit 4ba6e13f5116204b21c3afdf400ecf2b9eb1c482 +%global gh_commit 2474325ee924134bb05848663b12531f6f2e9fbe %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,7 +19,7 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.0.38 +Version: 1.0.39 Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API @@ -138,6 +138,9 @@ exit $ret %changelog +* Wed Apr 26 2017 Remi Collet - 1.0.39-1 +- Update to 1.0.39 + * Mon Apr 24 2017 Remi Collet - 1.0.38-1 - Update to 1.0.38 diff --git a/sources b/sources index a82682f..56cefef 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.0.38-4ba6e13.tgz) = 3c1b210f5225379ad2ac77f2094d33e1c29df1b87a596f1ee4df86d3ad0c3991f85d03b370adceaf89d176d77a3c732b12b74a2ae2a9481400ff94d91b226324 +SHA512 (php-league-flysystem-1.0.39-2474325.tgz) = 1838c794a231bfdf00c13fd3d452c659cf5032166f4212365fcbc904424a361c6233232e5295e19fe77f42470eeeb08746d88503e86849fb9feac7cd46a593f3 From 07aab4564f91e6da0d60a9c9904d904dfc9e666c Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 28 Apr 2017 16:48:12 +0200 Subject: [PATCH 14/60] v1.0.40 --- .gitignore | 1 + php-league-flysystem.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 5bd86fb..2fe4903 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,4 @@ /php-league-flysystem-1.0.37-78b5cc4.tgz /php-league-flysystem-1.0.38-4ba6e13.tgz /php-league-flysystem-1.0.39-2474325.tgz +/php-league-flysystem-1.0.40-3828f0b.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index e24aa0f..1a37789 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -7,7 +7,7 @@ # Please, preserve the changelog entries # # Github -%global gh_commit 2474325ee924134bb05848663b12531f6f2e9fbe +%global gh_commit 3828f0b24e2c1918bb362d57a53205d6dc8fde61 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,7 +19,7 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.0.39 +Version: 1.0.40 Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API @@ -138,6 +138,9 @@ exit $ret %changelog +* Fri Apr 28 2017 Remi Collet - 1.0.40-1 +- Update to 1.0.40 + * Wed Apr 26 2017 Remi Collet - 1.0.39-1 - Update to 1.0.39 diff --git a/sources b/sources index 56cefef..acea5ff 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.0.39-2474325.tgz) = 1838c794a231bfdf00c13fd3d452c659cf5032166f4212365fcbc904424a361c6233232e5295e19fe77f42470eeeb08746d88503e86849fb9feac7cd46a593f3 +SHA512 (php-league-flysystem-1.0.40-3828f0b.tgz) = 405b5e99a2ad462b2ea5b7fb3d8086c4bae9643da45b2d46947cd8e5117ac77318dd87ce2a85896ad862039efa8ae713f8669acdf683efe0e3da0702a5d64a22 From 83b8a8c11cdacca8d32d55c08c767155aadbe23d Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 28 Apr 2017 16:48:12 +0200 Subject: [PATCH 15/60] v1.0.40 (cherry picked from commit 07aab4564f91e6da0d60a9c9904d904dfc9e666c) --- .gitignore | 1 + php-league-flysystem.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 5bd86fb..2fe4903 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,4 @@ /php-league-flysystem-1.0.37-78b5cc4.tgz /php-league-flysystem-1.0.38-4ba6e13.tgz /php-league-flysystem-1.0.39-2474325.tgz +/php-league-flysystem-1.0.40-3828f0b.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index e036ff4..40c62a4 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -7,7 +7,7 @@ # Please, preserve the changelog entries # # Github -%global gh_commit 2474325ee924134bb05848663b12531f6f2e9fbe +%global gh_commit 3828f0b24e2c1918bb362d57a53205d6dc8fde61 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,7 +19,7 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.0.39 +Version: 1.0.40 Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API @@ -138,6 +138,9 @@ exit $ret %changelog +* Fri Apr 28 2017 Remi Collet - 1.0.40-1 +- Update to 1.0.40 + * Wed Apr 26 2017 Remi Collet - 1.0.39-1 - Update to 1.0.39 diff --git a/sources b/sources index 56cefef..acea5ff 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.0.39-2474325.tgz) = 1838c794a231bfdf00c13fd3d452c659cf5032166f4212365fcbc904424a361c6233232e5295e19fe77f42470eeeb08746d88503e86849fb9feac7cd46a593f3 +SHA512 (php-league-flysystem-1.0.40-3828f0b.tgz) = 405b5e99a2ad462b2ea5b7fb3d8086c4bae9643da45b2d46947cd8e5117ac77318dd87ce2a85896ad862039efa8ae713f8669acdf683efe0e3da0702a5d64a22 From c908b6dda91c38a349d0b7d26ed81b08566c566b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 27 Jul 2017 07:49:47 +0000 Subject: [PATCH 16/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- php-league-flysystem.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index 1a37789..ac526ee 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -20,7 +20,7 @@ Name: php-%{pk_vendor}-%{pk_name} Version: 1.0.40 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Filesystem abstraction: Many filesystems, one API Group: Development/Libraries @@ -138,6 +138,9 @@ exit $ret %changelog +* Thu Jul 27 2017 Fedora Release Engineering - 1.0.40-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Fri Apr 28 2017 Remi Collet - 1.0.40-1 - Update to 1.0.40 From 512bed24f08f19b9c54bcf0231a25ab984893e19 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 7 Aug 2017 08:28:39 +0200 Subject: [PATCH 17/60] v1.0.41 --- .gitignore | 1 + php-league-flysystem.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 2fe4903..bc97d92 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,4 @@ /php-league-flysystem-1.0.38-4ba6e13.tgz /php-league-flysystem-1.0.39-2474325.tgz /php-league-flysystem-1.0.40-3828f0b.tgz +/php-league-flysystem-1.0.41-f400aa9.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index ac526ee..da33325 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -7,7 +7,7 @@ # Please, preserve the changelog entries # # Github -%global gh_commit 3828f0b24e2c1918bb362d57a53205d6dc8fde61 +%global gh_commit f400aa98912c561ba625ea4065031b7a41e5a155 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,8 +19,8 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.0.40 -Release: 2%{?dist} +Version: 1.0.41 +Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API Group: Development/Libraries @@ -138,6 +138,9 @@ exit $ret %changelog +* Mon Aug 7 2017 Remi Collet - 1.0.41-1 +- Update to 1.0.41 + * Thu Jul 27 2017 Fedora Release Engineering - 1.0.40-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild diff --git a/sources b/sources index acea5ff..af41112 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.0.40-3828f0b.tgz) = 405b5e99a2ad462b2ea5b7fb3d8086c4bae9643da45b2d46947cd8e5117ac77318dd87ce2a85896ad862039efa8ae713f8669acdf683efe0e3da0702a5d64a22 +SHA512 (php-league-flysystem-1.0.41-f400aa9.tgz) = af96dfe42050e53a985d8056da9da91f5c359cd4df2d77623dd9f8885c8feabe320c6e062362f5d54c82aecbbcc5493d17ad940446f83843ac2847651b093962 From e1fd0ae2c416ef9b124016c97d6adaee32a58c4f Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 7 Aug 2017 08:28:39 +0200 Subject: [PATCH 18/60] v1.0.41 (cherry picked from commit 512bed24f08f19b9c54bcf0231a25ab984893e19) (cherry picked from commit 7aa0027835f529d26bfb321b1403f14b85a1bea5) --- .gitignore | 1 + php-league-flysystem.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 2fe4903..bc97d92 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,4 @@ /php-league-flysystem-1.0.38-4ba6e13.tgz /php-league-flysystem-1.0.39-2474325.tgz /php-league-flysystem-1.0.40-3828f0b.tgz +/php-league-flysystem-1.0.41-f400aa9.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index 40c62a4..8a2726a 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -7,7 +7,7 @@ # Please, preserve the changelog entries # # Github -%global gh_commit 3828f0b24e2c1918bb362d57a53205d6dc8fde61 +%global gh_commit f400aa98912c561ba625ea4065031b7a41e5a155 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,7 +19,7 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.0.40 +Version: 1.0.41 Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API @@ -138,6 +138,9 @@ exit $ret %changelog +* Mon Aug 7 2017 Remi Collet - 1.0.41-1 +- Update to 1.0.41 + * Fri Apr 28 2017 Remi Collet - 1.0.40-1 - Update to 1.0.40 diff --git a/sources b/sources index acea5ff..af41112 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.0.40-3828f0b.tgz) = 405b5e99a2ad462b2ea5b7fb3d8086c4bae9643da45b2d46947cd8e5117ac77318dd87ce2a85896ad862039efa8ae713f8669acdf683efe0e3da0702a5d64a22 +SHA512 (php-league-flysystem-1.0.41-f400aa9.tgz) = af96dfe42050e53a985d8056da9da91f5c359cd4df2d77623dd9f8885c8feabe320c6e062362f5d54c82aecbbcc5493d17ad940446f83843ac2847651b093962 From d86daa9542842f080e93577df2832e8c4bd61d37 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 29 Jan 2018 07:55:25 +0100 Subject: [PATCH 19/60] Update to 1.0.42 switch to phpunit 6 and phpspec 4 --- .gitignore | 1 + php-league-flysystem.spec | 38 +++++++++++++++++++++----------------- sources | 2 +- 3 files changed, 23 insertions(+), 18 deletions(-) diff --git a/.gitignore b/.gitignore index bc97d92..e269ecc 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,4 @@ /php-league-flysystem-1.0.39-2474325.tgz /php-league-flysystem-1.0.40-3828f0b.tgz /php-league-flysystem-1.0.41-f400aa9.tgz +/php-league-flysystem-1.0.42-09eabc5.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index da33325..830e5d9 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -1,13 +1,13 @@ # remirepo/fedora spec file for php-league-flysystem # -# Copyright (c) 2016-2017 Remi Collet +# Copyright (c) 2016-2018 Remi Collet # License: CC-BY-SA # http://creativecommons.org/licenses/by-sa/4.0/ # # Please, preserve the changelog entries # # Github -%global gh_commit f400aa98912c561ba625ea4065031b7a41e5a155 +%global gh_commit 09eabc54e199950041aef258a85847676496fe8e %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,7 +19,7 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.0.41 +Version: 1.0.42 Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API @@ -31,7 +31,8 @@ Source0: %{name}-%{version}-%{gh_short}.tgz Source1: makesrc.sh BuildArch: noarch -BuildRequires: php(language) >= 5.5.9 +# As we use phpunit 6 and phpspec 4 +BuildRequires: php(language) >= 7 BuildRequires: php-date BuildRequires: php-fileinfo BuildRequires: php-ftp @@ -40,12 +41,10 @@ BuildRequires: php-mbstring BuildRequires: php-pcre BuildRequires: php-spl # From composer.json, "require-dev": { -# "phpunit/phpunit": "~4.8 || ~5.0", -# "mockery/mockery": "~0.9", -# "phpspec/phpspec": "^2.2" -BuildRequires: php-composer(phpunit/phpunit) >= 4.0 -BuildRequires: php-composer(mockery/mockery) >= 0.9 -BuildRequires: php-composer(phpspec/phpspec) >= 2.2 +# "phpspec/phpspec": "^3.4", +# "phpunit/phpunit": "^5.7" +BuildRequires: php-composer(phpspec/phpspec) >= 3.4 +BuildRequires: phpunit6 # Autoloader BuildRequires: php-composer(fedora/autoloader) @@ -101,11 +100,9 @@ cat << 'EOF' | tee vendor/autoload.php // Installed library require '%{buildroot}%{_datadir}/php/%{ns_vendor}/%{ns_project}/autoload.php'; -// Dependency -require_once '%{_datadir}/php/Mockery/autoload.php'; - // Test suite \Fedora\Autoloader\Autoload::addPsr4('%{ns_vendor}\\%{ns_project}\\Stub\\', dirname(__DIR__).'/stub'); +require_once dirname(__DIR__) . '/tests/PHPUnitHacks.php'; EOF : Fix bootstraping @@ -113,17 +110,20 @@ sed -e 's/file="[^"]*"//' -i phpunit.xml echo 'bootstrap: vendor/autoload.php' >>phpspec.yml PHPSPECVER=$(%{_bindir}/phpspec --version | sed 's/.* //;s/\..*//') -if [ "$PHPSPECVER" -ge 3 ] +if [ "$PHPSPECVER" -lt 3 ] then PHPSPEC=/dev/null else PHPSPEC=%{_bindir}/phpspec fi +# Known to fail test +sed -e 's/testPathinfoHandlesUtf8/skipPathinfoHandlesUtf8/' -i tests/UtilTests.php + ret=0 -for cmd in php php56 php70 php71 php72; do +for cmd in php php70 php71 php72; do if which $cmd; then - : Run upstream test suite with PHP 5 + : Run upstream test suite $cmd $PHPSPEC run || ret=1 - $cmd %{_bindir}/phpunit --verbose || ret=1 + $cmd %{_bindir}/phpunit6 --exclude-group integration --no-coverage --verbose || ret=1 fi done exit $ret @@ -138,6 +138,10 @@ exit $ret %changelog +* Mon Jan 29 2018 Remi Collet - 1.0.42-1 +- Update to 1.0.42 +- switch to phpunit 6 and phpspec 4 + * Mon Aug 7 2017 Remi Collet - 1.0.41-1 - Update to 1.0.41 diff --git a/sources b/sources index af41112..12074c9 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.0.41-f400aa9.tgz) = af96dfe42050e53a985d8056da9da91f5c359cd4df2d77623dd9f8885c8feabe320c6e062362f5d54c82aecbbcc5493d17ad940446f83843ac2847651b093962 +SHA512 (php-league-flysystem-1.0.42-09eabc5.tgz) = 808b68a02a5b8db0506a00cbd8cab98410295fd95c36b0c53c2d5481c3cfc1477f2778f41d0cc388925201e4e6a5c065d20cb3a4fc63c71c08cc7304ec863879 From da2a1a63170d8f3b0c34b3d7205e705b76b6ef70 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 9 Feb 2018 03:47:35 +0000 Subject: [PATCH 20/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-league-flysystem.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index 830e5d9..bc93177 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -20,7 +20,7 @@ Name: php-%{pk_vendor}-%{pk_name} Version: 1.0.42 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Filesystem abstraction: Many filesystems, one API Group: Development/Libraries @@ -138,6 +138,9 @@ exit $ret %changelog +* Fri Feb 09 2018 Fedora Release Engineering - 1.0.42-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Mon Jan 29 2018 Remi Collet - 1.0.42-1 - Update to 1.0.42 - switch to phpunit 6 and phpspec 4 From a6509daeaffdcce5c5d65e181b535a9331005374 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 1 Mar 2018 13:43:50 +0100 Subject: [PATCH 21/60] v1.0.43 --- .gitignore | 1 + php-league-flysystem.spec | 10 ++++++---- sources | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index e269ecc..734a14f 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,4 @@ /php-league-flysystem-1.0.40-3828f0b.tgz /php-league-flysystem-1.0.41-f400aa9.tgz /php-league-flysystem-1.0.42-09eabc5.tgz +/php-league-flysystem-1.0.43-1ce7cc1.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index bc93177..53249e4 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -7,7 +7,7 @@ # Please, preserve the changelog entries # # Github -%global gh_commit 09eabc54e199950041aef258a85847676496fe8e +%global gh_commit 1ce7cc142d906ba58dc54c82915d355a9191c8a8 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,11 +19,10 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.0.42 -Release: 2%{?dist} +Version: 1.0.43 +Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API -Group: Development/Libraries License: MIT URL: https://github.com/%{gh_owner}/%{gh_project} Source0: %{name}-%{version}-%{gh_short}.tgz @@ -138,6 +137,9 @@ exit $ret %changelog +* Thu Mar 1 2018 Remi Collet - 1.0.43-1 +- Update to 1.0.43 + * Fri Feb 09 2018 Fedora Release Engineering - 1.0.42-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild diff --git a/sources b/sources index 12074c9..6121fa7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.0.42-09eabc5.tgz) = 808b68a02a5b8db0506a00cbd8cab98410295fd95c36b0c53c2d5481c3cfc1477f2778f41d0cc388925201e4e6a5c065d20cb3a4fc63c71c08cc7304ec863879 +SHA512 (php-league-flysystem-1.0.43-1ce7cc1.tgz) = 4f1712a201100112d5911969e8874e81154c4499df35c00d9edafd70d4d56b3bdc4f3f7f0c14e4a77a6091a122a281f1d29195ed1e617b58a2f3ac72955dfa03 From 68fa1c8c4d53aa811caad8b3c019de73b91f776e Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 9 Apr 2018 15:07:59 +0200 Subject: [PATCH 22/60] v1.0.44 --- .gitignore | 1 + php-league-flysystem.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 734a14f..929fe5b 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,4 @@ /php-league-flysystem-1.0.41-f400aa9.tgz /php-league-flysystem-1.0.42-09eabc5.tgz /php-league-flysystem-1.0.43-1ce7cc1.tgz +/php-league-flysystem-1.0.44-168dbe5.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index 53249e4..9a10220 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -7,7 +7,7 @@ # Please, preserve the changelog entries # # Github -%global gh_commit 1ce7cc142d906ba58dc54c82915d355a9191c8a8 +%global gh_commit 168dbe519737221dc87d17385cde33073881fd02 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,7 +19,7 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.0.43 +Version: 1.0.44 Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API @@ -137,6 +137,9 @@ exit $ret %changelog +* Mon Apr 9 2018 Remi Collet - 1.0.44-1 +- update to 1.0.44 + * Thu Mar 1 2018 Remi Collet - 1.0.43-1 - Update to 1.0.43 diff --git a/sources b/sources index 6121fa7..55638b5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.0.43-1ce7cc1.tgz) = 4f1712a201100112d5911969e8874e81154c4499df35c00d9edafd70d4d56b3bdc4f3f7f0c14e4a77a6091a122a281f1d29195ed1e617b58a2f3ac72955dfa03 +SHA512 (php-league-flysystem-1.0.44-168dbe5.tgz) = 2327bffc670871480b4ac20d6622e7e93fc88edabf481412b6e80ef550054cccbca90a10930b1f79ee6b55da2a35fae96330b4d74eff2540a7d4e3ff18a0e3c5 From da0c5c617d33275fe74c60a1a94c3593cc9c90b2 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 14 May 2018 10:12:42 +0200 Subject: [PATCH 23/60] v1.0.45 --- .gitignore | 1 + php-league-flysystem.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 929fe5b..7dc8685 100644 --- a/.gitignore +++ b/.gitignore @@ -23,3 +23,4 @@ /php-league-flysystem-1.0.42-09eabc5.tgz /php-league-flysystem-1.0.43-1ce7cc1.tgz /php-league-flysystem-1.0.44-168dbe5.tgz +/php-league-flysystem-1.0.45-a99f94e.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index 9a10220..d32b05d 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -7,7 +7,7 @@ # Please, preserve the changelog entries # # Github -%global gh_commit 168dbe519737221dc87d17385cde33073881fd02 +%global gh_commit a99f94e63b512d75f851b181afcdf0ee9ebef7e6 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,7 +19,7 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.0.44 +Version: 1.0.45 Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API @@ -137,6 +137,9 @@ exit $ret %changelog +* Mon May 14 2018 Remi Collet - 1.0.45-1 +- update to 1.0.45 + * Mon Apr 9 2018 Remi Collet - 1.0.44-1 - update to 1.0.44 diff --git a/sources b/sources index 55638b5..e2b05e2 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.0.44-168dbe5.tgz) = 2327bffc670871480b4ac20d6622e7e93fc88edabf481412b6e80ef550054cccbca90a10930b1f79ee6b55da2a35fae96330b4d74eff2540a7d4e3ff18a0e3c5 +SHA512 (php-league-flysystem-1.0.45-a99f94e.tgz) = 71c03d6ab2a244266df0fe4289eeebcfd29a22231b44a0c30df2a0a1b1380e262e3dd15a76822406e39a4bf13988586b18068879b10498734267a491a5b5e121 From 0f589129ce18babe6279b9d5d7b273030a19cd92 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 13 Jul 2018 21:37:37 +0000 Subject: [PATCH 24/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-league-flysystem.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index d32b05d..d4ccd62 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -20,7 +20,7 @@ Name: php-%{pk_vendor}-%{pk_name} Version: 1.0.45 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Filesystem abstraction: Many filesystems, one API License: MIT @@ -137,6 +137,9 @@ exit $ret %changelog +* Fri Jul 13 2018 Fedora Release Engineering - 1.0.45-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Mon May 14 2018 Remi Collet - 1.0.45-1 - update to 1.0.45 From 489ead125a2502033eb4ee96687899dcba19a230 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 22 Aug 2018 11:47:01 +0200 Subject: [PATCH 25/60] v1.0.46 --- .gitignore | 1 + php-league-flysystem.spec | 17 ++++++++++------- sources | 2 +- 3 files changed, 12 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index 7dc8685..44df4c4 100644 --- a/.gitignore +++ b/.gitignore @@ -24,3 +24,4 @@ /php-league-flysystem-1.0.43-1ce7cc1.tgz /php-league-flysystem-1.0.44-168dbe5.tgz /php-league-flysystem-1.0.45-a99f94e.tgz +/php-league-flysystem-1.0.46-f3e0d92.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index d4ccd62..93e3d12 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -7,7 +7,7 @@ # Please, preserve the changelog entries # # Github -%global gh_commit a99f94e63b512d75f851b181afcdf0ee9ebef7e6 +%global gh_commit f3e0d925c18b92cf3ce84ea5cc58d62a1762a2b2 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,8 +19,8 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.0.45 -Release: 2%{?dist} +Version: 1.0.46 +Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API License: MIT @@ -30,8 +30,8 @@ Source0: %{name}-%{version}-%{gh_short}.tgz Source1: makesrc.sh BuildArch: noarch -# As we use phpunit 6 and phpspec 4 -BuildRequires: php(language) >= 7 +# As we use phpunit 6 and phpspec 5 +BuildRequires: php(language) >= 7.1 BuildRequires: php-date BuildRequires: php-fileinfo BuildRequires: php-ftp @@ -41,7 +41,7 @@ BuildRequires: php-pcre BuildRequires: php-spl # From composer.json, "require-dev": { # "phpspec/phpspec": "^3.4", -# "phpunit/phpunit": "^5.7" +# "phpunit/phpunit": "^5.7.10" BuildRequires: php-composer(phpspec/phpspec) >= 3.4 BuildRequires: phpunit6 # Autoloader @@ -118,7 +118,7 @@ fi sed -e 's/testPathinfoHandlesUtf8/skipPathinfoHandlesUtf8/' -i tests/UtilTests.php ret=0 -for cmd in php php70 php71 php72; do +for cmd in php php71 php72 php73; do if which $cmd; then : Run upstream test suite $cmd $PHPSPEC run || ret=1 @@ -137,6 +137,9 @@ exit $ret %changelog +* Wed Aug 22 2018 Remi Collet - 1.0.46-1 +- update to 1.0.46 + * Fri Jul 13 2018 Fedora Release Engineering - 1.0.45-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild diff --git a/sources b/sources index e2b05e2..dcc19b2 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.0.45-a99f94e.tgz) = 71c03d6ab2a244266df0fe4289eeebcfd29a22231b44a0c30df2a0a1b1380e262e3dd15a76822406e39a4bf13988586b18068879b10498734267a491a5b5e121 +SHA512 (php-league-flysystem-1.0.46-f3e0d92.tgz) = c9bc98c97064bc66b8f5f2f23004859546b9617cc915751c9dc5c7b79a381ef84f3287f9a4ac2a6e1b8eff16b5724e0ad27aa91507cf889964841bde35df103d From bf5b1e481459984a98f463e091199b729a1742b3 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 17 Sep 2018 11:25:18 +0200 Subject: [PATCH 26/60] v1.0.47 --- .gitignore | 27 ++------------------------- php-league-flysystem.spec | 11 ++++++++--- sources | 2 +- 3 files changed, 11 insertions(+), 29 deletions(-) diff --git a/.gitignore b/.gitignore index 44df4c4..3221ce9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,27 +1,4 @@ -/php-league-flysystem-1.0.16-183e1a6.tgz -/php-league-flysystem-1.0.17-02f5b6c.tgz -/php-league-flysystem-1.0.18-b334d6c.tgz -/php-league-flysystem-1.0.20-e87a786.tgz -/php-league-flysystem-1.0.21-35a83cf.tgz -/php-league-flysystem-1.0.22-bd73a91.tgz -/php-league-flysystem-1.0.24-9aca859.tgz -/php-league-flysystem-1.0.25-a76afa4.tgz -/php-league-flysystem-1.0.26-fb3b30d.tgz -/php-league-flysystem-1.0.27-50e2045.tgz -/php-league-flysystem-1.0.28-a966364.tgz -/php-league-flysystem-1.0.29-b732cc9.tgz -/php-league-flysystem-1.0.31-521a233.tgz -/php-league-flysystem-1.0.33-5c7f984.tgz -/php-league-flysystem-1.0.34-469ad53.tgz -/php-league-flysystem-1.0.35-dda7f3a.tgz -/php-league-flysystem-1.0.36-d9c1698.tgz -/php-league-flysystem-1.0.37-78b5cc4.tgz -/php-league-flysystem-1.0.38-4ba6e13.tgz -/php-league-flysystem-1.0.39-2474325.tgz -/php-league-flysystem-1.0.40-3828f0b.tgz -/php-league-flysystem-1.0.41-f400aa9.tgz -/php-league-flysystem-1.0.42-09eabc5.tgz -/php-league-flysystem-1.0.43-1ce7cc1.tgz -/php-league-flysystem-1.0.44-168dbe5.tgz +clog /php-league-flysystem-1.0.45-a99f94e.tgz /php-league-flysystem-1.0.46-f3e0d92.tgz +/php-league-flysystem-1.0.47-a11e4a7.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index 93e3d12..30e3fbf 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -7,7 +7,7 @@ # Please, preserve the changelog entries # # Github -%global gh_commit f3e0d925c18b92cf3ce84ea5cc58d62a1762a2b2 +%global gh_commit a11e4a75f256bdacf99d20780ce42d3b8272975c %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,7 +19,7 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.0.46 +Version: 1.0.47 Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API @@ -48,10 +48,12 @@ BuildRequires: phpunit6 BuildRequires: php-composer(fedora/autoloader) # From composer.json, "require": { +# "php": ">=5.5.9", +# "ext-fileinfo": "*" Requires: php(language) >= 5.5.9 +Requires: php-fileinfo # From phpcompatifo report for 1.0.29 Requires: php-date -Requires: php-fileinfo Requires: php-ftp Requires: php-hash Requires: php-mbstring @@ -137,6 +139,9 @@ exit $ret %changelog +* Sat Sep 15 2018 Remi Collet - 1.0.47-1 +- update to 1.0.47 + * Wed Aug 22 2018 Remi Collet - 1.0.46-1 - update to 1.0.46 diff --git a/sources b/sources index dcc19b2..72ee2a4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.0.46-f3e0d92.tgz) = c9bc98c97064bc66b8f5f2f23004859546b9617cc915751c9dc5c7b79a381ef84f3287f9a4ac2a6e1b8eff16b5724e0ad27aa91507cf889964841bde35df103d +SHA512 (php-league-flysystem-1.0.47-a11e4a7.tgz) = d78e7b6c0727c8173d204e975aaf744f64c1dcfd94cf94deb567976963df5c0b7c982ae90beaa1d7c9fc783ce29f300d993b80901462ab5c8bd6889e14075a06 From 602bc34a156946b3fd989cf49203646e4cf7fbe2 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 16 Oct 2018 08:21:33 +0200 Subject: [PATCH 27/60] v1.0.48 --- .gitignore | 1 + php-league-flysystem.spec | 17 ++++++++++------- sources | 2 +- 3 files changed, 12 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index 3221ce9..da6362a 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ clog /php-league-flysystem-1.0.45-a99f94e.tgz /php-league-flysystem-1.0.46-f3e0d92.tgz /php-league-flysystem-1.0.47-a11e4a7.tgz +/php-league-flysystem-1.0.48-a6ded5b.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index 30e3fbf..e0174a8 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -7,7 +7,7 @@ # Please, preserve the changelog entries # # Github -%global gh_commit a11e4a75f256bdacf99d20780ce42d3b8272975c +%global gh_commit a6ded5b2f6055e2db97b4b859fdfca2b952b78aa %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,7 +19,7 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.0.47 +Version: 1.0.48 Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API @@ -52,7 +52,7 @@ BuildRequires: php-composer(fedora/autoloader) # "ext-fileinfo": "*" Requires: php(language) >= 5.5.9 Requires: php-fileinfo -# From phpcompatifo report for 1.0.29 +# From phpcompatifo report for 1.0.48 Requires: php-date Requires: php-ftp Requires: php-hash @@ -116,15 +116,15 @@ then PHPSPEC=/dev/null else PHPSPEC=%{_bindir}/phpspec fi -# Known to fail test -sed -e 's/testPathinfoHandlesUtf8/skipPathinfoHandlesUtf8/' -i tests/UtilTests.php - ret=0 for cmd in php php71 php72 php73; do if which $cmd; then : Run upstream test suite $cmd $PHPSPEC run || ret=1 - $cmd %{_bindir}/phpunit6 --exclude-group integration --no-coverage --verbose || ret=1 + $cmd %{_bindir}/phpunit6 \ + --exclude-group integration \ + --filter '^((?!(testPathinfoHandlesUtf8)).)*$' \ + --no-coverage --verbose || ret=1 fi done exit $ret @@ -139,6 +139,9 @@ exit $ret %changelog +* Tue Oct 16 2018 Remi Collet - 1.0.48-1 +- update to 1.0.48 + * Sat Sep 15 2018 Remi Collet - 1.0.47-1 - update to 1.0.47 diff --git a/sources b/sources index 72ee2a4..ce5953b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.0.47-a11e4a7.tgz) = d78e7b6c0727c8173d204e975aaf744f64c1dcfd94cf94deb567976963df5c0b7c982ae90beaa1d7c9fc783ce29f300d993b80901462ab5c8bd6889e14075a06 +SHA512 (php-league-flysystem-1.0.48-a6ded5b.tgz) = 4963a8be84c2d6e483c65e13e50c126193aec40dbf7f12e00c90e2f3bc135ece8bd07440a5617ff8f8a4977aa2900b5e9782651144c8b33724c83db1cc0b1999 From 9f0ba3286bb50735ca7c341fcb018a078bc2200e Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 26 Nov 2018 13:51:14 +0100 Subject: [PATCH 28/60] v1.0.49 --- .gitignore | 1 + php-league-flysystem.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index da6362a..307fdf8 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ clog /php-league-flysystem-1.0.46-f3e0d92.tgz /php-league-flysystem-1.0.47-a11e4a7.tgz /php-league-flysystem-1.0.48-a6ded5b.tgz +/php-league-flysystem-1.0.49-a63cc83.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index e0174a8..936e292 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -7,7 +7,7 @@ # Please, preserve the changelog entries # # Github -%global gh_commit a6ded5b2f6055e2db97b4b859fdfca2b952b78aa +%global gh_commit a63cc83d8a931b271be45148fa39ba7156782ffd %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,7 +19,7 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.0.48 +Version: 1.0.49 Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API @@ -52,7 +52,7 @@ BuildRequires: php-composer(fedora/autoloader) # "ext-fileinfo": "*" Requires: php(language) >= 5.5.9 Requires: php-fileinfo -# From phpcompatifo report for 1.0.48 +# From phpcompatifo report for 1.0.49 Requires: php-date Requires: php-ftp Requires: php-hash @@ -139,6 +139,9 @@ exit $ret %changelog +* Mon Nov 26 2018 Remi Collet - 1.0.49-1 +- update to 1.0.49 + * Tue Oct 16 2018 Remi Collet - 1.0.48-1 - update to 1.0.48 diff --git a/sources b/sources index ce5953b..51e838b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.0.48-a6ded5b.tgz) = 4963a8be84c2d6e483c65e13e50c126193aec40dbf7f12e00c90e2f3bc135ece8bd07440a5617ff8f8a4977aa2900b5e9782651144c8b33724c83db1cc0b1999 +SHA512 (php-league-flysystem-1.0.49-a63cc83.tgz) = 3360fce1302668c4605817dacc44fc675768b8f3d062fad9cc1aee3b6dc1680f14c4adfb30d999336cf568e356873f9e627052f4391667231d8cad85163e03bc From 5bf62156598627eac5db960881c5db406307dab7 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 1 Feb 2019 13:21:49 +0100 Subject: [PATCH 29/60] v1.0.50 --- .gitignore | 1 + php-league-flysystem.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 307fdf8..e1217ce 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ clog /php-league-flysystem-1.0.47-a11e4a7.tgz /php-league-flysystem-1.0.48-a6ded5b.tgz /php-league-flysystem-1.0.49-a63cc83.tgz +/php-league-flysystem-1.0.50-dab4e76.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index 936e292..7ab2578 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -1,13 +1,13 @@ # remirepo/fedora spec file for php-league-flysystem # -# Copyright (c) 2016-2018 Remi Collet +# Copyright (c) 2016-2019 Remi Collet # License: CC-BY-SA # http://creativecommons.org/licenses/by-sa/4.0/ # # Please, preserve the changelog entries # # Github -%global gh_commit a63cc83d8a931b271be45148fa39ba7156782ffd +%global gh_commit dab4e7624efa543a943be978008f439c333f2249 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,7 +19,7 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.0.49 +Version: 1.0.50 Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API @@ -139,6 +139,9 @@ exit $ret %changelog +* Fri Feb 1 2019 Remi Collet - 1.0.50-1 +- update to 1.0.50 + * Mon Nov 26 2018 Remi Collet - 1.0.49-1 - update to 1.0.49 diff --git a/sources b/sources index 51e838b..4bb65fa 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.0.49-a63cc83.tgz) = 3360fce1302668c4605817dacc44fc675768b8f3d062fad9cc1aee3b6dc1680f14c4adfb30d999336cf568e356873f9e627052f4391667231d8cad85163e03bc +SHA512 (php-league-flysystem-1.0.50-dab4e76.tgz) = 6aa42d2cb67f0b333c0931debc6963571a6dbd1f4d09eceb37172fde0327e57f571cd34cc5ce209c03d91d3360a74634964c07242e8a0e795728b38059e8dcdb From a6ffcb273f01c7d5c1ffc3917fc564c40cf236bd Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 1 Apr 2019 14:35:44 +0200 Subject: [PATCH 30/60] v1.0.51 --- .gitignore | 1 + php-league-flysystem.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index e1217ce..59b813c 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ clog /php-league-flysystem-1.0.48-a6ded5b.tgz /php-league-flysystem-1.0.49-a63cc83.tgz /php-league-flysystem-1.0.50-dab4e76.tgz +/php-league-flysystem-1.0.51-755ba7b.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index 7ab2578..3a34103 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -7,7 +7,7 @@ # Please, preserve the changelog entries # # Github -%global gh_commit dab4e7624efa543a943be978008f439c333f2249 +%global gh_commit 755ba7bf3fb9031e6581d091db84d78275874396 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,7 +19,7 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.0.50 +Version: 1.0.51 Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API @@ -139,6 +139,9 @@ exit $ret %changelog +* Mon Apr 1 2019 Remi Collet - 1.0.51-1 +- update to 1.0.51 + * Fri Feb 1 2019 Remi Collet - 1.0.50-1 - update to 1.0.50 diff --git a/sources b/sources index 4bb65fa..48bfd9d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.0.50-dab4e76.tgz) = 6aa42d2cb67f0b333c0931debc6963571a6dbd1f4d09eceb37172fde0327e57f571cd34cc5ce209c03d91d3360a74634964c07242e8a0e795728b38059e8dcdb +SHA512 (php-league-flysystem-1.0.51-755ba7b.tgz) = 2d3abf8eecf2c84feeb5ed6d720c4a43c3c801a3030c564af0a2637347852a8f0cfb001183d14a9e717da63d57d022764203b70b64e1d084ee0389cd41fcb498 From e77f906d3f4b3f1577005b32b087c66df2017046 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 21 May 2019 09:39:27 +0200 Subject: [PATCH 31/60] v1.0.52 --- .gitignore | 1 + php-league-flysystem.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 59b813c..ead0274 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ clog /php-league-flysystem-1.0.49-a63cc83.tgz /php-league-flysystem-1.0.50-dab4e76.tgz /php-league-flysystem-1.0.51-755ba7b.tgz +/php-league-flysystem-1.0.52-c5a5097.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index 3a34103..79aff16 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -7,7 +7,7 @@ # Please, preserve the changelog entries # # Github -%global gh_commit 755ba7bf3fb9031e6581d091db84d78275874396 +%global gh_commit c5a5097156387970e6f0ccfcdf03f752856f3391 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,7 +19,7 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.0.51 +Version: 1.0.52 Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API @@ -139,6 +139,9 @@ exit $ret %changelog +* Tue May 21 2019 Remi Collet - 1.0.52-1 +- update to 1.0.52 + * Mon Apr 1 2019 Remi Collet - 1.0.51-1 - update to 1.0.51 diff --git a/sources b/sources index 48bfd9d..bc9c08c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.0.51-755ba7b.tgz) = 2d3abf8eecf2c84feeb5ed6d720c4a43c3c801a3030c564af0a2637347852a8f0cfb001183d14a9e717da63d57d022764203b70b64e1d084ee0389cd41fcb498 +SHA512 (php-league-flysystem-1.0.52-c5a5097.tgz) = cfb8e53b865f57b7e0f81754ed1f84a26e51dd6c91c7162b4593848b5941a9e963d8b9b0e375d7cfbab332996dce5106df70e0d5314044348d4510df2aa57f2f From f6cd791990e5a576f4d56fc75f2b3b1a2eb5a7b7 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 19 Jun 2019 07:43:06 +0200 Subject: [PATCH 32/60] v1.0.53 --- .gitignore | 1 + php-league-flysystem.spec | 8 ++++++-- sources | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index ead0274..0ec4d76 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ clog /php-league-flysystem-1.0.50-dab4e76.tgz /php-league-flysystem-1.0.51-755ba7b.tgz /php-league-flysystem-1.0.52-c5a5097.tgz +/php-league-flysystem-1.0.53-08e12b7.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index 79aff16..f94bd6b 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -7,7 +7,7 @@ # Please, preserve the changelog entries # # Github -%global gh_commit c5a5097156387970e6f0ccfcdf03f752856f3391 +%global gh_commit 08e12b7628f035600634a5e76d95b5eb66cea674 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,7 +19,7 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.0.52 +Version: 1.0.53 Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API @@ -117,6 +117,7 @@ else PHPSPEC=%{_bindir}/phpspec fi ret=0 +# TODO 7.4: 1 failed test (testMimetypeFallbackOnExtension) for cmd in php php71 php72 php73; do if which $cmd; then : Run upstream test suite @@ -139,6 +140,9 @@ exit $ret %changelog +* Wed Jun 19 2019 Remi Collet - 1.0.53-1 +- update to 1.0.53 + * Tue May 21 2019 Remi Collet - 1.0.52-1 - update to 1.0.52 diff --git a/sources b/sources index bc9c08c..a233828 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.0.52-c5a5097.tgz) = cfb8e53b865f57b7e0f81754ed1f84a26e51dd6c91c7162b4593848b5941a9e963d8b9b0e375d7cfbab332996dce5106df70e0d5314044348d4510df2aa57f2f +SHA512 (php-league-flysystem-1.0.53-08e12b7.tgz) = b3530f9e21df3a07aa5b75a9e8138a6b851ae89c1a911a729fb8705b0fad5cec662e656d6c619ed57b8f4d48271e57b6a32cba49787121b9c2a33007e4f58959 From 9d000bb2829ef3dc09546b878b0ec5a753772d69 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 26 Jul 2019 09:24:22 +0000 Subject: [PATCH 33/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-league-flysystem.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index f94bd6b..310948f 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -20,7 +20,7 @@ Name: php-%{pk_vendor}-%{pk_name} Version: 1.0.53 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Filesystem abstraction: Many filesystems, one API License: MIT @@ -140,6 +140,9 @@ exit $ret %changelog +* Fri Jul 26 2019 Fedora Release Engineering - 1.0.53-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Wed Jun 19 2019 Remi Collet - 1.0.53-1 - update to 1.0.53 From 0b3e304de054db4b9f0b08670e5974b277d854c1 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 26 Aug 2019 11:28:23 +0200 Subject: [PATCH 34/60] v1.0.55 --- .gitignore | 1 + php-league-flysystem.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 0ec4d76..d3fb7c3 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ clog /php-league-flysystem-1.0.51-755ba7b.tgz /php-league-flysystem-1.0.52-c5a5097.tgz /php-league-flysystem-1.0.53-08e12b7.tgz +/php-league-flysystem-1.0.55-33c9115.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index 310948f..0fae070 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -7,7 +7,7 @@ # Please, preserve the changelog entries # # Github -%global gh_commit 08e12b7628f035600634a5e76d95b5eb66cea674 +%global gh_commit 33c91155537c6dc899eacdc54a13ac6303f156e6 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,8 +19,8 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.0.53 -Release: 2%{?dist} +Version: 1.0.55 +Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API License: MIT @@ -140,6 +140,9 @@ exit $ret %changelog +* Mon Aug 26 2019 Remi Collet - 1.0.55-1 +- update to 1.0.55 + * Fri Jul 26 2019 Fedora Release Engineering - 1.0.53-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild diff --git a/sources b/sources index a233828..6cf4b3e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.0.53-08e12b7.tgz) = b3530f9e21df3a07aa5b75a9e8138a6b851ae89c1a911a729fb8705b0fad5cec662e656d6c619ed57b8f4d48271e57b6a32cba49787121b9c2a33007e4f58959 +SHA512 (php-league-flysystem-1.0.55-33c9115.tgz) = cf9a5c0553cc14ec2c1cd524df552b6e5afa12cc2552bce4eb777577f13df9fc0431b23d2605e3f824b577cf4d9602f8fe60fe43b2049fe14e057cc4edb18613 From a1918811dc6fc1fcd8f3241aa2b728e31c995f5f Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 11 Oct 2019 12:03:58 +0200 Subject: [PATCH 35/60] add patch for PHP 7.4 from https://github.com/thephpleague/flysystem/pull/1081 --- 1081.patch | 22 ++++++++++++++++++++++ php-league-flysystem.spec | 12 +++++++++--- 2 files changed, 31 insertions(+), 3 deletions(-) create mode 100644 1081.patch diff --git a/1081.patch b/1081.patch new file mode 100644 index 0000000..71c0dd4 --- /dev/null +++ b/1081.patch @@ -0,0 +1,22 @@ +From 1c4f297d30f51493c6ed54c827ad85132b3c8f61 Mon Sep 17 00:00:00 2001 +From: Remi Collet +Date: Fri, 11 Oct 2019 12:00:18 +0200 +Subject: [PATCH] add 'application/x-empty' for 7.4 + +--- + src/Adapter/Local.php | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/Adapter/Local.php b/src/Adapter/Local.php +index 3236349a..c6e6fa86 100644 +--- a/src/Adapter/Local.php ++++ b/src/Adapter/Local.php +@@ -319,7 +319,7 @@ public function getMimetype($path) + $finfo = new Finfo(FILEINFO_MIME_TYPE); + $mimetype = $finfo->file($location); + +- if (in_array($mimetype, ['application/octet-stream', 'inode/x-empty'])) { ++ if (in_array($mimetype, ['application/octet-stream', 'inode/x-empty', 'application/x-empty'])) { + $mimetype = Util\MimeType::detectByFilename($location); + } + diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index 0fae070..6311011 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -20,7 +20,7 @@ Name: php-%{pk_vendor}-%{pk_name} Version: 1.0.55 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Filesystem abstraction: Many filesystems, one API License: MIT @@ -29,6 +29,8 @@ Source0: %{name}-%{version}-%{gh_short}.tgz # Create git snapshot as tests are excluded from official tarball Source1: makesrc.sh +Patch0: https://patch-diff.githubusercontent.com/raw/thephpleague/flysystem/pull/1081.patch + BuildArch: noarch # As we use phpunit 6 and phpspec 5 BuildRequires: php(language) >= 7.1 @@ -74,6 +76,7 @@ Autoloader: %{_datadir}/php/%{ns_vendor}/%{ns_project}/autoload.php %prep %setup -q -n %{gh_project}-%{gh_commit} +%patch0 -p1 %build @@ -117,8 +120,7 @@ else PHPSPEC=%{_bindir}/phpspec fi ret=0 -# TODO 7.4: 1 failed test (testMimetypeFallbackOnExtension) -for cmd in php php71 php72 php73; do +for cmd in php php71 php72 php73 php74; do if which $cmd; then : Run upstream test suite $cmd $PHPSPEC run || ret=1 @@ -140,6 +142,10 @@ exit $ret %changelog +* Fri Oct 11 2019 Remi Collet - 1.0.55-2 +- add patch for PHP 7.4 from + https://github.com/thephpleague/flysystem/pull/1081 + * Mon Aug 26 2019 Remi Collet - 1.0.55-1 - update to 1.0.55 From 9e4dd6a22fd099f75ad4164874ddfcb18c5f846c Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 14 Oct 2019 08:22:18 +0200 Subject: [PATCH 36/60] update to 1.0.56 drop patch merged upstream --- .gitignore | 1 + 1081.patch | 22 ---------------------- php-league-flysystem.spec | 13 +++++++------ sources | 2 +- 4 files changed, 9 insertions(+), 29 deletions(-) delete mode 100644 1081.patch diff --git a/.gitignore b/.gitignore index d3fb7c3..33797b8 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ clog /php-league-flysystem-1.0.52-c5a5097.tgz /php-league-flysystem-1.0.53-08e12b7.tgz /php-league-flysystem-1.0.55-33c9115.tgz +/php-league-flysystem-1.0.56-90e3f83.tgz diff --git a/1081.patch b/1081.patch deleted file mode 100644 index 71c0dd4..0000000 --- a/1081.patch +++ /dev/null @@ -1,22 +0,0 @@ -From 1c4f297d30f51493c6ed54c827ad85132b3c8f61 Mon Sep 17 00:00:00 2001 -From: Remi Collet -Date: Fri, 11 Oct 2019 12:00:18 +0200 -Subject: [PATCH] add 'application/x-empty' for 7.4 - ---- - src/Adapter/Local.php | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/Adapter/Local.php b/src/Adapter/Local.php -index 3236349a..c6e6fa86 100644 ---- a/src/Adapter/Local.php -+++ b/src/Adapter/Local.php -@@ -319,7 +319,7 @@ public function getMimetype($path) - $finfo = new Finfo(FILEINFO_MIME_TYPE); - $mimetype = $finfo->file($location); - -- if (in_array($mimetype, ['application/octet-stream', 'inode/x-empty'])) { -+ if (in_array($mimetype, ['application/octet-stream', 'inode/x-empty', 'application/x-empty'])) { - $mimetype = Util\MimeType::detectByFilename($location); - } - diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index 6311011..ce07b96 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -7,7 +7,7 @@ # Please, preserve the changelog entries # # Github -%global gh_commit 33c91155537c6dc899eacdc54a13ac6303f156e6 +%global gh_commit 90e3f83cb10ef6b058d70f95267030e7a6236518 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,8 +19,8 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.0.55 -Release: 2%{?dist} +Version: 1.0.56 +Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API License: MIT @@ -29,8 +29,6 @@ Source0: %{name}-%{version}-%{gh_short}.tgz # Create git snapshot as tests are excluded from official tarball Source1: makesrc.sh -Patch0: https://patch-diff.githubusercontent.com/raw/thephpleague/flysystem/pull/1081.patch - BuildArch: noarch # As we use phpunit 6 and phpspec 5 BuildRequires: php(language) >= 7.1 @@ -76,7 +74,6 @@ Autoloader: %{_datadir}/php/%{ns_vendor}/%{ns_project}/autoload.php %prep %setup -q -n %{gh_project}-%{gh_commit} -%patch0 -p1 %build @@ -142,6 +139,10 @@ exit $ret %changelog +* Sun Oct 13 2019 Remi Collet - 1.0.56-1 +- update to 1.0.56 +- drop patch merged upstream + * Fri Oct 11 2019 Remi Collet - 1.0.55-2 - add patch for PHP 7.4 from https://github.com/thephpleague/flysystem/pull/1081 diff --git a/sources b/sources index 6cf4b3e..b635c7c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.0.55-33c9115.tgz) = cf9a5c0553cc14ec2c1cd524df552b6e5afa12cc2552bce4eb777577f13df9fc0431b23d2605e3f824b577cf4d9602f8fe60fe43b2049fe14e057cc4edb18613 +SHA512 (php-league-flysystem-1.0.56-90e3f83.tgz) = 32aa27f7874504d726aec969ab912e39dda3e6bdc1e2295b1dce78577f786a1fdd9818e8bf2d1504ca0f90fb0153f4278149030bdd52cdf0df8b52c7fa2b10ba From 10b8a53e95a7bca92cd6e129b2a99b7ea4065958 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 17 Oct 2019 10:01:01 +0200 Subject: [PATCH 37/60] v1.0.57 --- .gitignore | 1 + php-league-flysystem.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 33797b8..366bcc7 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ clog /php-league-flysystem-1.0.53-08e12b7.tgz /php-league-flysystem-1.0.55-33c9115.tgz /php-league-flysystem-1.0.56-90e3f83.tgz +/php-league-flysystem-1.0.57-0e9db7f.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index ce07b96..3df7a4a 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -7,7 +7,7 @@ # Please, preserve the changelog entries # # Github -%global gh_commit 90e3f83cb10ef6b058d70f95267030e7a6236518 +%global gh_commit 0e9db7f0b96b9f12dcf6f65bc34b72b1a30ea55a %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,7 +19,7 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.0.56 +Version: 1.0.57 Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API @@ -139,6 +139,9 @@ exit $ret %changelog +* Thu Oct 17 2019 Remi Collet - 1.0.57-1 +- update to 1.0.57 + * Sun Oct 13 2019 Remi Collet - 1.0.56-1 - update to 1.0.56 - drop patch merged upstream diff --git a/sources b/sources index b635c7c..b0c4f62 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.0.56-90e3f83.tgz) = 32aa27f7874504d726aec969ab912e39dda3e6bdc1e2295b1dce78577f786a1fdd9818e8bf2d1504ca0f90fb0153f4278149030bdd52cdf0df8b52c7fa2b10ba +SHA512 (php-league-flysystem-1.0.57-0e9db7f.tgz) = 26b487ebea48b8211c390e67aebff4577dcd3568ab195a50e64dd73b540fa6d414a3c7251663d8313859199f59447dfe6590805fa4c605fb05a8f100106cc292 From fe1dc42882badc1fd60c2c0ef50a2bb6e8190a09 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 9 Dec 2019 14:29:13 +0100 Subject: [PATCH 38/60] v1.0.61 --- .gitignore | 1 + php-league-flysystem.spec | 11 +++++++---- sources | 2 +- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 366bcc7..ab4cc98 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ clog /php-league-flysystem-1.0.55-33c9115.tgz /php-league-flysystem-1.0.56-90e3f83.tgz /php-league-flysystem-1.0.57-0e9db7f.tgz +/php-league-flysystem-1.0.61-4fb13c0.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index 3df7a4a..b248d29 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -7,7 +7,7 @@ # Please, preserve the changelog entries # # Github -%global gh_commit 0e9db7f0b96b9f12dcf6f65bc34b72b1a30ea55a +%global gh_commit 4fb13c01784a6c9f165a351e996871488ca2d8c9 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,7 +19,7 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.0.57 +Version: 1.0.61 Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API @@ -31,7 +31,7 @@ Source1: makesrc.sh BuildArch: noarch # As we use phpunit 6 and phpspec 5 -BuildRequires: php(language) >= 7.1 +BuildRequires: php(language) >= 7.2 BuildRequires: php-date BuildRequires: php-fileinfo BuildRequires: php-ftp @@ -117,7 +117,7 @@ else PHPSPEC=%{_bindir}/phpspec fi ret=0 -for cmd in php php71 php72 php73 php74; do +for cmd in php php72 php73 php74; do if which $cmd; then : Run upstream test suite $cmd $PHPSPEC run || ret=1 @@ -139,6 +139,9 @@ exit $ret %changelog +* Mon Dec 9 2019 Remi Collet - 1.0.61-1 +- update to 1.0.61 + * Thu Oct 17 2019 Remi Collet - 1.0.57-1 - update to 1.0.57 diff --git a/sources b/sources index b0c4f62..fb0ec31 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.0.57-0e9db7f.tgz) = 26b487ebea48b8211c390e67aebff4577dcd3568ab195a50e64dd73b540fa6d414a3c7251663d8313859199f59447dfe6590805fa4c605fb05a8f100106cc292 +SHA512 (php-league-flysystem-1.0.61-4fb13c0.tgz) = 619a3d150a5fd41079bfcbe3ee3b677cefb8c68b33c316dacab686ff1ee11a134a5016c4489921397503e805bb799ce4da971eaa678a35182bf8057395da937c From 6861086db8f045a5f6e08a535611ff5b6529ebce Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 6 Jan 2020 09:43:18 +0100 Subject: [PATCH 39/60] v1.0.63 --- .gitignore | 1 + php-league-flysystem.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index ab4cc98..1c4c09e 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ clog /php-league-flysystem-1.0.56-90e3f83.tgz /php-league-flysystem-1.0.57-0e9db7f.tgz /php-league-flysystem-1.0.61-4fb13c0.tgz +/php-league-flysystem-1.0.63-8132dae.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index b248d29..8e3ca04 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -7,7 +7,7 @@ # Please, preserve the changelog entries # # Github -%global gh_commit 4fb13c01784a6c9f165a351e996871488ca2d8c9 +%global gh_commit 8132daec326565036bc8e8d1876f77ec183a7bd6 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,7 +19,7 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.0.61 +Version: 1.0.63 Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API @@ -123,7 +123,7 @@ for cmd in php php72 php73 php74; do $cmd $PHPSPEC run || ret=1 $cmd %{_bindir}/phpunit6 \ --exclude-group integration \ - --filter '^((?!(testPathinfoHandlesUtf8)).)*$' \ + --filter '^((?!(testPathinfoHandlesUtf8|testStreamSizeForUrl|testListingFromUnixFormat)).)*$' \ --no-coverage --verbose || ret=1 fi done @@ -139,6 +139,9 @@ exit $ret %changelog +* Mon Jan 6 2020 Remi Collet - 1.0.63-1 +- update to 1.0.63 + * Mon Dec 9 2019 Remi Collet - 1.0.61-1 - update to 1.0.61 diff --git a/sources b/sources index fb0ec31..01186cb 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.0.61-4fb13c0.tgz) = 619a3d150a5fd41079bfcbe3ee3b677cefb8c68b33c316dacab686ff1ee11a134a5016c4489921397503e805bb799ce4da971eaa678a35182bf8057395da937c +SHA512 (php-league-flysystem-1.0.63-8132dae.tgz) = 07567ec7280c82a8b22c680ff29b0762fbd70c533f8284d888bb6bd2b7206d1ad17dea354d0211f92506c1153e21eea7c267a41e8488432d0dbb76aac025d8b6 From 09820a2eed40dce61e26e71ec384bd0e651d7914 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 30 Jan 2020 07:50:16 +0000 Subject: [PATCH 40/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-league-flysystem.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index 8e3ca04..f3a2635 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -20,7 +20,7 @@ Name: php-%{pk_vendor}-%{pk_name} Version: 1.0.63 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Filesystem abstraction: Many filesystems, one API License: MIT @@ -139,6 +139,9 @@ exit $ret %changelog +* Thu Jan 30 2020 Fedora Release Engineering - 1.0.63-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Mon Jan 6 2020 Remi Collet - 1.0.63-1 - update to 1.0.63 From d0e832dfca791d54070d059a2befb87fa7d54c69 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 6 Feb 2020 09:43:12 +0100 Subject: [PATCH 41/60] v1.0.64 --- .gitignore | 1 + php-league-flysystem.spec | 11 +++++++---- sources | 2 +- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 1c4c09e..ecda2b6 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ clog /php-league-flysystem-1.0.57-0e9db7f.tgz /php-league-flysystem-1.0.61-4fb13c0.tgz /php-league-flysystem-1.0.63-8132dae.tgz +/php-league-flysystem-1.0.64-d13c43d.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index f3a2635..5ad92d4 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -7,7 +7,7 @@ # Please, preserve the changelog entries # # Github -%global gh_commit 8132daec326565036bc8e8d1876f77ec183a7bd6 +%global gh_commit d13c43dbd4b791f815215959105a008515d1a2e0 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,8 +19,8 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.0.63 -Release: 2%{?dist} +Version: 1.0.64 +Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API License: MIT @@ -41,7 +41,7 @@ BuildRequires: php-pcre BuildRequires: php-spl # From composer.json, "require-dev": { # "phpspec/phpspec": "^3.4", -# "phpunit/phpunit": "^5.7.10" +# "phpunit/phpunit": "^5.7.26" BuildRequires: php-composer(phpspec/phpspec) >= 3.4 BuildRequires: phpunit6 # Autoloader @@ -139,6 +139,9 @@ exit $ret %changelog +* Thu Feb 6 2020 Remi Collet - 1.0.64-1 +- update to 1.0.64 + * Thu Jan 30 2020 Fedora Release Engineering - 1.0.63-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild diff --git a/sources b/sources index 01186cb..178480c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.0.63-8132dae.tgz) = 07567ec7280c82a8b22c680ff29b0762fbd70c533f8284d888bb6bd2b7206d1ad17dea354d0211f92506c1153e21eea7c267a41e8488432d0dbb76aac025d8b6 +SHA512 (php-league-flysystem-1.0.64-d13c43d.tgz) = 57fa94a6c5286673b66ba09ba5d5f693316425cd9fced7ccaebf4dd39e663f93a32df896a9244df26c9f22b65a386b2e610ec63a52377c65072562ea8397a0d1 From bd58f4649f0ccece3052054e7591183e2ada403c Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 9 Mar 2020 11:36:52 +0100 Subject: [PATCH 42/60] v1.0.65 --- .gitignore | 1 + php-league-flysystem.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index ecda2b6..a46fb4a 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ clog /php-league-flysystem-1.0.61-4fb13c0.tgz /php-league-flysystem-1.0.63-8132dae.tgz /php-league-flysystem-1.0.64-d13c43d.tgz +/php-league-flysystem-1.0.65-8f17b3b.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index 5ad92d4..0c70008 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -7,7 +7,7 @@ # Please, preserve the changelog entries # # Github -%global gh_commit d13c43dbd4b791f815215959105a008515d1a2e0 +%global gh_commit 8f17b3ba67097aafb8318cd5c553b1acf7c891c8 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,7 +19,7 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.0.64 +Version: 1.0.65 Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API @@ -139,6 +139,9 @@ exit $ret %changelog +* Mon Mar 9 2020 Remi Collet - 1.0.65-1 +- update to 1.0.65 + * Thu Feb 6 2020 Remi Collet - 1.0.64-1 - update to 1.0.64 diff --git a/sources b/sources index 178480c..83b97d8 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.0.64-d13c43d.tgz) = 57fa94a6c5286673b66ba09ba5d5f693316425cd9fced7ccaebf4dd39e663f93a32df896a9244df26c9f22b65a386b2e610ec63a52377c65072562ea8397a0d1 +SHA512 (php-league-flysystem-1.0.65-8f17b3b.tgz) = 921ee929d09a653f255b8749b68afa1006c695fc6264df8ba250b56ff3e27bdee6c260235da37da32dcbbe29a53482e0ead5f98dc2bdcb49e3d04a28b266a62f From 3eb748028b4064b1f8bf804c2f39bc0eaf61e88f Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 18 Mar 2020 08:18:52 +0100 Subject: [PATCH 43/60] v1.0.66 --- .gitignore | 1 + php-league-flysystem.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index a46fb4a..69f9b43 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ clog /php-league-flysystem-1.0.63-8132dae.tgz /php-league-flysystem-1.0.64-d13c43d.tgz /php-league-flysystem-1.0.65-8f17b3b.tgz +/php-league-flysystem-1.0.66-0215691.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index 0c70008..1465c19 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -7,7 +7,7 @@ # Please, preserve the changelog entries # # Github -%global gh_commit 8f17b3ba67097aafb8318cd5c553b1acf7c891c8 +%global gh_commit 021569195e15f8209b1c4bebb78bd66aa4f08c21 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,7 +19,7 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.0.65 +Version: 1.0.66 Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API @@ -139,6 +139,9 @@ exit $ret %changelog +* Wed Mar 18 2020 Remi Collet - 1.0.66-1 +- update to 1.0.66 + * Mon Mar 9 2020 Remi Collet - 1.0.65-1 - update to 1.0.65 diff --git a/sources b/sources index 83b97d8..a3b1517 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.0.65-8f17b3b.tgz) = 921ee929d09a653f255b8749b68afa1006c695fc6264df8ba250b56ff3e27bdee6c260235da37da32dcbbe29a53482e0ead5f98dc2bdcb49e3d04a28b266a62f +SHA512 (php-league-flysystem-1.0.66-0215691.tgz) = 9c8335ffdfe1db788ec300d85863eec472140876eb5cb7bd0c74834f7bf77842cbb94bef9f15c13d2773adc773e30cad18612e6caa79494767e74718d97187ea From e148e7f07e8db8b8c23a3d89ed92066321d02725 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jul 2020 21:29:39 +0000 Subject: [PATCH 44/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-league-flysystem.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index 1465c19..bf588c8 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -20,7 +20,7 @@ Name: php-%{pk_vendor}-%{pk_name} Version: 1.0.66 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Filesystem abstraction: Many filesystems, one API License: MIT @@ -139,6 +139,9 @@ exit $ret %changelog +* Tue Jul 28 2020 Fedora Release Engineering - 1.0.66-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Wed Mar 18 2020 Remi Collet - 1.0.66-1 - update to 1.0.66 From ef2709604808386a11423333aa2d2fa40b6550bf Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 28 Aug 2020 09:58:44 +0200 Subject: [PATCH 45/60] update to 1.1.3 raise dependency on PHP 7.2 add dependency on league/mime-type-detection switch to classmap autoloader switch to phpunit8 --- .gitignore | 1 + php-league-flysystem.spec | 73 +++++++++++++++++++-------------------- sources | 2 +- 3 files changed, 38 insertions(+), 38 deletions(-) diff --git a/.gitignore b/.gitignore index 69f9b43..63e863d 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ clog /php-league-flysystem-1.0.64-d13c43d.tgz /php-league-flysystem-1.0.65-8f17b3b.tgz /php-league-flysystem-1.0.66-0215691.tgz +/php-league-flysystem-1.1.3-9be3b16.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index bf588c8..098478a 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -1,13 +1,13 @@ # remirepo/fedora spec file for php-league-flysystem # -# Copyright (c) 2016-2019 Remi Collet +# Copyright (c) 2016-2020 Remi Collet # License: CC-BY-SA # http://creativecommons.org/licenses/by-sa/4.0/ # # Please, preserve the changelog entries # # Github -%global gh_commit 021569195e15f8209b1c4bebb78bd66aa4f08c21 +%global gh_commit 9be3b16c877d477357c015cec057548cf9b2a14a %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,8 +19,8 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.0.66 -Release: 2%{?dist} +Version: 1.1.3 +Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API License: MIT @@ -30,29 +30,30 @@ Source0: %{name}-%{version}-%{gh_short}.tgz Source1: makesrc.sh BuildArch: noarch -# As we use phpunit 6 and phpspec 5 BuildRequires: php(language) >= 7.2 -BuildRequires: php-date BuildRequires: php-fileinfo +BuildRequires: (php-composer(league/mime-type-detection) >= 1.3 with php-composer(league/mime-type-detection) < 2) +BuildRequires: php-date BuildRequires: php-ftp BuildRequires: php-hash BuildRequires: php-mbstring BuildRequires: php-pcre BuildRequires: php-spl # From composer.json, "require-dev": { -# "phpspec/phpspec": "^3.4", -# "phpunit/phpunit": "^5.7.26" -BuildRequires: php-composer(phpspec/phpspec) >= 3.4 -BuildRequires: phpunit6 +# "phpspec/prophecy": "^1.11.1", +# "phpunit/phpunit": "^8.5.8" +BuildRequires: phpunit8 >= 8.5.8 # Autoloader -BuildRequires: php-composer(fedora/autoloader) +BuildRequires: php-fedora-autoloader-devel # From composer.json, "require": { -# "php": ">=5.5.9", -# "ext-fileinfo": "*" -Requires: php(language) >= 5.5.9 +# "php": "^7.2.5 || ^8.0", +# "ext-fileinfo": "*", +# "league/mime-type-detection": "^1.3" +Requires: php(language) >= 7.2.5 Requires: php-fileinfo -# From phpcompatifo report for 1.0.49 +Requires: (php-composer(league/mime-type-detection) >= 1.3 with php-composer(league/mime-type-detection) < 2) +# From phpcompatifo report for 1.1.3 Requires: php-date Requires: php-ftp Requires: php-hash @@ -77,15 +78,18 @@ Autoloader: %{_datadir}/php/%{ns_vendor}/%{ns_project}/autoload.php %build -: Create autoloader -cat <<'AUTOLOAD' | tee src/autoload.php ->phpspec.yml - -PHPSPECVER=$(%{_bindir}/phpspec --version | sed 's/.* //;s/\..*//') -if [ "$PHPSPECVER" -lt 3 ] -then PHPSPEC=/dev/null -else PHPSPEC=%{_bindir}/phpspec -fi - ret=0 -for cmd in php php72 php73 php74; do +for cmd in php php72 php73 php74 php80; do if which $cmd; then : Run upstream test suite - $cmd $PHPSPEC run || ret=1 - $cmd %{_bindir}/phpunit6 \ + $cmd %{_bindir}/phpunit8 \ --exclude-group integration \ --filter '^((?!(testPathinfoHandlesUtf8|testStreamSizeForUrl|testListingFromUnixFormat)).)*$' \ --no-coverage --verbose || ret=1 @@ -135,10 +127,17 @@ exit $ret %license LICENSE %doc *.md %doc composer.json -%{_datadir}/php/%{ns_vendor} +%{_datadir}/php/%{ns_vendor}/%{ns_project} %changelog +* Mon Aug 24 2020 Remi Collet - 1.1.3-1 +- update to 1.1.3 +- raise dependency on PHP 7.2 +- add dependency on league/mime-type-detection +- switch to classmap autoloader +- switch to phpunit8 + * Tue Jul 28 2020 Fedora Release Engineering - 1.0.66-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild diff --git a/sources b/sources index a3b1517..a006c86 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.0.66-0215691.tgz) = 9c8335ffdfe1db788ec300d85863eec472140876eb5cb7bd0c74834f7bf77842cbb94bef9f15c13d2773adc773e30cad18612e6caa79494767e74718d97187ea +SHA512 (php-league-flysystem-1.1.3-9be3b16.tgz) = 3ea66c14b95593615b2e13f87e06bdebd439d739a997e61a4460e5eee30438455fc0f55a8139745d742b4bd977c20d1db8f5eb0ce76acd1d5d15f28db2e66b82 From e18834bfc772871a2f20215b0ec8293e83e603be Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 27 Jan 2021 07:08:07 +0000 Subject: [PATCH 46/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-league-flysystem.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index 098478a..b4ababd 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -20,7 +20,7 @@ Name: php-%{pk_vendor}-%{pk_name} Version: 1.1.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Filesystem abstraction: Many filesystems, one API License: MIT @@ -131,6 +131,9 @@ exit $ret %changelog +* Wed Jan 27 2021 Fedora Release Engineering - 1.1.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Mon Aug 24 2020 Remi Collet - 1.1.3-1 - update to 1.1.3 - raise dependency on PHP 7.2 From 920e632f5cb9ace30c771a8e523503c03f5e9eb1 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 25 Jun 2021 08:34:31 +0200 Subject: [PATCH 47/60] v1.1.4 --- .gitignore | 1 + php-league-flysystem.spec | 13 ++++++++----- sources | 2 +- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 63e863d..e919c5e 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,4 @@ clog /php-league-flysystem-1.0.65-8f17b3b.tgz /php-league-flysystem-1.0.66-0215691.tgz /php-league-flysystem-1.1.3-9be3b16.tgz +/php-league-flysystem-1.1.4-f3ad691.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index b4ababd..67a82cc 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -1,13 +1,13 @@ # remirepo/fedora spec file for php-league-flysystem # -# Copyright (c) 2016-2020 Remi Collet +# Copyright (c) 2016-2021 Remi Collet # License: CC-BY-SA # http://creativecommons.org/licenses/by-sa/4.0/ # # Please, preserve the changelog entries # # Github -%global gh_commit 9be3b16c877d477357c015cec057548cf9b2a14a +%global gh_commit f3ad69181b8afed2c9edf7be5a2918144ff4ea32 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,8 +19,8 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.1.3 -Release: 2%{?dist} +Version: 1.1.4 +Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API License: MIT @@ -110,7 +110,7 @@ require '%{buildroot}%{_datadir}/php/%{ns_vendor}/%{ns_project}/autoload.php'; EOF ret=0 -for cmd in php php72 php73 php74 php80; do +for cmd in php php73 php74 php80 php81; do if which $cmd; then : Run upstream test suite $cmd %{_bindir}/phpunit8 \ @@ -131,6 +131,9 @@ exit $ret %changelog +* Fri Jun 25 2021 Remi Collet - 1.1.4-1 +- update to 1.1.4 + * Wed Jan 27 2021 Fedora Release Engineering - 1.1.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild diff --git a/sources b/sources index a006c86..42526b0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.1.3-9be3b16.tgz) = 3ea66c14b95593615b2e13f87e06bdebd439d739a997e61a4460e5eee30438455fc0f55a8139745d742b4bd977c20d1db8f5eb0ce76acd1d5d15f28db2e66b82 +SHA512 (php-league-flysystem-1.1.4-f3ad691.tgz) = 49db5f05c326ea9d828fdb86a11950e928991f7089bd3b64a153b18e6718299b61b8a8eda453023652a9a1522ba5bd0bc919612913e33c0e2aa78c4af5f3e565 From a086dc72efdb53b48913056310bf2547290b09e3 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 23 Jul 2021 02:28:07 +0000 Subject: [PATCH 48/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-league-flysystem.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index 67a82cc..e417343 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -20,7 +20,7 @@ Name: php-%{pk_vendor}-%{pk_name} Version: 1.1.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Filesystem abstraction: Many filesystems, one API License: MIT @@ -131,6 +131,9 @@ exit $ret %changelog +* Fri Jul 23 2021 Fedora Release Engineering - 1.1.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Fri Jun 25 2021 Remi Collet - 1.1.4-1 - update to 1.1.4 From 03631444a74b9123cfcf1e9b992e3569f8a992ac Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 30 Nov 2021 08:26:24 +0100 Subject: [PATCH 49/60] v1.1.8 --- .gitignore | 1 + php-league-flysystem.spec | 13 ++++++++----- sources | 2 +- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index e919c5e..32057fe 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,4 @@ clog /php-league-flysystem-1.0.66-0215691.tgz /php-league-flysystem-1.1.3-9be3b16.tgz /php-league-flysystem-1.1.4-f3ad691.tgz +/php-league-flysystem-1.1.8-c995bb0.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index e417343..7ee1f5a 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -7,7 +7,7 @@ # Please, preserve the changelog entries # # Github -%global gh_commit f3ad69181b8afed2c9edf7be5a2918144ff4ea32 +%global gh_commit c995bb0c23c58c9813d081f9523c9b7bb496698e %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,8 +19,8 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.1.4 -Release: 2%{?dist} +Version: 1.1.8 +Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API License: MIT @@ -110,12 +110,12 @@ require '%{buildroot}%{_datadir}/php/%{ns_vendor}/%{ns_project}/autoload.php'; EOF ret=0 -for cmd in php php73 php74 php80 php81; do +for cmd in php php74 php80 php81; do if which $cmd; then : Run upstream test suite $cmd %{_bindir}/phpunit8 \ --exclude-group integration \ - --filter '^((?!(testPathinfoHandlesUtf8|testStreamSizeForUrl|testListingFromUnixFormat)).)*$' \ + --filter '^((?!(testPathinfoHandlesUtf8|testStreamSizeForUrl)).)*$' \ --no-coverage --verbose || ret=1 fi done @@ -131,6 +131,9 @@ exit $ret %changelog +* Tue Nov 30 2021 Remi Collet - 1.1.8-1 +- update to 1.1.8 + * Fri Jul 23 2021 Fedora Release Engineering - 1.1.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild diff --git a/sources b/sources index 42526b0..ece11c4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.1.4-f3ad691.tgz) = 49db5f05c326ea9d828fdb86a11950e928991f7089bd3b64a153b18e6718299b61b8a8eda453023652a9a1522ba5bd0bc919612913e33c0e2aa78c4af5f3e565 +SHA512 (php-league-flysystem-1.1.8-c995bb0.tgz) = 76e1b91aebebfd88ba257cd5c6977bd5c802235b27cb72a57c228c0c3d9ed3fc54c05129c959b077e9ea7ac38f763b84b680e51eb8039f5935c1cafe9bd4dff9 From a2d270644701be5054174ccc27e727aaaebc569f Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 5 Jan 2022 14:34:40 +0100 Subject: [PATCH 50/60] v1.1.9 --- .gitignore | 1 + php-league-flysystem.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 32057fe..3db311b 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,4 @@ clog /php-league-flysystem-1.1.3-9be3b16.tgz /php-league-flysystem-1.1.4-f3ad691.tgz /php-league-flysystem-1.1.8-c995bb0.tgz +/php-league-flysystem-1.1.9-094defd.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index 7ee1f5a..4517c38 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -1,13 +1,13 @@ # remirepo/fedora spec file for php-league-flysystem # -# Copyright (c) 2016-2021 Remi Collet +# Copyright (c) 2016-2022 Remi Collet # License: CC-BY-SA # http://creativecommons.org/licenses/by-sa/4.0/ # # Please, preserve the changelog entries # # Github -%global gh_commit c995bb0c23c58c9813d081f9523c9b7bb496698e +%global gh_commit 094defdb4a7001845300334e7c1ee2335925ef99 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,7 +19,7 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.1.8 +Version: 1.1.9 Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API @@ -131,6 +131,9 @@ exit $ret %changelog +* Wed Jan 5 2022 Remi Collet - 1.1.9-1 +- update to 1.1.9 + * Tue Nov 30 2021 Remi Collet - 1.1.8-1 - update to 1.1.8 diff --git a/sources b/sources index ece11c4..8e1d6c5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.1.8-c995bb0.tgz) = 76e1b91aebebfd88ba257cd5c6977bd5c802235b27cb72a57c228c0c3d9ed3fc54c05129c959b077e9ea7ac38f763b84b680e51eb8039f5935c1cafe9bd4dff9 +SHA512 (php-league-flysystem-1.1.9-094defd.tgz) = 258e29a99ba57066bed1293ac14a14030855ff077a3ffa86325f65692e24f43e585127df663c050b00813d01ba8b3510dbcb5c3ad018bd35592f5dcd1d6d7425 From 08ab8e5041babe20e86d84d69a890e7a087a8205 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 21 Jan 2022 07:51:02 +0000 Subject: [PATCH 51/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-league-flysystem.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index 4517c38..39a90ae 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -20,7 +20,7 @@ Name: php-%{pk_vendor}-%{pk_name} Version: 1.1.9 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Filesystem abstraction: Many filesystems, one API License: MIT @@ -131,6 +131,9 @@ exit $ret %changelog +* Fri Jan 21 2022 Fedora Release Engineering - 1.1.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Wed Jan 5 2022 Remi Collet - 1.1.9-1 - update to 1.1.9 From 680f5d97d787655f9df19adbd5357bcf9eb71f4d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 22 Jul 2022 13:44:23 +0000 Subject: [PATCH 52/60] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-league-flysystem.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index 39a90ae..77d7ce2 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -20,7 +20,7 @@ Name: php-%{pk_vendor}-%{pk_name} Version: 1.1.9 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Filesystem abstraction: Many filesystems, one API License: MIT @@ -131,6 +131,9 @@ exit $ret %changelog +* Fri Jul 22 2022 Fedora Release Engineering - 1.1.9-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Fri Jan 21 2022 Fedora Release Engineering - 1.1.9-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From 496eae1324c115a6abacea0f05053f3f15d3293f Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 14 Oct 2022 09:47:08 +0200 Subject: [PATCH 53/60] v1.1.10 --- .gitignore | 1 + php-league-flysystem.spec | 11 +++++++---- sources | 2 +- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 3db311b..7233795 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,4 @@ clog /php-league-flysystem-1.1.4-f3ad691.tgz /php-league-flysystem-1.1.8-c995bb0.tgz /php-league-flysystem-1.1.9-094defd.tgz +/php-league-flysystem-1.1.10-3239285.tgz diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index 77d7ce2..f5ede2e 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -7,7 +7,7 @@ # Please, preserve the changelog entries # # Github -%global gh_commit 094defdb4a7001845300334e7c1ee2335925ef99 +%global gh_commit 3239285c825c152bcc315fe0e87d6b55f5972ed1 %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner thephpleague %global gh_project flysystem @@ -19,8 +19,8 @@ %global ns_project Flysystem Name: php-%{pk_vendor}-%{pk_name} -Version: 1.1.9 -Release: 3%{?dist} +Version: 1.1.10 +Release: 1%{?dist} Summary: Filesystem abstraction: Many filesystems, one API License: MIT @@ -110,7 +110,7 @@ require '%{buildroot}%{_datadir}/php/%{ns_vendor}/%{ns_project}/autoload.php'; EOF ret=0 -for cmd in php php74 php80 php81; do +for cmd in php php74 php80 php81 php82; do if which $cmd; then : Run upstream test suite $cmd %{_bindir}/phpunit8 \ @@ -131,6 +131,9 @@ exit $ret %changelog +* Fri Oct 14 2022 Remi Collet - 1.1.10-1 +- update to 1.1.10 + * Fri Jul 22 2022 Fedora Release Engineering - 1.1.9-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild diff --git a/sources b/sources index 8e1d6c5..4e7af3d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (php-league-flysystem-1.1.9-094defd.tgz) = 258e29a99ba57066bed1293ac14a14030855ff077a3ffa86325f65692e24f43e585127df663c050b00813d01ba8b3510dbcb5c3ad018bd35592f5dcd1d6d7425 +SHA512 (php-league-flysystem-1.1.10-3239285.tgz) = 9dea98cdeca4ec54eb2be4ecf2c5dc92098d91c09024704c4db4a1e6eed60bc127f1f0b5d7176db21f2efe53a849a5bc9bd824ef7b769df4168236f943af92df From a506d72509682c88763d1e4d67950d464b55d83f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 20 Jan 2023 08:46:16 +0000 Subject: [PATCH 54/60] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-league-flysystem.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index f5ede2e..145796c 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -20,7 +20,7 @@ Name: php-%{pk_vendor}-%{pk_name} Version: 1.1.10 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Filesystem abstraction: Many filesystems, one API License: MIT @@ -131,6 +131,9 @@ exit $ret %changelog +* Fri Jan 20 2023 Fedora Release Engineering - 1.1.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Fri Oct 14 2022 Remi Collet - 1.1.10-1 - update to 1.1.10 From 4cc5bb89bd1e20f3bfa28328318d7e8965fbac19 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 21 Jul 2023 04:24:54 +0000 Subject: [PATCH 55/60] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- php-league-flysystem.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index 145796c..ffadcef 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -20,7 +20,7 @@ Name: php-%{pk_vendor}-%{pk_name} Version: 1.1.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Filesystem abstraction: Many filesystems, one API License: MIT @@ -131,6 +131,9 @@ exit $ret %changelog +* Fri Jul 21 2023 Fedora Release Engineering - 1.1.10-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Fri Jan 20 2023 Fedora Release Engineering - 1.1.10-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From d2240207b56a8d4d47544112178c9b06638a9cd5 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 21 Jan 2024 20:55:30 +0000 Subject: [PATCH 56/60] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- php-league-flysystem.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index ffadcef..4be34c0 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -20,7 +20,7 @@ Name: php-%{pk_vendor}-%{pk_name} Version: 1.1.10 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Filesystem abstraction: Many filesystems, one API License: MIT @@ -131,6 +131,9 @@ exit $ret %changelog +* Sun Jan 21 2024 Fedora Release Engineering - 1.1.10-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Fri Jul 21 2023 Fedora Release Engineering - 1.1.10-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild From 3c48d38c5b1228dc7e044104a8201073f5076393 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 25 Jan 2024 22:42:05 +0000 Subject: [PATCH 57/60] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- php-league-flysystem.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index 4be34c0..7fa0ad8 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -20,7 +20,7 @@ Name: php-%{pk_vendor}-%{pk_name} Version: 1.1.10 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Filesystem abstraction: Many filesystems, one API License: MIT @@ -131,6 +131,9 @@ exit $ret %changelog +* Thu Jan 25 2024 Fedora Release Engineering - 1.1.10-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Sun Jan 21 2024 Fedora Release Engineering - 1.1.10-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 6cf88dda63bd47cd4ac4a2b7dec3361a50efb6d1 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 19 Jul 2024 06:56:31 +0000 Subject: [PATCH 58/60] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- php-league-flysystem.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index 7fa0ad8..267da49 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -20,7 +20,7 @@ Name: php-%{pk_vendor}-%{pk_name} Version: 1.1.10 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Filesystem abstraction: Many filesystems, one API License: MIT @@ -131,6 +131,9 @@ exit $ret %changelog +* Fri Jul 19 2024 Fedora Release Engineering - 1.1.10-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Thu Jan 25 2024 Fedora Release Engineering - 1.1.10-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 81c049762d634fcfe711825f021077f9701887e1 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 18 Jan 2025 09:07:11 +0000 Subject: [PATCH 59/60] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- php-league-flysystem.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index 267da49..95031e7 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -20,7 +20,7 @@ Name: php-%{pk_vendor}-%{pk_name} Version: 1.1.10 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Filesystem abstraction: Many filesystems, one API License: MIT @@ -131,6 +131,9 @@ exit $ret %changelog +* Sat Jan 18 2025 Fedora Release Engineering - 1.1.10-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Fri Jul 19 2024 Fedora Release Engineering - 1.1.10-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From 58fb4e4303059ceca604b8985611a3d5bdd53dbb Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 25 Jul 2025 05:13:48 +0000 Subject: [PATCH 60/60] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- php-league-flysystem.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/php-league-flysystem.spec b/php-league-flysystem.spec index 95031e7..d1348b1 100644 --- a/php-league-flysystem.spec +++ b/php-league-flysystem.spec @@ -20,7 +20,7 @@ Name: php-%{pk_vendor}-%{pk_name} Version: 1.1.10 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Filesystem abstraction: Many filesystems, one API License: MIT @@ -131,6 +131,9 @@ exit $ret %changelog +* Fri Jul 25 2025 Fedora Release Engineering - 1.1.10-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Sat Jan 18 2025 Fedora Release Engineering - 1.1.10-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild