Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=sHEBIhoi; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=EbRDGo6T Received: by mail.netbsd.org (Postfix, from userid 605) id B122D84F7E; Sun, 12 May 2024 16:22:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1715530946; bh=1/gzQ6BIRS4EpfaQhHAsuhEIhnc+rsZy0VRmnIB6kqY=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=sHEBIhoiHSaO86wV6Qh25ixuRQAw23OR47G8e83fLwLMYeOuqQIixAoc0ZDLWhHNE v8RZXoaQYjbOc5/ufS0JusfAtoe6f3r8wJ5TTw6OM56X+ml0I+71N4H/e3r1FqhQV2 ttF6wSOENSETQKHU62uQM8L+SwjNbu6ptSbCSFKA= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A281A84F75 for ; Sun, 12 May 2024 16:22:25 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 4ld8ldKF7dL9 for ; Sun, 12 May 2024 16:22:25 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id ED4A384CD9 for ; Sun, 12 May 2024 16:22:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1715530945; bh=1/gzQ6BIRS4EpfaQhHAsuhEIhnc+rsZy0VRmnIB6kqY=; h=Date:From:Subject:To:Reply-To; b=EbRDGo6TnW1L48hvK481mMKTlfix9rwo/nYwDEGHQdpRsTtLQle/0iEsFi1gKA7ki EFJVYuHyckD6mpCS592U+GKr2gmheN4XnNwBDpHvp5uYRnk69gdQu6GjxSptZ6JsOb 5NP4h1LefvOk9znnZDwqzPSwyEPZRfBXKXJfJgz8= Received: by cvs.NetBSD.org (Postfix, from userid 500) id E3B65FA2C; Sun, 12 May 2024 16:22:24 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1715530944109690" MIME-Version: 1.0 Date: Sun, 12 May 2024 16:22:24 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/time/ruby-hitimes To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20240512162224.E3B65FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1715530944109690 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Sun May 12 16:22:24 UTC 2024 Modified Files: pkgsrc/time/ruby-hitimes: Makefile PLIST distinfo Log Message: time/ruby-hitimes: update to 3.0.0 3.0.0 (2024-05-01) * Migrated to SemaphoreCI for doing full test runs on all active ruby versions. * Remove the dependency on Process.clock_getres as it is unreliable. * This has the effect of deprecating some Hitimes constants that had been documented as public. These are now removed as this is a major version update Hitimes::CLOCK_RESOLUTION_NANOSECONDS Hitimes::CLOCK_RESOLUTION_SECONDS Hitimes::INSTANT_CONVERSION_FACTOR Hitimes.clock_resolution_description Hitimes.clock_description * Added Rubocop for some coding consistency * Updated the supported ruby version to be 3.0 and up * Updated all dependencies * Changed how all the assert_delta style tests were done so they were not so flakey * Hitimes will now emit a warn message if it ends up using CLOCK_REALTIME * Hitimes will raise an exception if it cannot find a valid clock id. This is a bug and a message to file a report is in the exception To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 pkgsrc/time/ruby-hitimes/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/time/ruby-hitimes/PLIST cvs rdiff -u -r1.11 -r1.12 pkgsrc/time/ruby-hitimes/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1715530944109690 Content-Disposition: inline Content-Length: 3024 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/time/ruby-hitimes/Makefile diff -u pkgsrc/time/ruby-hitimes/Makefile:1.8 pkgsrc/time/ruby-hitimes/Makefile:1.9 --- pkgsrc/time/ruby-hitimes/Makefile:1.8 Sun Mar 22 09:38:30 2020 +++ pkgsrc/time/ruby-hitimes/Makefile Sun May 12 16:22:24 2024 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.8 2020/03/22 09:38:30 taca Exp $ +# $NetBSD: Makefile,v 1.9 2024/05/12 16:22:24 taca Exp $ -DISTNAME= hitimes-2.0.0 +DISTNAME= hitimes-3.0.0 CATEGORIES= time MAINTAINER= pkgsrc-users@NetBSD.org Index: pkgsrc/time/ruby-hitimes/PLIST diff -u pkgsrc/time/ruby-hitimes/PLIST:1.3 pkgsrc/time/ruby-hitimes/PLIST:1.4 --- pkgsrc/time/ruby-hitimes/PLIST:1.3 Sun Mar 22 09:38:30 2020 +++ pkgsrc/time/ruby-hitimes/PLIST Sun May 12 16:22:24 2024 @@ -1,13 +1,11 @@ -@comment $NetBSD: PLIST,v 1.3 2020/03/22 09:38:30 taca Exp $ +@comment $NetBSD: PLIST,v 1.4 2024/05/12 16:22:24 taca Exp $ ${GEM_HOME}/cache/${GEM_NAME}.gem ${GEM_LIBDIR}/CONTRIBUTING.md ${GEM_LIBDIR}/HISTORY.md -${GEM_LIBDIR}/LICENSE +${GEM_LIBDIR}/LICENSE.txt ${GEM_LIBDIR}/Manifest.txt ${GEM_LIBDIR}/README.md -${GEM_LIBDIR}/Rakefile -${GEM_LIBDIR}/examples/benchmarks.rb -${GEM_LIBDIR}/examples/stats.rb +${GEM_LIBDIR}/hitimes.gemspec ${GEM_LIBDIR}/lib/hitimes.rb ${GEM_LIBDIR}/lib/hitimes/initialize.rb ${GEM_LIBDIR}/lib/hitimes/instant.rb @@ -20,17 +18,4 @@ ${GEM_LIBDIR}/lib/hitimes/timed_metric.r ${GEM_LIBDIR}/lib/hitimes/timed_value_metric.rb ${GEM_LIBDIR}/lib/hitimes/value_metric.rb ${GEM_LIBDIR}/lib/hitimes/version.rb -${GEM_LIBDIR}/spec/hitimes_spec.rb -${GEM_LIBDIR}/spec/interval_spec.rb -${GEM_LIBDIR}/spec/metric_spec.rb -${GEM_LIBDIR}/spec/mutex_stats_spec.rb -${GEM_LIBDIR}/spec/paths_spec.rb -${GEM_LIBDIR}/spec/spec_helper.rb -${GEM_LIBDIR}/spec/stats_spec.rb -${GEM_LIBDIR}/spec/timed_metric_spec.rb -${GEM_LIBDIR}/spec/timed_value_metric_spec.rb -${GEM_LIBDIR}/spec/value_metric_spec.rb -${GEM_LIBDIR}/spec/version_spec.rb -${GEM_LIBDIR}/tasks/default.rake -${GEM_LIBDIR}/tasks/this.rb ${GEM_HOME}/specifications/${GEM_NAME}.gemspec Index: pkgsrc/time/ruby-hitimes/distinfo diff -u pkgsrc/time/ruby-hitimes/distinfo:1.11 pkgsrc/time/ruby-hitimes/distinfo:1.12 --- pkgsrc/time/ruby-hitimes/distinfo:1.11 Tue Oct 26 11:24:37 2021 +++ pkgsrc/time/ruby-hitimes/distinfo Sun May 12 16:22:24 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.11 2021/10/26 11:24:37 nia Exp $ +$NetBSD: distinfo,v 1.12 2024/05/12 16:22:24 taca Exp $ -BLAKE2s (hitimes-2.0.0.gem) = 257a32db2698b72cae2d1a296c61926156d9e160389125961c7a6ceb74e0a25f -SHA512 (hitimes-2.0.0.gem) = 06f1c17d9914054bc17244f1a22761c98f7409cb401136e582deec18bbee07358b339ddd49ddfbc01cf9eb46bf84fbf5e2dccd6c77eb36e98c357e99687e8201 -Size (hitimes-2.0.0.gem) = 27136 bytes +BLAKE2s (hitimes-3.0.0.gem) = b9d8bc43dcaeb6d0418539f6e9e37734996d42ff291a58beb9880e089a3bb7cf +SHA512 (hitimes-3.0.0.gem) = 7384f30f847d4307960b020212a946c59e14be557728f773962c5a6abbe8c6e2b928b4611ec17abd7f48264765d6b64e1c493cc5e84f0d88b68d2cc5af89caa5 +Size (hitimes-3.0.0.gem) = 18944 bytes --_----------=_1715530944109690--