ne ARC-Seal: i=1; s=dkim; d=freebsd.org; t=1753764138; a=rsa-sha256; cv=none; b=WA7rUo18f8l87xIfTUkP5GQ6hYrtZdSwnGmSl8Cq8jJ8ljvTb3PTheGoMA/WSL4f905+eM tqIRxkw5Scf22egMM/e+IN6XGyWrh+lHS0VccyHKwq91xen4lGp1Q3q0xqwXTmV+lrNnH5 3SluDSyyqsvq9mtBhlSonOjjgBCq5v2e/p5MUXxPUuhgw2SUKup60vQdtsDuhlUie1cBgo NBkfryfwQxiVGyJ3La4VLxPt83yFsdJY2OhDvgCNPK0n52vjesc9G49vxbsQYURa28EfRA 62OFUQ4QCGPFKRCezzVmQFACk9zZabP8sw3OJ4OHtkfT25AnpBVbwuqSR/136Q== Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4brjPQ3vcNz1kK; Tue, 29 Jul 2025 04:42:18 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.18.1/8.18.1) with ESMTP id 56T4gIIk021377; Tue, 29 Jul 2025 04:42:18 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.18.1/8.18.1/Submit) id 56T4gIX0021374; Tue, 29 Jul 2025 04:42:18 GMT (envelope-from git) Date: Tue, 29 Jul 2025 04:42:18 GMT Message-Id: <202507290442.56T4gIX0021374@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Po-Chuan Hsieh Subject: git: 9bb0dfed1f05 - main - devel/rubygem-nori: Update version requirement of RUN_DEPENDS List-Id: Commit messages for all branches of the ports repository List-Archive: https://lists.freebsd.org/archives/dev-commits-ports-all List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: dev-commits-ports-all@freebsd.org Sender: owner-dev-commits-ports-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: sunpoet X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 9bb0dfed1f05c31b0f58111fa5302da92bbddf47 Auto-Submitted: auto-generated The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=9bb0dfed1f05c31b0f58111fa5302da92bbddf47 commit 9bb0dfed1f05c31b0f58111fa5302da92bbddf47 Author: Po-Chuan Hsieh AuthorDate: 2025-07-29 04:00:54 +0000 Commit: Po-Chuan Hsieh CommitDate: 2025-07-29 04:32:13 +0000 devel/rubygem-nori: Update version requirement of RUN_DEPENDS - Update pkg-descr - Take maintainership --- devel/rubygem-nori/Makefile | 16 +++++++--------- devel/rubygem-nori/pkg-descr | 7 ++++++- 2 files changed, 13 insertions(+), 10 deletions(-) diff --git a/devel/rubygem-nori/Makefile b/devel/rubygem-nori/Makefile index b32b79947c67..b42fdfa74b08 100644 --- a/devel/rubygem-nori/Makefile +++ b/devel/rubygem-nori/Makefile @@ -3,28 +3,26 @@ DISTVERSION= 2.7.1 CATEGORIES= devel rubygems MASTER_SITES= RG -MAINTAINER= ports@FreeBSD.org -COMMENT= Library for converting XML to Hash syntax +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= XML to Hash translator WWW= https://github.com/savonrb/nori LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= rubygem-bigdecimal>0:math/rubygem-bigdecimal +RUN_DEPENDS= rubygem-bigdecimal>=0:math/rubygem-bigdecimal USES= gem NO_ARCH= yes -OPTIONS_DEFAULT= NOKOGIRI - -OPTIONS_MULTI= PARSER +OPTIONS_MULTI= PARSER OPTIONS_MULTI_PARSER= NOKOGIRI REXML - +OPTIONS_DEFAULT=NOKOGIRI NOKOGIRI_DESC= Use Nokogiri as parser REXML_DESC= Use REXML as parser -NOKOGIRI_RUN_DEPENDS= rubygem-nokogiri>0:textproc/rubygem-nokogiri -REXML_RUN_DEPENDS= rubygem-rexml>0:textproc/rubygem-rexml +NOKOGIRI_RUN_DEPENDS= rubygem-nokogiri>=0:textproc/rubygem-nokogiri +REXML_RUN_DEPENDS= rubygem-rexml>=3.2<4:textproc/rubygem-rexml .include diff --git a/devel/rubygem-nori/pkg-descr b/devel/rubygem-nori/pkg-descr index e1044fa8fefe..8214c6b6b8eb 100644 --- a/devel/rubygem-nori/pkg-descr +++ b/devel/rubygem-nori/pkg-descr @@ -1 +1,6 @@ -XML to Hash translator. +Really simple XML parsing ripped from Crack, which ripped it from Merb. + +Nori supports pluggable parsers and ships with both REXML and Nokogiri +implementations. + +It defaults to Nokogiri since v2.0.0, but you can change it to use REXML.