git: a4aa52f32fd1 - main - devel/rubygem-io-endpoint: Add rubygem-io-endpoint 0.10.3
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 19 May 2024 17:23:25 UTC
The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=a4aa52f32fd11ef437de85eaa55657d118fd73a9 commit a4aa52f32fd11ef437de85eaa55657d118fd73a9 Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org> AuthorDate: 2024-05-19 15:45:36 +0000 Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org> CommitDate: 2024-05-19 17:15:01 +0000 devel/rubygem-io-endpoint: Add rubygem-io-endpoint 0.10.3 IO::Endpoint provides a separation of concerns interface for IO endpoints. This allows you to write code which is agnostic to the underlying IO implementation. --- devel/Makefile | 1 + devel/rubygem-io-endpoint/Makefile | 18 ++++++++++++++++++ devel/rubygem-io-endpoint/distinfo | 3 +++ devel/rubygem-io-endpoint/pkg-descr | 2 ++ 4 files changed, 24 insertions(+) diff --git a/devel/Makefile b/devel/Makefile index 3015c8fcfcad..b6f71b86877c 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -7155,6 +7155,7 @@ SUBDIR += rubygem-instance_storage SUBDIR += rubygem-interact SUBDIR += rubygem-io-console + SUBDIR += rubygem-io-endpoint SUBDIR += rubygem-io-event SUBDIR += rubygem-io-like SUBDIR += rubygem-io-nonblock diff --git a/devel/rubygem-io-endpoint/Makefile b/devel/rubygem-io-endpoint/Makefile new file mode 100644 index 000000000000..bba6cf973d57 --- /dev/null +++ b/devel/rubygem-io-endpoint/Makefile @@ -0,0 +1,18 @@ +PORTNAME= io-endpoint +PORTVERSION= 0.10.3 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Provide a separation of concerns interface for IO endpoints +WWW= https://socketry.github.io/io-endpoint/ \ + https://github.com/socketry/io-endpoint + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/license.md + +USES= gem + +NO_ARCH= yes + +.include <bsd.port.mk> diff --git a/devel/rubygem-io-endpoint/distinfo b/devel/rubygem-io-endpoint/distinfo new file mode 100644 index 000000000000..964b442b4ecf --- /dev/null +++ b/devel/rubygem-io-endpoint/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1715842494 +SHA256 (rubygem/io-endpoint-0.10.3.gem) = 2c9a469cfd600e6e69996b37108941bb1921fe753bcc1c5127fd090fb7297ea5 +SIZE (rubygem/io-endpoint-0.10.3.gem) = 15872 diff --git a/devel/rubygem-io-endpoint/pkg-descr b/devel/rubygem-io-endpoint/pkg-descr new file mode 100644 index 000000000000..bff07e816ead --- /dev/null +++ b/devel/rubygem-io-endpoint/pkg-descr @@ -0,0 +1,2 @@ +IO::Endpoint provides a separation of concerns interface for IO endpoints. This +allows you to write code which is agnostic to the underlying IO implementation.