Received: by mail.netbsd.org (Postfix, from userid 605) id 7FD4B84EF9; Tue, 31 Aug 2021 15:05:03 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B8D1484E87 for ; Tue, 31 Aug 2021 15:05:02 +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 v47luXjUyxRV for ; Tue, 31 Aug 2021 15:05:02 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 397F584CEF for ; Tue, 31 Aug 2021 15:05:02 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 330EEFA97; Tue, 31 Aug 2021 15:05:02 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_163042230228730" MIME-Version: 1.0 Date: Tue, 31 Aug 2021 15:05:02 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/devel/ruby-redmine To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20210831150502.330EEFA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_163042230228730 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Tue Aug 31 15:05:02 UTC 2021 Modified Files: pkgsrc/devel/ruby-redmine: redmine.mk Log Message: devel/ruby-redmine: drop Redmine 4.0 support * Drop Redmine 4.0 support. * Switch default version of Redmine to 4.2.x. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/ruby-redmine/redmine.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_163042230228730 Content-Disposition: inline Content-Length: 1866 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/ruby-redmine/redmine.mk diff -u pkgsrc/devel/ruby-redmine/redmine.mk:1.2 pkgsrc/devel/ruby-redmine/redmine.mk:1.3 --- pkgsrc/devel/ruby-redmine/redmine.mk:1.2 Wed Jun 2 16:00:47 2021 +++ pkgsrc/devel/ruby-redmine/redmine.mk Tue Aug 31 15:05:02 2021 @@ -1,4 +1,4 @@ -# $NetBSD: redmine.mk,v 1.2 2021/06/02 16:00:47 taca Exp $ +# $NetBSD: redmine.mk,v 1.3 2021/08/31 15:05:02 taca Exp $ .if !defined(_RUBY_REDMINE_MK) _RUBY_REDMINE_MK= # defined @@ -11,32 +11,32 @@ _RUBY_REDMINE_MK= # defined # RM_VERSION_DEFAULT # Select default Redmine version. # -# Possible values: 40 41 42 -# Default: 40 +# Possible values: 41 42 +# Default: 42 # # # === Package-settable variables === # # RM_VERSIONS_SUPPORTED # Supported Redmine version. -# Possible values: 40 41 42 -# Default: 40 +# Possible values: 41 42 +# Default: 42 # # # === Defined variables === # # RM_VER # Redmine version. -# Possible values: 40 41 42 -# Default: 40 +# Possible values: 41 42 +# Default: 42 # # RM_DIR # Redmine directory. # .if ${RUBY_VER} == "26" -RM_VERSION_DEFAULT?= 40 -RM_VERSIONS_SUPPORTED?= 42 41 40 +RM_VERSION_DEFAULT?= 42 +RM_VERSIONS_SUPPORTED?= 42 41 .elif ${RUBY_VER} == "27" RM_VERSION_DEFAULT?= 42 RM_VERSIONS_SUPPORTED?= 42 @@ -63,12 +63,7 @@ RM_MINOR= ${RM_VERSION:C/([0-9]+)\.([0-9 RM_VER= ${RM_MAJOR}${RM_MINOR} .endif -.if "${RM_VER}" == "40" -REDMINE_DEPENDS= ${RUBY_PKGPREFIX}-redmine${RM_VER}-[0-9]*:../../devel/ruby-redmine -GEM_HOME= ${RM_DIR}/gems -RM_PLUGINDIR= ${RM_DIR}/app/plugins -RM_THEMEDIR= ${RM_DIR}/app/public/themes -.elif "${RM_VER}" == "41" || "${RM_VER}" == "42" +.if "${RM_VER}" == "41" || "${RM_VER}" == "42" REDMINE_DEPENDS= ${RUBY_PKGPREFIX}-redmine${RM_VER}-[0-9]*:../../devel/ruby-redmine${RM_VER} RM_PLUGINDIR= ${RM_DIR}/plugins RM_THEMEDIR= ${RM_DIR}/public/themes --_----------=_163042230228730--