Compare commits
5 Commits
Author | SHA256 | Date | |
---|---|---|---|
f1120297d6 | |||
1346ac8e5a | |||
10cb20e82c | |||
ecba448aa0 | |||
d7489dbec9 |
@@ -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
3
Future-0.52.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:96765561271ee3285be3641c043a8bb262d341a564355352d37ed9512e6ea1eb
|
||||
size 105923
|
12
README.md
Normal file
12
README.md
Normal file
@@ -0,0 +1,12 @@
|
||||
|
||||
## Build Results
|
||||
|
||||
Current state of perl in openSUSE:Factory is
|
||||
|
||||

|
||||
|
||||
The current state of perl in the devel project build (devel:languages:perl)
|
||||
|
||||

|
||||
|
||||
|
@@ -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>
|
||||
|
||||
|
@@ -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,33 @@
|
||||
|
||||
%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
|
||||
Source100: README.md
|
||||
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 +83,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
|
||||
|
Reference in New Issue
Block a user