summaryrefslogtreecommitdiff
path: root/dev-ruby/debug_inspector
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-12-14 18:37:36 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-12-14 18:37:36 +0000
commit9df6239cdd295c4159c939a5219e7916663a2903 (patch)
tree66c8a810bc95347bc58e0e5d9d7a3dff45f1f226 /dev-ruby/debug_inspector
parent5713d5536a947bb350ae6724a03bed75aec44592 (diff)
downloadbaldeagleos-repo-9df6239cdd295c4159c939a5219e7916663a2903.tar.gz
baldeagleos-repo-9df6239cdd295c4159c939a5219e7916663a2903.tar.xz
baldeagleos-repo-9df6239cdd295c4159c939a5219e7916663a2903.zip
Adding metadata
Diffstat (limited to 'dev-ruby/debug_inspector')
-rw-r--r--dev-ruby/debug_inspector/Manifest1
-rw-r--r--dev-ruby/debug_inspector/debug_inspector-1.2.0.ebuild30
2 files changed, 31 insertions, 0 deletions
diff --git a/dev-ruby/debug_inspector/Manifest b/dev-ruby/debug_inspector/Manifest
index edd3e524e08b..f82742f89674 100644
--- a/dev-ruby/debug_inspector/Manifest
+++ b/dev-ruby/debug_inspector/Manifest
@@ -1 +1,2 @@
DIST debug_inspector-1.1.0.tar.gz 5837 BLAKE2B 49f2c4b8b872ad2be0e6c41d02f7cb64e3f2928e8f02e06ed99f2f2befffe1da4c25024a2069b8d2f19dc71ab182459f6cf75c5b717662e5cfab16a5b66cf41f SHA512 c66d5bf412d9b6a61f456e943a901dbe9018cf92c171e1a7d9a19807c7894ffdb6acaeaed2c8f688927130a14909d0e0714e5b728ad7ccbff0e5f1c0ad20c600
+DIST debug_inspector-1.2.0.tar.gz 6091 BLAKE2B 9f0f584f854ee08b220fd1753c88684cb3b17c009ded18b1f26f38c8c5d67ced7bbd3dbd1ff16c01d8c527ab270d999d4a434f362ebf2b906a887f5952d370b7 SHA512 e4328b1e36c1b196219d7e278dec2da730293857a6eb147e653f9ab6ca3628f6115f7661a98f0ca828a1a9657394aeb1392f71842a5833d8bb1c438567d4096f
diff --git a/dev-ruby/debug_inspector/debug_inspector-1.2.0.ebuild b/dev-ruby/debug_inspector/debug_inspector-1.2.0.ebuild
new file mode 100644
index 000000000000..1b698a4ce39d
--- /dev/null
+++ b/dev-ruby/debug_inspector/debug_inspector-1.2.0.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+USE_RUBY="ruby31 ruby32"
+
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+RUBY_FAKEGEM_EXTENSIONS=(ext/debug_inspector/extconf.rb)
+
+RUBY_FAKEGEM_GEMSPEC="debug_inspector.gemspec"
+
+RUBY_FAKEGEM_BINWRAP=""
+
+inherit ruby-fakegem
+
+DESCRIPTION="A Ruby wrapper for the MRI 2.0 debug_inspector API"
+HOMEPAGE="https://github.com/banister/debug_inspector"
+SRC_URI="https://github.com/banister/debug_inspector/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+all_ruby_prepare() {
+ sed -i -e '/extensiontask/,$ s:^:#:' Rakefile || die
+
+ sed -i -e 's/MiniTest/Minitest/' test/basic_test.rb || die
+}