Received: by mail.netbsd.org (Postfix, from userid 605) id E7CCB84DA2; Sun, 14 Feb 2021 15:04:31 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2D64984D9B for ; Sun, 14 Feb 2021 15:04:31 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 7J2bAb1JfgrD for ; Sun, 14 Feb 2021 15:04:30 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 7EC1A84CED for ; Sun, 14 Feb 2021 15:04:30 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 77A03FA95; Sun, 14 Feb 2021 15:04:30 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1613315070123370" MIME-Version: 1.0 Date: Sun, 14 Feb 2021 15:04:30 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/security/ruby-rex-exploitation To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20210214150430.77A03FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1613315070123370 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Sun Feb 14 15:04:30 UTC 2021 Modified Files: pkgsrc/security/ruby-rex-exploitation: Makefile Log Message: security/ruby-rex-exploitation: add Ruby 3.0 support Add Ruby 3.0 support with adding dependency to ruby-rexml. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 pkgsrc/security/ruby-rex-exploitation/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1613315070123370 Content-Disposition: inline Content-Length: 1128 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/ruby-rex-exploitation/Makefile diff -u pkgsrc/security/ruby-rex-exploitation/Makefile:1.7 pkgsrc/security/ruby-rex-exploitation/Makefile:1.8 --- pkgsrc/security/ruby-rex-exploitation/Makefile:1.7 Sun Feb 14 13:24:29 2021 +++ pkgsrc/security/ruby-rex-exploitation/Makefile Sun Feb 14 15:04:30 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2021/02/14 13:24:29 taca Exp $ +# $NetBSD: Makefile,v 1.8 2021/02/14 15:04:30 taca Exp $ DISTNAME= rex-exploitation-0.1.27 CATEGORIES= security @@ -13,9 +13,12 @@ DEPENDS+= ${RUBY_PKGPREFIX}-metasm-[0-9] DEPENDS+= ${RUBY_PKGPREFIX}-rex-arch-[0-9]*:../../security/ruby-rex-arch DEPENDS+= ${RUBY_PKGPREFIX}-rex-encoder-[0-9]*:../../security/ruby-rex-encoder DEPENDS+= ${RUBY_PKGPREFIX}-rex-text-[0-9]*:../../security/ruby-rex-text -#DEPENDS+= ${RUBY_PKGPREFIX}-rexml-[0-9]*:../../textproc/ruby-rexml USE_LANGUAGES= # none +.include "../../lang/ruby/rubyversion.mk" +.if empty(RUBY_VER:M2[0-9]) +DEPENDS+= ${RUBY_PKGPREFIX}-rexml-[0-9]*:../../textproc/ruby-rexml +.endif .include "../../lang/ruby/gem.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1613315070123370--