Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A67FA84E98 for ; Tue, 30 May 2023 14:24:21 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 39IG5dZMGly1 for ; Tue, 30 May 2023 14:24:21 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 1B7EE84E72 for ; Tue, 30 May 2023 14:24:21 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 90207FA85; Tue, 30 May 2023 14:23:59 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1685456639152510" MIME-Version: 1.0 Date: Tue, 30 May 2023 14:23:59 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/devel/ruby-redmine50 To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20230530142359.90207FA85@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1685456639152510 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Tue May 30 14:23:59 UTC 2023 Modified Files: pkgsrc/devel/ruby-redmine50: MESSAGE Makefile Log Message: devel/ruby-redmine50: correct MESSAGE Since some scripts were wrongly named redmine42_*, substitute ${RM_VER} for "42". Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/ruby-redmine50/MESSAGE cvs rdiff -u -r1.12 -r1.13 pkgsrc/devel/ruby-redmine50/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1685456639152510 Content-Disposition: inline Content-Length: 2265 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/ruby-redmine50/MESSAGE diff -u pkgsrc/devel/ruby-redmine50/MESSAGE:1.1 pkgsrc/devel/ruby-redmine50/MESSAGE:1.2 --- pkgsrc/devel/ruby-redmine50/MESSAGE:1.1 Sat Sep 3 13:53:58 2022 +++ pkgsrc/devel/ruby-redmine50/MESSAGE Tue May 30 14:23:59 2023 @@ -1,5 +1,5 @@ =========================================================================== -$NetBSD: MESSAGE,v 1.1 2022/09/03 13:53:58 taca Exp $ +$NetBSD: MESSAGE,v 1.2 2023/05/30 14:23:59 taca Exp $ To use Redmine with nginx, you will need to perform the following steps. @@ -23,7 +23,7 @@ To use Redmine with nginx, you will need 5. Create secret token and write to ${PREFIX}/${RM_DIR}/config/configuration.yml - # redmine42_generate_secret_token${RUBY_SUFFIX}.sh + # redmine${RM_VER}_generate_secret_token${RUBY_SUFFIX}.sh # vi config/configuration.yml [...] secret_token: 'YOUR_SECRET_KEY' @@ -31,7 +31,7 @@ To use Redmine with nginx, you will need 6. Import some data to Redmine database, select your locale, and migrate the DB: - # redmine42_migrate_db${RUBY_SUFFIX}.sh + # redmine${RM_VER}_migrate_db${RUBY_SUFFIX}.sh 7. Setup nginx. @@ -60,7 +60,7 @@ To use Redmine with nginx, you will need 8. Start Redmine with Unicorn. - # ${RCD_SCRIPTS_DIR}/redmine42_unicorn${RUBY_SUFFIX} start + # ${RCD_SCRIPTS_DIR}/redmine${RM_VER}_unicorn${RUBY_SUFFIX} start 9. Start nginx. Index: pkgsrc/devel/ruby-redmine50/Makefile diff -u pkgsrc/devel/ruby-redmine50/Makefile:1.12 pkgsrc/devel/ruby-redmine50/Makefile:1.13 --- pkgsrc/devel/ruby-redmine50/Makefile:1.12 Wed May 24 18:21:20 2023 +++ pkgsrc/devel/ruby-redmine50/Makefile Tue May 30 14:23:59 2023 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.12 2023/05/24 18:21:20 triaxx Exp $ +# $NetBSD: Makefile,v 1.13 2023/05/30 14:23:59 taca Exp $ DISTNAME= redmine-${RM_VERSION} PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME:S/redmine/redmine${RM_VER}/} -PKGREVISION= 2 +PKGREVISION= 3 CATEGORIES= devel MASTER_SITES= https://www.redmine.org/releases/ @@ -71,7 +71,7 @@ SUBST_MESSAGE.shell= Fixing paths in hel SUBST_VARS.shell= PREFIX RUBY RM_DIR SUBST_STAGE.shell= post-install -MESSAGE_SUBST+= RM_DIR=${RM_DIR} +MESSAGE_SUBST+= RM_DIR=${RM_DIR} RM_VER=${RM_VER} USE_LANGUAGES= # none --_----------=_1685456639152510--