pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc



Module Name:    pkgsrc
Committed By:   taca
Date:           Wed Jan 25 11:07:40 UTC 2023

Modified Files:
        pkgsrc/databases/ruby-dbd-sqlite: Makefile
        pkgsrc/databases/ruby-ldap: Makefile
        pkgsrc/databases/ruby-sqlite: Makefile
        pkgsrc/textproc/ruby-nokogumbo: Makefile

Log Message:
Restrict ruby's version (exclude ruby32)

Currently, these pacakges use removed C API on Ruby 3.2.0.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 pkgsrc/databases/ruby-dbd-sqlite/Makefile
cvs rdiff -u -r1.24 -r1.25 pkgsrc/databases/ruby-ldap/Makefile
cvs rdiff -u -r1.4 -r1.5 pkgsrc/databases/ruby-sqlite/Makefile
cvs rdiff -u -r1.3 -r1.4 pkgsrc/textproc/ruby-nokogumbo/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/databases/ruby-dbd-sqlite/Makefile
diff -u pkgsrc/databases/ruby-dbd-sqlite/Makefile:1.4 pkgsrc/databases/ruby-dbd-sqlite/Makefile:1.5
--- pkgsrc/databases/ruby-dbd-sqlite/Makefile:1.4       Fri Sep 25 05:47:36 2015
+++ pkgsrc/databases/ruby-dbd-sqlite/Makefile   Wed Jan 25 11:07:40 2023
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.4 2015/09/25 05:47:36 taca Exp $
+# $NetBSD: Makefile,v 1.5 2023/01/25 11:07:40 taca Exp $
 
 DISTNAME=      dbd-sqlite-0.1.2
 PKGREVISION=   1
@@ -12,5 +12,8 @@ LICENSE=      modified-bsd
 DEPENDS+=      ${RUBY_PKGPREFIX}-dbi>=0.4.3:../../databases/ruby-dbi
 DEPENDS+=      ${RUBY_PKGPREFIX}-sqlite>=2.2.3:../../databases/ruby-sqlite
 
+# databases/ruby-sqlite dose not support ruby32
+RUBY_VERSIONS_ACCEPTED=        27 30 31
+
 .include "../../lang/ruby/gem.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/databases/ruby-ldap/Makefile
diff -u pkgsrc/databases/ruby-ldap/Makefile:1.24 pkgsrc/databases/ruby-ldap/Makefile:1.25
--- pkgsrc/databases/ruby-ldap/Makefile:1.24    Sun Sep 13 15:11:07 2020
+++ pkgsrc/databases/ruby-ldap/Makefile Wed Jan 25 11:07:40 2023
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.24 2020/09/13 15:11:07 taca Exp $
+# $NetBSD: Makefile,v 1.25 2023/01/25 11:07:40 taca Exp $
 
 DISTNAME=      ruby-ldap-0.9.20
 PKGNAME=       ${DISTNAME:S/^ruby-/${RUBY_PKGPREFIX}-/}
@@ -9,6 +9,9 @@ HOMEPAGE=       https://github.com/alexey-cheb
 COMMENT=       LDAP extension module for Ruby
 LICENSE=       modified-bsd
 
+# dose not support ruby32
+RUBY_VERSIONS_ACCEPTED=        27 30 31
+
 CONFIGURE_ARGS+=       --with-openldap2
 CONFIGURE_ARGS+=       --with-ldap-dir=${BUILDLINK_PREFIX.openldap-client}
 
@@ -17,6 +20,7 @@ GEM_CLEANBUILD_EXTENSIONS=    ldap/control.
 
 # for LDAP_OPT_X_SASL_NOCANON
 BUILDLINK_API_DEPENDS.openldap-client+=        openldap-client>=2.4.14
+
 .include "../../databases/openldap-client/buildlink3.mk"
 .include "../../security/cyrus-sasl/buildlink3.mk"
 .include "../../lang/ruby/gem.mk"

Index: pkgsrc/databases/ruby-sqlite/Makefile
diff -u pkgsrc/databases/ruby-sqlite/Makefile:1.4 pkgsrc/databases/ruby-sqlite/Makefile:1.5
--- pkgsrc/databases/ruby-sqlite/Makefile:1.4   Mon Sep  4 18:00:51 2017
+++ pkgsrc/databases/ruby-sqlite/Makefile       Wed Jan 25 11:07:40 2023
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.4 2017/09/04 18:00:51 wiz Exp $
+# $NetBSD: Makefile,v 1.5 2023/01/25 11:07:40 taca Exp $
 
 DISTNAME=      sqlite-ruby-2.2.3
 PKGNAME=       ${RUBY_PKGPREFIX}-${DISTNAME:S/-ruby//}
@@ -10,6 +10,9 @@ MAINTAINER=   pkgsrc-users%NetBSD.org@localhost
 COMMENT=       Ruby interface for the SQLite database engine
 LICENSE=       modified-bsd
 
+# dose not support ruby32
+RUBY_VERSIONS_ACCEPTED=        27 30 31
+
 .include "../../lang/ruby/gem.mk"
 .include "../../databases/sqlite/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/textproc/ruby-nokogumbo/Makefile
diff -u pkgsrc/textproc/ruby-nokogumbo/Makefile:1.3 pkgsrc/textproc/ruby-nokogumbo/Makefile:1.4
--- pkgsrc/textproc/ruby-nokogumbo/Makefile:1.3 Thu Dec 15 12:15:19 2022
+++ pkgsrc/textproc/ruby-nokogumbo/Makefile     Wed Jan 25 11:07:40 2023
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2022/12/15 12:15:19 jperkin Exp $
+# $NetBSD: Makefile,v 1.4 2023/01/25 11:07:40 taca Exp $
 
 DISTNAME=      nokogumbo-2.0.5
 CATEGORIES=    textproc
@@ -11,6 +11,9 @@ LICENSE=      apache-2.0
 
 DEPENDS+=      ${RUBY_PKGPREFIX}-nokogiri>=1.10:../../textproc/ruby-nokogiri
 
+# dose not support ruby32
+RUBY_VERSIONS_ACCEPTED=        27 30 31
+
 .include "../../lang/ruby/gem.mk"
 .include "../../textproc/libxml2/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"



Home | Main Index | Thread Index | Old Index