pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/ruby-zookeeper
Module Name: pkgsrc
Committed By: taca
Date: Mon Jan 9 05:42:33 UTC 2023
Modified Files:
pkgsrc/devel/ruby-zookeeper: Makefile distinfo
pkgsrc/devel/ruby-zookeeper/patches: patch-ext_extconf.rb
Log Message:
devel/ruby-zookeeper: update to 1.5.5
1.5.5 (2023-01-06)
* Fix loading in Ruby 3.2 (h/t: @emceeaich & @tsroten)
1.5.4 (2023-01-05)
* Ruby 3.2 compatibility (h/t: @cheister & @EricRoos)
To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/ruby-zookeeper/Makefile
cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/ruby-zookeeper/distinfo
cvs rdiff -u -r1.2 -r1.3 \
pkgsrc/devel/ruby-zookeeper/patches/patch-ext_extconf.rb
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/devel/ruby-zookeeper/Makefile
diff -u pkgsrc/devel/ruby-zookeeper/Makefile:1.3 pkgsrc/devel/ruby-zookeeper/Makefile:1.4
--- pkgsrc/devel/ruby-zookeeper/Makefile:1.3 Tue Jan 3 13:56:30 2023
+++ pkgsrc/devel/ruby-zookeeper/Makefile Mon Jan 9 05:42:32 2023
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.3 2023/01/03 13:56:30 taca Exp $
+# $NetBSD: Makefile,v 1.4 2023/01/09 05:42:32 taca Exp $
#
-DISTNAME= zookeeper-1.5.3
+DISTNAME= zookeeper-1.5.5
CATEGORIES= devel
MAINTAINER= pkgsrc-users%NetBSD.org@localhost
Index: pkgsrc/devel/ruby-zookeeper/distinfo
diff -u pkgsrc/devel/ruby-zookeeper/distinfo:1.4 pkgsrc/devel/ruby-zookeeper/distinfo:1.5
--- pkgsrc/devel/ruby-zookeeper/distinfo:1.4 Tue Jan 3 13:56:30 2023
+++ pkgsrc/devel/ruby-zookeeper/distinfo Mon Jan 9 05:42:32 2023
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.4 2023/01/03 13:56:30 taca Exp $
+$NetBSD: distinfo,v 1.5 2023/01/09 05:42:32 taca Exp $
-BLAKE2s (zookeeper-1.5.3.gem) = c7f56a31463197a3c033064d8de629fd7ea47427356732e5ca0ea0897e05f879
-SHA512 (zookeeper-1.5.3.gem) = dedfa3fa5908677a7a40b69841fd14add2f55d886d381933036e89adeb21b1525ecd4dd786dd0ff38e3993ce2075102d6c8aa43b495cf0c5f87d203b072edd77
-Size (zookeeper-1.5.3.gem) = 970752 bytes
-SHA1 (patch-ext_extconf.rb) = be5849c2faeff6e2c85c3771d0810d96ce7d6c62
+BLAKE2s (zookeeper-1.5.5.gem) = b37cf8aab55261f518c839ba86ea390718165a6b3b0cee264240af68299f4cf5
+SHA512 (zookeeper-1.5.5.gem) = 4448d9d35e7aea418e0027622aad5c4423803da7da0e4d6199b7e4cb41afe08cc3684d0a60abad730c66644c3afcc35ccd1617b7d55ffe4b2b8a9db5ec70b14d
+Size (zookeeper-1.5.5.gem) = 971264 bytes
+SHA1 (patch-ext_extconf.rb) = d3c9fa7af8464dbfe51295f73ed4abd66aa2d620
Index: pkgsrc/devel/ruby-zookeeper/patches/patch-ext_extconf.rb
diff -u pkgsrc/devel/ruby-zookeeper/patches/patch-ext_extconf.rb:1.2 pkgsrc/devel/ruby-zookeeper/patches/patch-ext_extconf.rb:1.3
--- pkgsrc/devel/ruby-zookeeper/patches/patch-ext_extconf.rb:1.2 Tue Jan 3 13:56:31 2023
+++ pkgsrc/devel/ruby-zookeeper/patches/patch-ext_extconf.rb Mon Jan 9 05:42:32 2023
@@ -1,8 +1,8 @@
-$NetBSD: patch-ext_extconf.rb,v 1.2 2023/01/03 13:56:31 taca Exp $
+$NetBSD: patch-ext_extconf.rb,v 1.3 2023/01/09 05:42:32 taca Exp $
Link pkgsrc libzookeeper instead of the embedded build.
---- ext/extconf.rb.orig 2023-01-02 08:23:51.434066414 +0000
+--- ext/extconf.rb.orig 2023-01-07 05:32:43.179101483 +0000
+++ ext/extconf.rb
@@ -2,30 +2,6 @@ require 'mkmf'
require 'rbconfig'
@@ -60,7 +60,7 @@ Link pkgsrc libzookeeper instead of the
- else
- puts "Building zkc."
-
-- unless File.exists?('c')
+- unless File.exist?('c')
- safe_sh "tar xzf #{BUNDLE} 2>&1"
- PATCHES.each do |patch|
- safe_sh "patch -p0 < #{patch} 2>&1"
@@ -89,7 +89,7 @@ Link pkgsrc libzookeeper instead of the
- %w[a la dylib].each do |ext|
- origin_lib_name = "libzookeeper_#{stmt}.#{ext}"
- dest_lib_name = "libzookeeper_#{stmt}_gem.#{ext}"
-- system("cp -f #{origin_lib_name} #{dest_lib_name}") if File.exists?(origin_lib_name)
+- system("cp -f #{origin_lib_name} #{dest_lib_name}") if File.exist?(origin_lib_name)
- end
- end
-end
Home |
Main Index |
Thread Index |
Old Index