Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=BGGMlYON; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=WFpVJuGS Received: by mail.netbsd.org (Postfix, from userid 605) id B2CA484D44; Sun, 10 Mar 2024 15:13:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1710083627; bh=2q5ad64DQ3PabCQ95TaHHT8l/IQHm6fGJMOooG81T9U=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=BGGMlYONBLRRKwBf8A5xP/xIxj89Eq6kJ0U+wbi5Mtk8kEYk1qtKVzvjd03tt/S/H 3400k+CiHldGDovn/fR0NihHzpcyosuuirIdOe5BcTKXsS9Z1jYnhNh0ccNLSPyu1M vSRdarpo2eLxPH8DeMyPPdQghdaV1gWc01von1rg= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A2F8F84CFC for ; Sun, 10 Mar 2024 15:13:46 +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 ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id DmFaIexWXPZP for ; Sun, 10 Mar 2024 15:13:46 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 0058384CF8 for ; Sun, 10 Mar 2024 15:13:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1710083626; bh=2q5ad64DQ3PabCQ95TaHHT8l/IQHm6fGJMOooG81T9U=; h=Date:From:Subject:To:Reply-To; b=WFpVJuGSwh3ICqPbbJ9L7/nvg7CrTN+52cZ2bMz+sEVl8BhHkqjrD+EY6pM/OkHh3 WgVDxj4d+yE+bvuNUKEjldhXOaz0SYVGKe6UktoIUg6GM1a5DmE+qf6vuW4Z1A95rt 0dkwqNwGh+vxAsb0IDDZqPqe8fv+Oo8Z5znjs6i0= Received: by cvs.NetBSD.org (Postfix, from userid 500) id DF3A2FA2A; Sun, 10 Mar 2024 15:13:45 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1710083625155910" MIME-Version: 1.0 Date: Sun, 10 Mar 2024 15:13:45 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/textproc/ruby-asciidoctor To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20240310151345.DF3A2FA2A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1710083625155910 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Sun Mar 10 15:13:45 UTC 2024 Modified Files: pkgsrc/textproc/ruby-asciidoctor: Makefile distinfo Log Message: textproc/ruby-asciidoctor: update to 2.0.22 2.0.22 (2024-03-08) This is a patch release in the 2.0.x release line to further compatibility with Ruby 3.3. The most critical fix in this release is to remove use of the base64 library since it will no longer being provided as part of the Ruby language starting with Ruby 3.4. When using Ruby 3.3, users would see a warning if this library is used, which happens when the data-uri attribute is set. The functionality has been replaced with a lower-level method on the String object (String#pack), which the base64 library delegates to anyway. This release also sets the cloaked-context attribute on a source block that is defined using either a styled paragraph or a literal or fenced code structural container. This matches the functionality used for custom block extensions (when the source context does not match the final parsed context). Distribution * RubyGem (asciidoctor) Asciidoctor is also packaged for Fedora, Debian, Ubuntu, Alpine Linux, OpenSUSE, and Homebrew. You can use the system's package manager to install the package named asciidoctor. Changelog Improvements * Set cloaked-context attribute on source block when context is not :listing (#4556) Compliance * Remove use of base64 library to prevent warning in Ruby >= 3.3 (#4561) To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 pkgsrc/textproc/ruby-asciidoctor/Makefile cvs rdiff -u -r1.12 -r1.13 pkgsrc/textproc/ruby-asciidoctor/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1710083625155910 Content-Disposition: inline Content-Length: 1626 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/ruby-asciidoctor/Makefile diff -u pkgsrc/textproc/ruby-asciidoctor/Makefile:1.14 pkgsrc/textproc/ruby-asciidoctor/Makefile:1.15 --- pkgsrc/textproc/ruby-asciidoctor/Makefile:1.14 Sun Mar 3 08:44:47 2024 +++ pkgsrc/textproc/ruby-asciidoctor/Makefile Sun Mar 10 15:13:45 2024 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.14 2024/03/03 08:44:47 taca Exp $ +# $NetBSD: Makefile,v 1.15 2024/03/10 15:13:45 taca Exp $ -DISTNAME= asciidoctor-2.0.21 +DISTNAME= asciidoctor-2.0.22 CATEGORIES= textproc MAINTAINER= pkgsrc-users@NetBSD.org Index: pkgsrc/textproc/ruby-asciidoctor/distinfo diff -u pkgsrc/textproc/ruby-asciidoctor/distinfo:1.12 pkgsrc/textproc/ruby-asciidoctor/distinfo:1.13 --- pkgsrc/textproc/ruby-asciidoctor/distinfo:1.12 Sun Mar 3 08:44:47 2024 +++ pkgsrc/textproc/ruby-asciidoctor/distinfo Sun Mar 10 15:13:45 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.12 2024/03/03 08:44:47 taca Exp $ +$NetBSD: distinfo,v 1.13 2024/03/10 15:13:45 taca Exp $ -BLAKE2s (asciidoctor-2.0.21.gem) = 59f536af59037dedba02fc405ba6f78275cc800388756f27079165020d80d6a6 -SHA512 (asciidoctor-2.0.21.gem) = 3fe064d9b00c84ff81803c0645ae522fa66b253b93957b4fe567a240ea77af5a94a47aae04fda4207e698d76f21b2a9bcd44daca388960cfd1cc4f24d03606f0 -Size (asciidoctor-2.0.21.gem) = 282624 bytes +BLAKE2s (asciidoctor-2.0.22.gem) = eadbf1c9658ba14f23f7389b5327a237753cb5626bc135295402c408f2806000 +SHA512 (asciidoctor-2.0.22.gem) = 1c9cd3bdbb7f4467b73e99b29ab655d521213d51c0151f6aee21cfd1d943c6456c1ef23bfdbf180057b70590341d92fcda2be0bf5e1c741e7068ff0901bd282c +Size (asciidoctor-2.0.22.gem) = 282624 bytes --_----------=_1710083625155910--