commit: b91e55d0c725959afd13d38f4bfa0b08af2ab341 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org> AuthorDate: Wed Apr 2 05:19:26 2025 +0000 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org> CommitDate: Wed Apr 2 05:19:26 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b91e55d0
dev-ruby/repl_type_completor: add 0.1.11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org> dev-ruby/repl_type_completor/Manifest | 1 + .../repl_type_completor-0.1.11.ebuild | 35 ++++++++++++++++++++++ 2 files changed, 36 insertions(+) diff --git a/dev-ruby/repl_type_completor/Manifest b/dev-ruby/repl_type_completor/Manifest index 7ec7e4fe64cd..050207a0ef48 100644 --- a/dev-ruby/repl_type_completor/Manifest +++ b/dev-ruby/repl_type_completor/Manifest @@ -1,2 +1,3 @@ DIST repl_type_completor-0.1.10.tar.gz 32645 BLAKE2B dae2a9fef40482a1db7ed77f19612a7db95b9471f1b83a89a7ba7d4aa90130c9c9c3e983d9f7714ad9e3f21ec7e09028a862e4ce0d7690606788044e10b794e7 SHA512 8d90b4f8d17a4b38543ea0d8d19bb19414006f308ee262f2002d6cfa15f9297bdd130f4507061474220b3af59494dfd0173ea650105a8df2cdf1507f5f0c1178 +DIST repl_type_completor-0.1.11.tar.gz 33500 BLAKE2B 88ed128ce5284d1d8c4d4f2eb5c1fd0511960b90c64c80d983a73c155185a6727143d35bd7e2d92b7066d332bbeb92a99494c20a835441c326a597660d4a3f9b SHA512 380e5d45024c80ad616446a194f75760da843fbcd8344adc15e368d666c468f76531875639dcb779fc97367c7904c586ea55ecb020c9beba746073880733b70f DIST repl_type_completor-0.1.9.tar.gz 32275 BLAKE2B aecec4bed189fd1907f7ac50d787b87cc2e9ee22f0042d2888cfbc565e55a231725ed26c2fb5a5776ea7a427ba07def468d3bc6d7ab45576dd7486b3a889bb51 SHA512 c3c88a4127fc37614c8e651b81cbc0636684f2feddd1032f2e4a060b7a6b341d758f64afcb14e8cbfe59306caeba528fb97343cba424d4612f23e095d5486a9e diff --git a/dev-ruby/repl_type_completor/repl_type_completor-0.1.11.ebuild b/dev-ruby/repl_type_completor/repl_type_completor-0.1.11.ebuild new file mode 100644 index 000000000000..ea5efa083e4f --- /dev/null +++ b/dev-ruby/repl_type_completor/repl_type_completor-0.1.11.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +USE_RUBY="ruby31 ruby32 ruby33 ruby34" + +RUBY_FAKEGEM_BINWRAP="" +RUBY_FAKEGEM_EXTRADOC="README.md" +RUBY_FAKEGEM_GEMSPEC="repl_type_completor.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="Type based completion for REPL" +HOMEPAGE="https://github.com/ruby/repl_type_completor" +SRC_URI="https://github.com/ruby/repl_type_completor/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris" + +IUSE="test" + +ruby_add_rdepend " + dev-ruby/prism:1 + <dev-ruby/rbs-4 +" + +ruby_add_bdepend "test? ( >=dev-ruby/irb-1.10.0 =dev-ruby/rake-13* dev-ruby/test-unit dev-ruby/test-unit-ruby-core )" + +all_ruby_prepare() { + sed -e 's/__dir__/"."/' \ + -e 's:_relative ": "./:' \ + -e 's/git ls-files -z/find * -print0/' \ + -i ${RUBY_FAKEGEM_GEMSPEC} || die +}
