git: ddbf1a748991 - main - databases/rubygem-activemodel80: Add rubygem-activemodel80 8.0.1
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 02 Jan 2025 16:30:12 UTC
The branch main has been updated by sunpoet:
URL: https://cgit.FreeBSD.org/ports/commit/?id=ddbf1a748991c9e9eb026ce3333b9d1f4cdabf31
commit ddbf1a748991c9e9eb026ce3333b9d1f4cdabf31
Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2025-01-02 16:27:58 +0000
Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2025-01-02 16:27:58 +0000
databases/rubygem-activemodel80: Add rubygem-activemodel80 8.0.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-activemodel80/Makefile | 23 +++++++++++++++++++++++
databases/rubygem-activemodel80/distinfo | 3 +++
databases/rubygem-activemodel80/pkg-descr | 7 +++++++
4 files changed, 34 insertions(+)
diff --git a/databases/Makefile b/databases/Makefile
index c842f225c8c3..0b697e598557 100644
--- a/databases/Makefile
+++ b/databases/Makefile
@@ -906,6 +906,7 @@
SUBDIR += rubygem-activemodel70
SUBDIR += rubygem-activemodel71
SUBDIR += rubygem-activemodel72
+ SUBDIR += rubygem-activemodel80
SUBDIR += rubygem-activerecord-explain-analyze
SUBDIR += rubygem-activerecord-import
SUBDIR += rubygem-activerecord-jdbc-adapter
diff --git a/databases/rubygem-activemodel80/Makefile b/databases/rubygem-activemodel80/Makefile
new file mode 100644
index 000000000000..5ce7aafef8ec
--- /dev/null
+++ b/databases/rubygem-activemodel80/Makefile
@@ -0,0 +1,23 @@
+PORTNAME= activemodel
+PORTVERSION= 8.0.1
+CATEGORIES= databases rubygems
+MASTER_SITES= RG
+PKGNAMESUFFIX= 80
+
+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-activesupport80>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport80
+
+USES= gem
+
+NO_ARCH= yes
+
+PORTSCOUT= limit:^8\.0\.
+
+.include <bsd.port.mk>
diff --git a/databases/rubygem-activemodel80/distinfo b/databases/rubygem-activemodel80/distinfo
new file mode 100644
index 000000000000..5d1ffb69f8a9
--- /dev/null
+++ b/databases/rubygem-activemodel80/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1735802468
+SHA256 (rubygem/activemodel-8.0.1.gem) = f46292fd6dcc128e18d588854298a933fd9eb22544c412b414ec02821062dc78
+SIZE (rubygem/activemodel-8.0.1.gem) = 68608
diff --git a/databases/rubygem-activemodel80/pkg-descr b/databases/rubygem-activemodel80/pkg-descr
new file mode 100644
index 000000000000..9e0e982e3352
--- /dev/null
+++ b/databases/rubygem-activemodel80/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.