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 11001158090 for ; Sat, 12 Mar 2022 07:21:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B829BE091B; Sat, 12 Mar 2022 07:21:35 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9C2C4E091B for ; Sat, 12 Mar 2022 07:21:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 8A8B3340B57 for ; Sat, 12 Mar 2022 07:21:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AE80631C for ; Sat, 12 Mar 2022 07:21:31 +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: <1647069679.7f51056ffac6cf1d8e493c028489ea75e1d30f6e.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: virtual/ruby-ssl/ X-VCS-Repository: repo/gentoo X-VCS-Files: virtual/ruby-ssl/ruby-ssl-12.ebuild X-VCS-Directories: virtual/ruby-ssl/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 7f51056ffac6cf1d8e493c028489ea75e1d30f6e X-VCS-Branch: master Date: Sat, 12 Mar 2022 07:21:31 +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: 79dc7446-a300-418c-aa0d-1b382a2dce35 X-Archives-Hash: 9f007bc4e418ca4ca9079c84b441dcdd commit: 7f51056ffac6cf1d8e493c028489ea75e1d30f6e Author: Hans de Graaff gentoo org> AuthorDate: Sat Mar 12 07:14:54 2022 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat Mar 12 07:21:19 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f51056f virtual/ruby-ssl: add ruby31 version Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Hans de Graaff gentoo.org> virtual/ruby-ssl/ruby-ssl-12.ebuild | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/virtual/ruby-ssl/ruby-ssl-12.ebuild b/virtual/ruby-ssl/ruby-ssl-12.ebuild new file mode 100644 index 000000000000..a3c1681b78f3 --- /dev/null +++ b/virtual/ruby-ssl/ruby-ssl-12.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +USE_RUBY="ruby26 ruby27 ruby30 ruby31" + +inherit ruby-ng + +DESCRIPTION="Virtual ebuild for the Ruby OpenSSL bindings" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + +RDEPEND=" + ruby_targets_ruby26? ( dev-lang/ruby:2.6[ssl] ) + ruby_targets_ruby27? ( dev-lang/ruby:2.7[ssl] ) + ruby_targets_ruby30? ( dev-lang/ruby:3.0[ssl] ) + ruby_targets_ruby31? ( dev-lang/ruby:3.1[ssl] ) +" + +pkg_setup() { :; } +src_unpack() { :; } +src_prepare() { eapply_user; } +src_compile() { :; } +src_install() { :; } +pkg_preinst() { :; } +pkg_postinst() { :; }