git: e49d227c08c6 - main - devel/rubygem-fiber-annotation: Add rubygem-fiber-annotation 0.2.0

From: Po-Chuan Hsieh <sunpoet_at_FreeBSD.org>
Date: Fri, 30 Jun 2023 07:17:59 UTC
The branch main has been updated by sunpoet:

URL: https://cgit.FreeBSD.org/ports/commit/?id=e49d227c08c6072982c583855bd21a5bf8b81ed3

commit e49d227c08c6072982c583855bd21a5bf8b81ed3
Author:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2023-06-30 06:59:41 +0000
Commit:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2023-06-30 06:59:41 +0000

    devel/rubygem-fiber-annotation: Add rubygem-fiber-annotation 0.2.0
    
    Fiber::Annotation provides a simple way to annotate what a fiber is currently
    doing, useful for debugging, logging and tracing.
---
 devel/Makefile                           |  1 +
 devel/rubygem-fiber-annotation/Makefile  | 17 +++++++++++++++++
 devel/rubygem-fiber-annotation/distinfo  |  3 +++
 devel/rubygem-fiber-annotation/pkg-descr |  2 ++
 4 files changed, 23 insertions(+)

diff --git a/devel/Makefile b/devel/Makefile
index 3925ede117f8..923241990d54 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -6755,6 +6755,7 @@
     SUBDIR += rubygem-ffi-libarchive
     SUBDIR += rubygem-ffi-win32-extensions
     SUBDIR += rubygem-ffi-yajl
+    SUBDIR += rubygem-fiber-annotation
     SUBDIR += rubygem-fiber-local
     SUBDIR += rubygem-fiddle
     SUBDIR += rubygem-file-tail
diff --git a/devel/rubygem-fiber-annotation/Makefile b/devel/rubygem-fiber-annotation/Makefile
new file mode 100644
index 000000000000..081ee479dc47
--- /dev/null
+++ b/devel/rubygem-fiber-annotation/Makefile
@@ -0,0 +1,17 @@
+PORTNAME=	fiber-annotation
+PORTVERSION=	0.2.0
+CATEGORIES=	devel rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	Mechanism for annotating fibers
+WWW=		https://github.com/ioquatix/fiber-annotation
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/license.md
+
+USES=		gem
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>
diff --git a/devel/rubygem-fiber-annotation/distinfo b/devel/rubygem-fiber-annotation/distinfo
new file mode 100644
index 000000000000..d0b54cbaea45
--- /dev/null
+++ b/devel/rubygem-fiber-annotation/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1686496674
+SHA256 (rubygem/fiber-annotation-0.2.0.gem) = 7abfadf1d119f508867d4103bf231c0354d019cc39a5738945dec2edadaf6c03
+SIZE (rubygem/fiber-annotation-0.2.0.gem) = 10240
diff --git a/devel/rubygem-fiber-annotation/pkg-descr b/devel/rubygem-fiber-annotation/pkg-descr
new file mode 100644
index 000000000000..32bd56a9f806
--- /dev/null
+++ b/devel/rubygem-fiber-annotation/pkg-descr
@@ -0,0 +1,2 @@
+Fiber::Annotation provides a simple way to annotate what a fiber is currently
+doing, useful for debugging, logging and tracing.