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 (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1574A1581C1 for ; Tue, 9 Jul 2024 06:03:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2E068E2AFC; Tue, 9 Jul 2024 06:03:03 +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 0FCDFE2AFC for ; Tue, 9 Jul 2024 06:03:03 +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 B4A7A342FB2 for ; Tue, 9 Jul 2024 06:03:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 046041DFE for ; Tue, 9 Jul 2024 06:02: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: <1720504963.c24442814fa5735089e244a37a6379798fc0c1f1.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/websocket/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/websocket/Manifest dev-ruby/websocket/websocket-1.2.11.ebuild X-VCS-Directories: dev-ruby/websocket/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: c24442814fa5735089e244a37a6379798fc0c1f1 X-VCS-Branch: master Date: Tue, 9 Jul 2024 06:02: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: 6f84859e-53b2-4b02-b2a0-0b4c89911696 X-Archives-Hash: 032a2b5fa444f795514a91ef69038ecf commit: c24442814fa5735089e244a37a6379798fc0c1f1 Author: Hans de Graaff gentoo org> AuthorDate: Tue Jul 9 06:01:56 2024 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Tue Jul 9 06:02:43 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2444281 dev-ruby/websocket: add 1.2.11 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/websocket/Manifest | 1 + dev-ruby/websocket/websocket-1.2.11.ebuild | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/dev-ruby/websocket/Manifest b/dev-ruby/websocket/Manifest index 5090086846a3..70b4a8270b40 100644 --- a/dev-ruby/websocket/Manifest +++ b/dev-ruby/websocket/Manifest @@ -1 +1,2 @@ DIST websocket-1.2.10.gem 28672 BLAKE2B 352289d39d374032bd8ab11ec1c38f0b3abb3c3ec7cdb05373d5ccdc7419d896088412657b54cbcd93b15d4bab07a3fdf27829a38e35a0c62f09eed1b8302a05 SHA512 c06598a4988b1a4361ba55d807577c756d82295e5c5316fe9f0492a32776599b8ce878615c5c0d4ed2d70d37bfed5ec188398922dd140fd195b894262df63f57 +DIST websocket-1.2.11.gem 28672 BLAKE2B afdd16073df2da5cd9893f40ee53084d263b13c928e4b118f6efdb925f2616a468321b11162ab785548dc33a269452fd368de964b4ab00e0d230ab1cbacd45ae SHA512 164e9707d7cb490502c82eb58ae5f2c70d16e04dbc5ce4467411d6ff76f2a2e158680ee013609289b48706baab8e1c72fb22dad6acd67fc09302e78832cb488c diff --git a/dev-ruby/websocket/websocket-1.2.11.ebuild b/dev-ruby/websocket/websocket-1.2.11.ebuild new file mode 100644 index 000000000000..8d4711c1c193 --- /dev/null +++ b/dev-ruby/websocket/websocket-1.2.11.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +USE_RUBY="ruby31 ruby32 ruby33" + +RUBY_FAKEGEM_RECIPE_TEST="rspec3" + +inherit ruby-fakegem + +DESCRIPTION="Universal Ruby library to handle WebSocket protocol" +HOMEPAGE="https://github.com/imanel/websocket-ruby" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86" +IUSE="test" + +ruby_add_bdepend " + test? ( + dev-ruby/rspec-its + dev-ruby/webrick + ) +"