commit:     c499a098ca8bf4ae37fc2de1dcf1283401f97b67
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 31 07:02:56 2024 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sat Aug 31 07:02:56 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c499a098

dev-ruby/vagrant_cloud: loosen rexml dependency

Closes: https://bugs.gentoo.org/926100
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>

 .../vagrant_cloud/vagrant_cloud-3.1.1-r1.ebuild    | 43 ++++++++++++++++++++++
 1 file changed, 43 insertions(+)

diff --git a/dev-ruby/vagrant_cloud/vagrant_cloud-3.1.1-r1.ebuild 
b/dev-ruby/vagrant_cloud/vagrant_cloud-3.1.1-r1.ebuild
new file mode 100644
index 000000000000..0bcaa24fc724
--- /dev/null
+++ b/dev-ruby/vagrant_cloud/vagrant_cloud-3.1.1-r1.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+USE_RUBY="ruby31 ruby32 ruby33"
+
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_GEMSPEC="vagrant_cloud.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Vagrant Cloud API Library"
+HOMEPAGE="https://github.com/hashicorp/vagrant_cloud";
+SRC_URI="https://github.com/hashicorp/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64"
+IUSE="test"
+
+ruby_add_rdepend "
+       >=dev-ruby/excon-0.73
+       >=dev-ruby/log4r-1.1.10
+       >=dev-ruby/rexml-3.2.5:3
+"
+ruby_add_bdepend ">=dev-ruby/rake-12.3
+       test? (
+               >=dev-ruby/webmock-3.0
+       )
+"
+
+all_ruby_prepare() {
+       # # loosen dependencies
+       sed -e 's:require_relative ":require "./:' \
+               -e '/log4r/s/~>/>=/' \
+               -e '/rake/s/~>/>=/' \
+               -e '/rspec/s/~>/>=/' \
+               -e '/webmock/s/~>/>=/' \
+               -e '/rexml/ s/3.2.5/3.2/' \
+               -i ${PN}.gemspec || die
+}

Reply via email to