Received: by mail.netbsd.org (Postfix, from userid 605) id 06F5284EF0; Mon, 24 Sep 2018 01:21:56 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0C0AB84D6A for ; Mon, 24 Sep 2018 01:21:55 +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 spF0iTo9DDro for ; Mon, 24 Sep 2018 01:21:54 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 2B19B84CDA for ; Mon, 24 Sep 2018 01:21:54 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 16C35FBEE; Mon, 24 Sep 2018 01:21:54 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1537752114138650" MIME-Version: 1.0 Date: Mon, 24 Sep 2018 01:21:54 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/www/heel To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20180924012154.16C35FBEE@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1537752114138650 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Mon Sep 24 01:21:54 UTC 2018 Modified Files: pkgsrc/www/heel: Makefile Log Message: www/heel: relax dependency to ruby-puma Allow depends on ruby-puma 3.12.0. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 pkgsrc/www/heel/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1537752114138650 Content-Disposition: inline Content-Length: 1261 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/heel/Makefile diff -u pkgsrc/www/heel/Makefile:1.12 pkgsrc/www/heel/Makefile:1.13 --- pkgsrc/www/heel/Makefile:1.12 Sat Mar 17 14:46:45 2018 +++ pkgsrc/www/heel/Makefile Mon Sep 24 01:21:53 2018 @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.12 2018/03/17 14:46:45 taca Exp $ +# $NetBSD: Makefile,v 1.13 2018/09/24 01:21:53 taca Exp $ DISTNAME= heel-3.2.0 +PKGREVISION= 1 CATEGORIES= www MAINTAINER= pkgsrc-users@NetBSD.org @@ -8,7 +9,7 @@ HOMEPAGE= https://github.com/copiousfree COMMENT= Static file web server based on Rack and Thin LICENSE= modified-bsd -DEPENDS+= ${RUBY_PKGPREFIX}-puma>=3.11.3<3.12:../../www/ruby-puma +DEPENDS+= ${RUBY_PKGPREFIX}-puma>=3.11.3:../../www/ruby-puma DEPENDS+= ${RUBY_PKGPREFIX}-rack>=2.0<3:../../www/ruby-rack DEPENDS+= ${RUBY_PKGPREFIX}-coderay>=1.1<2:../../textproc/ruby-coderay DEPENDS+= ${RUBY_PKGPREFIX}-launchy>=2.4<3:../../misc/ruby-launchy @@ -16,7 +17,8 @@ DEPENDS+= ${RUBY_PKGPREFIX}-mime-types>= CONFLICTS+= ruby[1-9][0-9][0-9]-heel-[0-9]* heel-[0-9]* -OVERRIDE_GEMSPEC+= coderay>=0.8.260 launchy>=0.3.2 thin>=1.2 +OVERRIDE_GEMSPEC+= coderay>=0.8.260 launchy>=0.3.2 thin>=1.2 \ + puma>=3.11.3 .include "../../lang/ruby/gem.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1537752114138650--