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 805B015817D for ; Sat, 15 Jun 2024 11:12:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2E6632BC02C; Sat, 15 Jun 2024 11:12:21 +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 11B8D2BC02C for ; Sat, 15 Jun 2024 11:12:21 +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 CCE7733C1C1 for ; Sat, 15 Jun 2024 11:12:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 08EA31D15 for ; Sat, 15 Jun 2024 11:12:17 +0000 (UTC) From: "Julien Roy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Julien Roy" Message-ID: <1718427717.5b29673e40c1a3fbc79f0ac0e3da67761d28bf34.julien@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-ruby/ruby-build/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-ruby/ruby-build/metadata.xml dev-ruby/ruby-build/ruby-build-9999.ebuild X-VCS-Directories: dev-ruby/ruby-build/ X-VCS-Committer: julien X-VCS-Committer-Name: Julien Roy X-VCS-Revision: 5b29673e40c1a3fbc79f0ac0e3da67761d28bf34 X-VCS-Branch: master Date: Sat, 15 Jun 2024 11:12:17 +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: 0a83011f-dbd4-4544-a3d1-476030599003 X-Archives-Hash: 38e4ecfdc264681935de2206fd97dc20 commit: 5b29673e40c1a3fbc79f0ac0e3da67761d28bf34 Author: Vitaly Zdanevich ya ru> AuthorDate: Sat Jun 15 05:01:57 2024 +0000 Commit: Julien Roy jroy ca> CommitDate: Sat Jun 15 05:01:57 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5b29673e dev-ruby/ruby-build: new package from https://gpo.zugaina.org/dev-ruby/ruby-build Signed-off-by: Vitaly Zdanevich ya.ru> dev-ruby/ruby-build/metadata.xml | 12 ++++++++++++ dev-ruby/ruby-build/ruby-build-9999.ebuild | 29 +++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+) diff --git a/dev-ruby/ruby-build/metadata.xml b/dev-ruby/ruby-build/metadata.xml new file mode 100644 index 000000000..d95ef0d2e --- /dev/null +++ b/dev-ruby/ruby-build/metadata.xml @@ -0,0 +1,12 @@ + + + + + Vitaly Zdanevich + zdanevich.vitaly@ya.ru + + + rbenv/rbenv + https://github.com/rbenv/rbenv/issues + + diff --git a/dev-ruby/ruby-build/ruby-build-9999.ebuild b/dev-ruby/ruby-build/ruby-build-9999.ebuild new file mode 100644 index 000000000..2743333b6 --- /dev/null +++ b/dev-ruby/ruby-build/ruby-build-9999.ebuild @@ -0,0 +1,29 @@ +# Copyright 2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit git-r3 + +DESCRIPTION="Installs virtually any version of Ruby, from source" +HOMEPAGE="https://github.com/rbenv/ruby-build" +LICENSE="MIT" + +SLOT=0 +EGIT_REPO_URI="https://github.com/rbenv/ruby-build.git" +EGIT_BRANCH=master + +src_compile() { + : +} + +src_install() { + dobin bin/ruby-build + exeinto /usr/libexec/rbenv + doexe bin/rbenv-install + doexe bin/rbenv-uninstall + insinto /usr/share/ruby-build + doins share/ruby-build/* + doman share/man/man1/*.1 + dodoc README.md +}