diff options
author | taca <taca@pkgsrc.org> | 2021-06-10 14:25:42 +0000 |
---|---|---|
committer | taca <taca@pkgsrc.org> | 2021-06-10 14:25:42 +0000 |
commit | 3f314277ccf24d3346a60bef6bb9599d2ecea050 (patch) | |
tree | 93745270be65daba08ff7ebd62539d5c30b97abf /textproc | |
parent | b8bebb65e9ed4fe36994f720436b934689ebb31a (diff) | |
download | pkgsrc-3f314277ccf24d3346a60bef6bb9599d2ecea050.tar.gz |
textproc/ruby-csv: make it incompatible with ruby30
Restrict this package to Ruby 2.6 and 2.7 since Ruby 3.0 contain the same
version of rexml.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/ruby-csv/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/textproc/ruby-csv/Makefile b/textproc/ruby-csv/Makefile index c1c6eed4a81..de4edc13e97 100644 --- a/textproc/ruby-csv/Makefile +++ b/textproc/ruby-csv/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2021/01/14 14:38:40 taca Exp $ +# $NetBSD: Makefile,v 1.4 2021/06/10 14:25:42 taca Exp $ DISTNAME= csv-3.1.9 CATEGORIES= textproc @@ -8,6 +8,9 @@ HOMEPAGE= https://github.com/ruby/csv/ COMMENT= CSV Reading and Writing LICENSE= 2-clause-bsd +# Ruby 3.0 contain the same version of rexml. +RUBY_VERSIONS_ACCEPTED= 26 27 + USE_LANGUAGES= # none .include "../../lang/ruby/gem.mk" |