Gentoo Archives: gentoo-commits

From: Alexey Zapparov <alexey@××××××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-ruby/ruby-install/
Date: Fri, 05 Aug 2022 03:23:23
Message-Id: 1659669741.0fe03346a296280de2f9673ab52fdc1d29d48c72.alexey@gentoo
1 commit: 0fe03346a296280de2f9673ab52fdc1d29d48c72
2 Author: Alexey Zapparov <alexey <AT> zapparov <DOT> com>
3 AuthorDate: Fri Aug 5 03:22:21 2022 +0000
4 Commit: Alexey Zapparov <alexey <AT> zapparov <DOT> com>
5 CommitDate: Fri Aug 5 03:22:21 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0fe03346
7
8 dev-ruby/ruby-install: add 0.8.4
9
10 Signed-off-by: Alexey Zapparov <alexey <AT> zapparov.com>
11
12 dev-ruby/ruby-install/Manifest | 1 +
13 dev-ruby/ruby-install/ruby-install-0.8.4.ebuild | 44 +++++++++++++++++++++++++
14 2 files changed, 45 insertions(+)
15
16 diff --git a/dev-ruby/ruby-install/Manifest b/dev-ruby/ruby-install/Manifest
17 index 0a6371c85..49a69c0e8 100644
18 --- a/dev-ruby/ruby-install/Manifest
19 +++ b/dev-ruby/ruby-install/Manifest
20 @@ -1 +1,2 @@
21 DIST ruby-install-0.8.3.tar.gz 32381 BLAKE2B fd2c15333e571881d9a6be67c2b968f81bd8b2d2025972dd502df35b4ce1b2a5dbfbac29327d2dfa83b779f923342c23c30423455c202a0978581ab71291ce22 SHA512 1fdd44b709a7d2eaae4b1ebf7a08381c565d7656d52cf69b98b0e00d383b39c7776848f7acd5f5f79f1a9ad935907e230c256b7cdf46714fddd9a8cfac418c9a
22 +DIST ruby-install-0.8.4.tar.gz 32652 BLAKE2B e863645c66cc631d17a3e5c061220fd59d0b0458613d31e8db4d35fbb0beae53ccf627620b9adb08bb0db82d51bd9a54a7eb96079fc3e6604c32d9b7dc219f3d SHA512 9d7157ab73689a7024efae104f6fd244c019c56d5e27573151818dd72f07855f9785b2ddba9c83a413ddcd92a565893373ca545c486c59b4fa408f349d4c7f48
23
24 diff --git a/dev-ruby/ruby-install/ruby-install-0.8.4.ebuild b/dev-ruby/ruby-install/ruby-install-0.8.4.ebuild
25 new file mode 100644
26 index 000000000..706d5e5d2
27 --- /dev/null
28 +++ b/dev-ruby/ruby-install/ruby-install-0.8.4.ebuild
29 @@ -0,0 +1,44 @@
30 +# Copyright 2021-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DESCRIPTION="Installs Ruby, JRuby, Rubinius, TruffleRuby (native / GraalVM), or mruby."
36 +HOMEPAGE="https://github.com/postmodern/ruby-install"
37 +SRC_URI="https://github.com/postmodern/ruby-install/archive/v${PV}.tar.gz -> ${P}.tar.gz"
38 +
39 +LICENSE="MIT"
40 +SLOT="0"
41 +KEYWORDS="~amd64 ~x86"
42 +IUSE="test"
43 +
44 +PROPERTIES="test_network"
45 +RESTRICT="!test? ( test )"
46 +
47 +DEPEND=">=app-shells/bash-3.0:*"
48 +RDEPEND="${DEPEND}
49 + sys-apps/grep
50 + || ( >net-misc/wget-1.12 net-misc/curl )
51 + dev-libs/openssl
52 + app-arch/tar
53 + app-arch/bzip2
54 + app-arch/xz-utils
55 + sys-devel/patch
56 + || ( >=sys-devel/gcc-4.2 sys-devel/clang )"
57 +BDEPEND="test? ( dev-util/shunit2 )"
58 +
59 +# XXX: `make check` seems to be broken (violates shellcheck tests)
60 +src_test() {
61 + emake test
62 +}
63 +
64 +src_prepare() {
65 + default
66 +
67 + sed -i Makefile -e "s/^VERSION=.\+$/VERSION=${PVR}/" \
68 + || die "Cannot fix doc location to follow Gentoo/FHS guidelines"
69 +}
70 +
71 +src_install() {
72 + emake DESTDIR="${D}" PREFIX="/usr" install
73 +}