SHA256
8
0
forked from pool/perl-Future

Compare commits

4 Commits

Author SHA256 Message Date
cb8437063d Accepting request 1294557 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/1294557
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Future?expand=0&rev=20
2025-07-21 18:00:13 +00:00
7a4cc419a2 - updated to 0.520.0 (0.52)
see /usr/share/doc/packages/perl-Future/Changes
  0.52    2025-07-11
          [CHANGES]
           * Expose `Test::Future::Deferred->flush` as a method for test scripts
           * Include constructed-at message in debug warnings

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Future?expand=0&rev=43
2025-07-20 05:24:50 +00:00
faea90ac97 Accepting request 1236269 from devel:languages:perl
OBS-URL: https://build.opensuse.org/request/show/1236269
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Future?expand=0&rev=19
2025-01-12 10:14:58 +00:00
835cbf03a8 - updated to 0.510.0 (0.51)
see /usr/share/doc/packages/perl-Future/Changes
  0.51    2024-10-21
          [CHANGES]
           * Permit convergent futures to not cancel some component futures,
             simplifying the use of `->without_cancel`
           * Give a more obvious error message when a `Test::Future::Deferred`
             runs out of things to do
           * Various small module style updates to documentation, unit tests,
             etc
           * Now requires Perl version 5.14 or later

OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Future?expand=0&rev=41
2025-01-09 16:24:14 +00:00
4 changed files with 50 additions and 11 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c035e3d9e69a3af144b33ac834dee9e65ad360f2a51db9f158dc342ecddd5f44
size 101758

3
Future-0.52.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:96765561271ee3285be3641c043a8bb262d341a564355352d37ed9512e6ea1eb
size 105923

View File

@@ -1,3 +1,30 @@
-------------------------------------------------------------------
Sat Jul 12 05:35:08 UTC 2025 - Tina Müller <timueller+perl@suse.de>
- updated to 0.520.0 (0.52)
see /usr/share/doc/packages/perl-Future/Changes
0.52 2025-07-11
[CHANGES]
* Expose `Test::Future::Deferred->flush` as a method for test scripts
* Include constructed-at message in debug warnings
-------------------------------------------------------------------
Tue Oct 22 05:33:40 UTC 2024 - Tina Müller <timueller+perl@suse.de>
- updated to 0.510.0 (0.51)
see /usr/share/doc/packages/perl-Future/Changes
0.51 2024-10-21
[CHANGES]
* Permit convergent futures to not cancel some component futures,
simplifying the use of `->without_cancel`
* Give a more obvious error message when a `Test::Future::Deferred`
runs out of things to do
* Various small module style updates to documentation, unit tests,
etc
* Now requires Perl version 5.14 or later
-------------------------------------------------------------------
Sat Mar 18 03:06:18 UTC 2023 - Tina Müller <timueller+perl@suse.de>

View File

@@ -1,7 +1,7 @@
#
# spec file for package perl-Future
#
# Copyright (c) 2023 SUSE LLC
# Copyright (c) 2025 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,20 +18,32 @@
%define cpan_name Future
Name: perl-Future
Version: 0.50
Version: 0.520.0
Release: 0
# 0.52 -> normalize -> 0.520.0
%define cpan_version 0.52
License: Artistic-1.0 OR GPL-1.0-or-later
Summary: Represent an operation awaiting completion
URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/P/PE/PEVANS/%{cpan_name}-%{version}.tar.gz
Source0: https://cpan.metacpan.org/authors/id/P/PE/PEVANS/%{cpan_name}-%{cpan_version}.tar.gz
Source1: cpanspec.yml
BuildArch: noarch
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(Carp) >= 1.25
BuildRequires: perl(Module::Build) >= 0.400400
BuildRequires: perl(List::Util) >= 1.29
BuildRequires: perl(Module::Build) >= 0.400.400
BuildRequires: perl(Test2::V0) >= 0.000148
Requires: perl(Carp) >= 1.25
Requires: perl(List::Util) >= 1.29
Provides: perl(Future) = %{version}
Provides: perl(Future::Exception) = %{version}
Provides: perl(Future::Mutex) = %{version}
Provides: perl(Future::PP) = %{version}
Provides: perl(Future::Utils) = %{version}
Provides: perl(Test::Future) = %{version}
Provides: perl(Test::Future::Deferred) = %{version}
%undefine __perllib_provides
%{perl_requires}
%description
@@ -70,17 +82,17 @@ Unless otherwise noted, the following methods require at least version
_0.08_.
%prep
%autosetup -n %{cpan_name}-%{version}
%autosetup -n %{cpan_name}-%{cpan_version} -p1
%build
perl Build.PL installdirs=vendor
./Build build flags=%{?_smp_mflags}
perl Build.PL --installdirs=vendor
./Build build --flags=%{?_smp_mflags}
%check
./Build test
%install
./Build install destdir=%{buildroot} create_packlist=0
./Build install --destdir=%{buildroot} --create_packlist=0
%perl_gen_filelist
%files -f %{name}.files