perl-io-async: Perl Module IO::Async

Asynchronous event-driven programming in Perl

Signed-off-by: Jens Wagner <jens@wagner2013.de>
This commit is contained in:
Jens Wagner
2025-05-20 09:45:43 +02:00
committed by Robert Marko
parent 62e5e1f82f
commit e74e9710bc
2 changed files with 66 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=perl-io-async
PKG_VERSION:=0.804
PKG_RELEASE:=1
PKG_SOURCE_NAME:=IO-Async
PKG_SOURCE_URL:=https://cpan.metacpan.org/authors/id/P/PE/PEVANS
PKG_SOURCE:=$(PKG_SOURCE_NAME)-$(PKG_VERSION).tar.gz
PKG_HASH:=90615432918164cd6f9e6dc2521195a4589606ffd017e03d5aa97f407d39c494
PKG_BUILD_DIR:=$(BUILD_DIR)/perl/$(PKG_SOURCE_NAME)-$(PKG_VERSION)
PKG_MAINTAINER:=Jens Wagner <jens@wagner2013.de>
PKG_LICENSE:=GPL-1.0-or-later Artistic-1.0-Perl
PKG_LICENSE_FILES:=LICENSE
include $(INCLUDE_DIR)/package.mk
include ../perl/perlmod.mk
define Package/perl-io-async
SUBMENU:=Perl
SECTION:=lang
CATEGORY:=Languages
TITLE:=Asynchronous event-driven programming for Perl
URL:=https://metacpan.org/pod/Net::SSLeay
DEPENDS:=perl +perlbase-essential +perlbase-file +perlbase-io +perlbase-list +perlbase-socket +perlbase-storable +perlbase-time +perlbase-encode +perlbase-experimental +perl-future +perl-struct-dumb
endef
define Build/Configure
$(call perlmod/Configure,,)
endef
define Build/Compile
$(call perlmod/Compile,,)
endef
define Package/perl-io-async/install
$(call perlmod/Install,$(1),IO Future)
endef
$(eval $(call BuildPackage,perl-io-async))

View File

@@ -0,0 +1,24 @@
require 5.014;
use ExtUtils::MakeMaker;
WriteMakefile
(
'NAME' => 'IO::Async',
'VERSION_FROM' => 'lib/IO/Async.pm',
'PREREQ_PM' => {
'Future' => '0.44',
'Future::Utils' => '0.18',
'Exporter' => '5.57',
'File::stat' => 0,
'IO::Poll' => 0,
'List::Util' => 0,
'Socket' => '2.007',
'Storable' => 0,
'Struct::Dumb' => 0,
'Time::HiRes' => 0,
},
'INSTALLDIRS' => 'site',
'EXE_FILES' => [],
'PL_FILES' => {}
)
;