From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 36822158232 for ; Fri, 6 Dec 2024 14:00:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 397A1E0940; Fri, 6 Dec 2024 14:00:02 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A7A3DE0940 for ; Fri, 6 Dec 2024 14:00:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 92F31335D6B for ; Fri, 6 Dec 2024 14:00:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 03DB312D4 for ; Fri, 6 Dec 2024 13:59:59 +0000 (UTC) From: "Hans de Graaff" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" Message-ID: <1733493589.a65855c043cfa047f2ce0e49ab6744e512518806.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/json/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/json/json-2.9.0-r1.ebuild dev-ruby/json/json-2.9.0.ebuild X-VCS-Directories: dev-ruby/json/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: a65855c043cfa047f2ce0e49ab6744e512518806 X-VCS-Branch: master Date: Fri, 6 Dec 2024 13:59:59 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d0a4b9ee-8077-4cc4-8cde-3491ecb595d6 X-Archives-Hash: ebaa4ebe8792674bd2c1e83bea12fffc commit: a65855c043cfa047f2ce0e49ab6744e512518806 Author: Hans de Graaff gentoo org> AuthorDate: Fri Dec 6 13:59:30 2024 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Fri Dec 6 13:59:49 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a65855c0 dev-ruby/json: fix version number again Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/json/{json-2.9.0.ebuild => json-2.9.0-r1.ebuild} | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev-ruby/json/json-2.9.0.ebuild b/dev-ruby/json/json-2.9.0-r1.ebuild similarity index 95% rename from dev-ruby/json/json-2.9.0.ebuild rename to dev-ruby/json/json-2.9.0-r1.ebuild index fcb2a51b4bd1..b79d989aabe8 100644 --- a/dev-ruby/json/json-2.9.0.ebuild +++ b/dev-ruby/json/json-2.9.0-r1.ebuild @@ -48,4 +48,7 @@ all_ruby_prepare() { # Avoid setting gem since it will not be available yet when installing sed -i -e '/gem/ s:^:#:' test/json/test_helper.rb || die + + # Fix version number + sed -e 's/2.8.2/2.9.0/' -i lib/json/version.rb || die }