Compare commits
3 Commits
Author | SHA256 | Date | |
---|---|---|---|
19409e1ddc | |||
962bcaa668 | |||
070753d78a |
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:dc94ec92296db27fede6c37bba8b9c748c571000db8e61f794198981973c97ce
|
|
||||||
size 253714
|
|
3
IO-Async-0.804.tar.gz
Normal file
3
IO-Async-0.804.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:90615432918164cd6f9e6dc2521195a4589606ffd017e03d5aa97f407d39c494
|
||||||
|
size 253954
|
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,16 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Apr 23 05:34:12 UTC 2025 - Tina Müller <timueller+perl@suse.de>
|
||||||
|
|
||||||
|
- updated to 0.804.0 (0.804)
|
||||||
|
see /usr/share/doc/packages/perl-IO-Async/Changes
|
||||||
|
|
||||||
|
0.804 2025-04-22
|
||||||
|
[CHANGES]
|
||||||
|
* Add extra LoopTests tests for IO and timer operation after a
|
||||||
|
->post_fork call, in order to help test RT152635
|
||||||
|
* Remove duplicate `use VERSION` declaration from helper package in
|
||||||
|
TimeQueue.pm
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Mar 8 22:33:46 UTC 2024 - Tina Müller <tina.mueller@suse.com>
|
Fri Mar 8 22:33:46 UTC 2024 - Tina Müller <tina.mueller@suse.com>
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-IO-Async
|
# spec file for package perl-IO-Async
|
||||||
#
|
#
|
||||||
# Copyright (c) 2024 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -18,27 +18,29 @@
|
|||||||
|
|
||||||
%define cpan_name IO-Async
|
%define cpan_name IO-Async
|
||||||
Name: perl-IO-Async
|
Name: perl-IO-Async
|
||||||
Version: 0.803.0
|
Version: 0.804.0
|
||||||
Release: 0
|
Release: 0
|
||||||
%define cpan_version 0.803
|
# 0.804 -> normalize -> 0.804.0
|
||||||
|
%define cpan_version 0.804
|
||||||
License: Artistic-1.0 OR GPL-1.0-or-later
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
||||||
Summary: Asynchronous event-driven programming
|
Summary: Asynchronous event-driven programming
|
||||||
URL: https://metacpan.org/release/%{cpan_name}
|
URL: https://metacpan.org/release/%{cpan_name}
|
||||||
Source0: https://cpan.metacpan.org/authors/id/P/PE/PEVANS/%{cpan_name}-%{cpan_version}.tar.gz
|
Source0: https://cpan.metacpan.org/authors/id/P/PE/PEVANS/%{cpan_name}-%{cpan_version}.tar.gz
|
||||||
Source1: cpanspec.yml
|
Source1: cpanspec.yml
|
||||||
|
Source100: README.md
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRequires: perl
|
BuildRequires: perl
|
||||||
BuildRequires: perl-macros
|
BuildRequires: perl-macros
|
||||||
BuildRequires: perl(Future) >= 0.44
|
BuildRequires: perl(Future) >= 0.440
|
||||||
BuildRequires: perl(Future::Utils) >= 0.18
|
BuildRequires: perl(Future::Utils) >= 0.180
|
||||||
BuildRequires: perl(Module::Build) >= 0.4004
|
BuildRequires: perl(Module::Build) >= 0.4004
|
||||||
BuildRequires: perl(Socket) >= 2.007
|
BuildRequires: perl(Socket) >= 2.007
|
||||||
BuildRequires: perl(Struct::Dumb)
|
BuildRequires: perl(Struct::Dumb)
|
||||||
BuildRequires: perl(Test2::V0) >= 0.000149
|
BuildRequires: perl(Test2::V0) >= 0.000149
|
||||||
BuildRequires: perl(Test::Future::IO::Impl)
|
BuildRequires: perl(Test::Future::IO::Impl)
|
||||||
BuildRequires: perl(Test::Metrics::Any)
|
BuildRequires: perl(Test::Metrics::Any)
|
||||||
Requires: perl(Future) >= 0.44
|
Requires: perl(Future) >= 0.440
|
||||||
Requires: perl(Future::Utils) >= 0.18
|
Requires: perl(Future::Utils) >= 0.180
|
||||||
Requires: perl(Socket) >= 2.007
|
Requires: perl(Socket) >= 2.007
|
||||||
Requires: perl(Struct::Dumb)
|
Requires: perl(Struct::Dumb)
|
||||||
Provides: perl(Future::IO::Impl::IOAsync) = %{version}
|
Provides: perl(Future::IO::Impl::IOAsync) = %{version}
|
||||||
@@ -95,7 +97,7 @@ well as IO handles, the loop also supports timers and signal handlers, and
|
|||||||
includes more higher-level functionality built on top of these basic parts.
|
includes more higher-level functionality built on top of these basic parts.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -n %{cpan_name}-%{cpan_version}
|
%autosetup -n %{cpan_name}-%{cpan_version} -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
perl Build.PL --installdirs=vendor
|
perl Build.PL --installdirs=vendor
|
||||||
|
Reference in New Issue
Block a user