2015-05-05 16:10:53 +00:00
|
|
|
#
|
|
|
|
# spec file for package perl-IO-AIO
|
|
|
|
#
|
2024-03-08 10:04:10 +00:00
|
|
|
# Copyright (c) 2024 SUSE LLC
|
2015-05-05 16:10:53 +00:00
|
|
|
#
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2018-10-09 07:03:56 +00:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2015-05-05 16:10:53 +00:00
|
|
|
#
|
|
|
|
|
2010-12-22 15:35:31 +00:00
|
|
|
|
2021-08-31 09:33:17 +00:00
|
|
|
%define cpan_name IO-AIO
|
2010-12-22 15:35:31 +00:00
|
|
|
Name: perl-IO-AIO
|
2024-03-08 10:04:10 +00:00
|
|
|
Version: 4.810.0
|
2010-12-22 15:35:31 +00:00
|
|
|
Release: 0
|
2024-03-08 10:04:10 +00:00
|
|
|
%define cpan_version 4.81
|
2021-08-31 09:33:17 +00:00
|
|
|
#Upstream: CHECK(Artistic-1.0 or GPL-1.0-or-later)
|
2020-10-15 13:48:28 +00:00
|
|
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
2021-08-31 09:33:17 +00:00
|
|
|
Summary: Asynchronous/Advanced Input/Output
|
|
|
|
URL: https://metacpan.org/release/%{cpan_name}
|
2024-03-08 10:04:10 +00:00
|
|
|
Source0: https://cpan.metacpan.org/authors/id/M/ML/MLEHMANN/%{cpan_name}-%{cpan_version}.tar.gz
|
2018-10-09 07:03:56 +00:00
|
|
|
Source1: cpanspec.yml
|
2025-08-12 18:14:47 +02:00
|
|
|
Source100: README.md
|
2015-05-05 16:10:53 +00:00
|
|
|
BuildRequires: perl
|
2018-10-09 07:03:56 +00:00
|
|
|
BuildRequires: perl-macros
|
|
|
|
BuildRequires: perl(Canary::Stability) >= 2001
|
2022-09-08 19:45:31 +00:00
|
|
|
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.52
|
2010-12-22 15:35:31 +00:00
|
|
|
BuildRequires: perl(common::sense)
|
|
|
|
Requires: perl(common::sense)
|
2024-03-08 10:04:10 +00:00
|
|
|
Provides: perl(IO::AIO) = %{version}
|
2024-03-08 22:33:42 +00:00
|
|
|
%undefine __perllib_provides
|
2018-10-09 07:03:56 +00:00
|
|
|
%{perl_requires}
|
2010-12-22 15:35:31 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
This module implements asynchronous I/O using whatever means your operating
|
2018-10-09 07:03:56 +00:00
|
|
|
system supports. It is implemented as an interface to 'libeio'
|
2010-12-22 15:35:31 +00:00
|
|
|
(http://software.schmorp.de/pkg/libeio.html).
|
|
|
|
|
2018-10-09 07:03:56 +00:00
|
|
|
Asynchronous means that operations that can normally block your program
|
|
|
|
(e.g. reading from disk) will be done asynchronously: the operation will
|
|
|
|
still block, but you can do something else in the meantime. This is
|
|
|
|
extremely useful for programs that need to stay interactive even when doing
|
|
|
|
heavy I/O (GUI programs, high performance network servers etc.), but can
|
|
|
|
also be used to easily do operations in parallel that are normally done
|
|
|
|
sequentially, e.g. stat'ing many files, which is much faster on a RAID
|
|
|
|
volume or over NFS when you do a number of stat operations concurrently.
|
2010-12-22 15:35:31 +00:00
|
|
|
|
|
|
|
While most of this works on all types of file descriptors (for example
|
2018-10-09 07:03:56 +00:00
|
|
|
sockets), using these functions on file descriptors that support
|
|
|
|
nonblocking operation (again, sockets, pipes etc.) is very inefficient. Use
|
|
|
|
an event loop for that (such as the EV module): IO::AIO will naturally fit
|
|
|
|
into such an event loop itself.
|
|
|
|
|
|
|
|
In this version, a number of threads are started that execute your requests
|
|
|
|
and signal their completion. You don't need thread support in perl, and the
|
|
|
|
threads created by this module will not be visible to perl. In the future,
|
|
|
|
this module might make use of the native aio functions available on many
|
|
|
|
operating systems. However, they are often not well-supported or restricted
|
|
|
|
(GNU/Linux doesn't allow them on normal files currently, for example), and
|
|
|
|
they would only support aio_read and aio_write, so the remaining
|
|
|
|
functionality would have to be implemented using threads anyway.
|
|
|
|
|
|
|
|
In addition to asynchronous I/O, this module also exports some rather
|
|
|
|
arcane interfaces, such as 'madvise' or linux's 'splice' system call, which
|
|
|
|
is why the 'A' in 'AIO' can also mean _advanced_.
|
|
|
|
|
|
|
|
Although the module will work in the presence of other (Perl-) threads, it
|
|
|
|
is currently not reentrant in any way, so use appropriate locking yourself,
|
|
|
|
always call 'poll_cb' from within the same thread, or never call 'poll_cb'
|
|
|
|
(or other 'aio_' functions) recursively.
|
2010-12-22 15:35:31 +00:00
|
|
|
|
|
|
|
%prep
|
2024-03-08 10:04:10 +00:00
|
|
|
%autosetup -n %{cpan_name}-%{cpan_version}
|
2023-05-09 12:10:41 +00:00
|
|
|
|
2024-03-08 10:04:10 +00:00
|
|
|
find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path "*/script/*" ! -path "*/scripts/*" ! -name "configure" -print0 | xargs -0 chmod 644
|
2010-12-22 15:35:31 +00:00
|
|
|
|
|
|
|
%build
|
2018-10-09 07:03:56 +00:00
|
|
|
perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
|
2021-08-31 09:33:17 +00:00
|
|
|
%make_build
|
2010-12-22 15:35:31 +00:00
|
|
|
|
2018-10-09 07:03:56 +00:00
|
|
|
%check
|
|
|
|
make test
|
|
|
|
|
2010-12-22 15:35:31 +00:00
|
|
|
%install
|
|
|
|
%perl_make_install
|
|
|
|
%perl_process_packlist
|
2018-10-09 07:03:56 +00:00
|
|
|
%perl_gen_filelist
|
2010-12-22 15:35:31 +00:00
|
|
|
|
2018-10-09 07:03:56 +00:00
|
|
|
%files -f %{name}.files
|
|
|
|
%doc Changes README
|
|
|
|
%license COPYING
|
|
|
|
%exclude %{_bindir}/treescan
|
2010-12-22 15:35:31 +00:00
|
|
|
|
2021-08-31 09:33:17 +00:00
|
|
|
%package -n treescan-aio
|
|
|
|
Summary: File Tree Scanner that uses Asynchronous I/O
|
|
|
|
Group: System/Base
|
|
|
|
Requires: perl(IO::AIO) = %{version}
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
%description -n treescan-aio
|
|
|
|
Scans a tree of files for changes, using AIO (Asynchronous I/O).
|
|
|
|
|
2010-12-22 15:35:31 +00:00
|
|
|
%files -n treescan-aio
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{_bindir}/treescan
|
|
|
|
|
2015-05-05 16:10:53 +00:00
|
|
|
%changelog
|