git: ceda5904a938 - main - devel/rubygem-gyoku: update to 1.4.0 and take maintainership
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 29 Jul 2025 02:55:44 UTC
The branch main has been updated by tagattie:
URL: https://cgit.FreeBSD.org/ports/commit/?id=ceda5904a9385f18ca07e66b2076b41d06ea641f
commit ceda5904a9385f18ca07e66b2076b41d06ea641f
Author: Atanu Biswas <atanubiswas484@gmail.com>
AuthorDate: 2025-07-29 02:51:52 +0000
Commit: Hiroki Tagato <tagattie@FreeBSD.org>
CommitDate: 2025-07-29 02:55:32 +0000
devel/rubygem-gyoku: update to 1.4.0 and take maintainership
While here:
- Updated PORTVERSION to DISTVERSION
- Added rubygem-rexml, which prevents build failure
- Formatted the Makefile
- Added more description about the port
Changelog: https://github.com/savonrb/gyoku/blob/v1.4.0/CHANGELOG.md
PR: 288447
Reported by: Atanu Biswas <atanubiswas484@gmail.com> (new maintainer)
---
devel/rubygem-gyoku/Makefile | 12 ++++++------
devel/rubygem-gyoku/distinfo | 5 +++--
devel/rubygem-gyoku/pkg-descr | 7 ++++++-
3 files changed, 15 insertions(+), 9 deletions(-)
diff --git a/devel/rubygem-gyoku/Makefile b/devel/rubygem-gyoku/Makefile
index abe0bc84a995..3ef1c8a1d1a5 100644
--- a/devel/rubygem-gyoku/Makefile
+++ b/devel/rubygem-gyoku/Makefile
@@ -1,20 +1,20 @@
PORTNAME= gyoku
-PORTVERSION= 1.3.1
-PORTREVISION= 1
+DISTVERSION= 1.4.0
CATEGORIES= devel rubygems
MASTER_SITES= RG
-MAINTAINER= ports@FreeBSD.org
+MAINTAINER= atanubiswas484@gmail.com
COMMENT= Library for translating Ruby hashes to XML
WWW= https://github.com/savonrb/gyoku
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/MIT-LICENSE
-RUN_DEPENDS= rubygem-builder>=2.1.2:devel/rubygem-builder
-
-NO_ARCH= yes
+RUN_DEPENDS= rubygem-builder>=2.1.2:devel/rubygem-builder \
+ rubygem-rexml>=3.0<4:textproc/rubygem-rexml
USES= gem
+NO_ARCH= yes
+
.include <bsd.port.mk>
diff --git a/devel/rubygem-gyoku/distinfo b/devel/rubygem-gyoku/distinfo
index 5f24fdd520b0..0556e8d9ad84 100644
--- a/devel/rubygem-gyoku/distinfo
+++ b/devel/rubygem-gyoku/distinfo
@@ -1,2 +1,3 @@
-SHA256 (rubygem/gyoku-1.3.1.gem) = b0c5c825718df093437ab6bf84a25f39711816ab52a3bb3d2dcfa44102d5c0f2
-SIZE (rubygem/gyoku-1.3.1.gem) = 16896
+TIMESTAMP = 1753495766
+SHA256 (rubygem/gyoku-1.4.0.gem) = 389d887384c777f271cb9377bb642f20bbe0c633d1ef5af78569d4db53c1a2cd
+SIZE (rubygem/gyoku-1.4.0.gem) = 19456
diff --git a/devel/rubygem-gyoku/pkg-descr b/devel/rubygem-gyoku/pkg-descr
index 8cfd40b9db50..a03bcff909e6 100644
--- a/devel/rubygem-gyoku/pkg-descr
+++ b/devel/rubygem-gyoku/pkg-descr
@@ -1 +1,6 @@
-Gyoku translates Ruby Hashes to XML.
+Gyoku is a Ruby library that helps convert Ruby hashes into XML. It offers a
+simple and readable way to build XML structures, and supports features like
+attributes, namespaces, and custom element names.
+
+It's often used with SOAP clients like Savon, but can be useful in any Ruby
+project that needs to generate XML from structured data.