git: 2490688ccc7c - main - databases/rubygem-activemodel71: Add rubygem-activemodel71 7.1.1

From: Po-Chuan Hsieh <sunpoet_at_FreeBSD.org>
Date: Wed, 01 Nov 2023 07:59:09 UTC
The branch main has been updated by sunpoet:

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

commit 2490688ccc7c5064768ef116ca1e8eb650546434
Author:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2023-11-01 07:55:59 +0000
Commit:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2023-11-01 07:55:59 +0000

    databases/rubygem-activemodel71: Add rubygem-activemodel71 7.1.1
    
    Active Model provides a known set of interfaces for usage in model classes. They
    allow for Action Pack helpers to interact with non-Active Record models, for
    example. Active Model also helps with building custom ORMs for use outside of
    the Rails framework.
    
    Active Model provides a default module that implements the basic API required to
    integrate with Action Pack out of the box: ActiveModel::API.
---
 databases/Makefile                        |  1 +
 databases/rubygem-activemodel71/Makefile  | 23 +++++++++++++++++++++++
 databases/rubygem-activemodel71/distinfo  |  3 +++
 databases/rubygem-activemodel71/pkg-descr |  7 +++++++
 4 files changed, 34 insertions(+)

diff --git a/databases/Makefile b/databases/Makefile
index 849537995abb..209abee417cc 100644
--- a/databases/Makefile
+++ b/databases/Makefile
@@ -903,6 +903,7 @@
     SUBDIR += rubygem-activemodel60
     SUBDIR += rubygem-activemodel61
     SUBDIR += rubygem-activemodel70
+    SUBDIR += rubygem-activemodel71
     SUBDIR += rubygem-activerecord-explain-analyze
     SUBDIR += rubygem-activerecord-import
     SUBDIR += rubygem-activerecord-jdbc-adapter
diff --git a/databases/rubygem-activemodel71/Makefile b/databases/rubygem-activemodel71/Makefile
new file mode 100644
index 000000000000..16d23d8a1453
--- /dev/null
+++ b/databases/rubygem-activemodel71/Makefile
@@ -0,0 +1,23 @@
+PORTNAME=	activemodel
+PORTVERSION=	7.1.1
+CATEGORIES=	databases rubygems
+MASTER_SITES=	RG
+PKGNAMESUFFIX=	71
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	Toolkit for building modeling frameworks like Active Record
+WWW=		https://github.com/rails/rails/tree/main/activemodel \
+		https://rubyonrails.org/
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/MIT-LICENSE
+
+RUN_DEPENDS=	rubygem-activesupport71>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport71
+
+USES=		gem
+
+NO_ARCH=	yes
+
+PORTSCOUT=	limit:^7\.1\.
+
+.include <bsd.port.mk>
diff --git a/databases/rubygem-activemodel71/distinfo b/databases/rubygem-activemodel71/distinfo
new file mode 100644
index 000000000000..798899d69b20
--- /dev/null
+++ b/databases/rubygem-activemodel71/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1697330168
+SHA256 (rubygem/activemodel-7.1.1.gem) = 1f2fd3c2136b111fe523cf80ee5c141990290e8aedacb866b6fd68c8dfd7a69a
+SIZE (rubygem/activemodel-7.1.1.gem) = 68608
diff --git a/databases/rubygem-activemodel71/pkg-descr b/databases/rubygem-activemodel71/pkg-descr
new file mode 100644
index 000000000000..9e0e982e3352
--- /dev/null
+++ b/databases/rubygem-activemodel71/pkg-descr
@@ -0,0 +1,7 @@
+Active Model provides a known set of interfaces for usage in model classes. They
+allow for Action Pack helpers to interact with non-Active Record models, for
+example. Active Model also helps with building custom ORMs for use outside of
+the Rails framework.
+
+Active Model provides a default module that implements the basic API required to
+integrate with Action Pack out of the box: ActiveModel::API.