Mon Jan 9 06:30:13 2023 UTC ()
devel/ruby-priority-queue: restrict to ruby27 and ruby30

Dose not support Ruby 3.1 and later.


(taca)
diff -r1.11 -r1.12 pkgsrc/devel/ruby-priority-queue/Makefile

cvs diff -r1.11 -r1.12 pkgsrc/devel/ruby-priority-queue/Makefile (expand / switch to unified diff)

--- pkgsrc/devel/ruby-priority-queue/Makefile 2015/09/25 08:54:47 1.11
+++ pkgsrc/devel/ruby-priority-queue/Makefile 2023/01/09 06:30:13 1.12
@@ -1,19 +1,22 @@ @@ -1,19 +1,22 @@
1# $NetBSD: Makefile,v 1.11 2015/09/25 08:54:47 taca Exp $ 1# $NetBSD: Makefile,v 1.12 2023/01/09 06:30:13 taca Exp $
2 2
3DISTNAME= PriorityQueue-0.1.2 3DISTNAME= PriorityQueue-0.1.2
4PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME:S/PriorityQueue/priority-queue/} 4PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME:S/PriorityQueue/priority-queue/}
5PKGREVISION= 4 5PKGREVISION= 4
6CATEGORIES= devel 6CATEGORIES= devel
7 7
8MAINTAINER= minskim@NetBSD.org 8MAINTAINER= minskim@NetBSD.org
9HOMEPAGE= # http://rubyforge.org/projects/priority-queue/ 9HOMEPAGE= # http://rubyforge.org/projects/priority-queue/
10COMMENT= Fibonacci-heap priority-queue implementation for Ruby 10COMMENT= Fibonacci-heap priority-queue implementation for Ruby
11LICENSE= gnu-gpl-v2 OR ruby-license 11LICENSE= gnu-gpl-v2 OR ruby-license
12 12
13OVERRIDE_GEMSPEC= :files priority_queue.so= priority_queue.o= 13OVERRIDE_GEMSPEC= :files priority_queue.so= priority_queue.o=
14 14
 15# Dose not support newer versions.
 16RUBY_VERSIONS_ACCEPTED= 27 30
 17
15pre-configure: 18pre-configure:
16 cd ${WRKSRC} && pwd; ${RM} -f priority_queue.so priority_queue.o 19 cd ${WRKSRC} && pwd; ${RM} -f priority_queue.so priority_queue.o
17 20
18.include "../../lang/ruby/gem.mk" 21.include "../../lang/ruby/gem.mk"
19.include "../../mk/bsd.pkg.mk" 22.include "../../mk/bsd.pkg.mk"