From: "Hans de Graaff" <graaff@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/aruba/
Date: Wed, 4 Aug 2021 06:41:59 +0000 (UTC) [thread overview]
Message-ID: <1628059312.87a14dce5839bfb6b0109507caf8984603346dae.graaff@gentoo> (raw)
commit: 87a14dce5839bfb6b0109507caf8984603346dae
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 4 06:39:23 2021 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Wed Aug 4 06:41:52 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87a14dce
dev-util/aruba: add 2.0.0
Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-util/aruba/Manifest | 1 +
dev-util/aruba/aruba-1.1.2-r1.ebuild | 62 ++++++++++++++++++++++++++++++++++
dev-util/aruba/aruba-2.0.0.ebuild | 64 ++++++++++++++++++++++++++++++++++++
3 files changed, 127 insertions(+)
diff --git a/dev-util/aruba/Manifest b/dev-util/aruba/Manifest
index bc5fd83ce2d..bcd83126e49 100644
--- a/dev-util/aruba/Manifest
+++ b/dev-util/aruba/Manifest
@@ -3,3 +3,4 @@ DIST aruba-0.6.2.gem 75776 BLAKE2B 569af009cc20b644878fda25b5e7f79bd2f7c6f5fa9ef
DIST aruba-1.0.2.tar.gz 132977 BLAKE2B 762abef412a62e91931690a0a56ee1b04868c9f446f79e1c282e15c1ded1faf609d480e7fb032b09c3230e2d233b3cb0e09a58b2950c7a138f486c34339b8a0c SHA512 ff9161a94627e1bd123c00a0c3dd8624034b10741867d60c85264322e4ae5f2226d585d361fe8f2229003c187a1dff38c4278c359f018ca28cef1fd6efd26aa0
DIST aruba-1.0.3.tar.gz 133790 BLAKE2B 4008cfec1bc1d63113b1d8961e3bd6219f3884875350b5f2ec6676f6a6167e9bbc6b759c8cc0a29a6774877d3ab2f1c95954d83dbfe3e79669cc8968c1c533ec SHA512 ff89846b805267e2a4bff394c8285b9227d40a2cd93a7ca8fdf8cd6d38a3b2144d5e96b0bd1cef94714df630ad7a779d609e05585c671371124b400130f3b3b4
DIST aruba-1.1.2.tar.gz 132680 BLAKE2B 328c012eccfb988eec280a102da94150d1811fc67816c09aa2b94f1b6a06ca68e21cd4612e87fba089f4eb9f3b90716cfe121bda306936eeb53019cec539e651 SHA512 58f658c118fe83ddfbb6c361ab3ce6ae5e6084e4233dba62350eba1c911d8ad0558d1ca604206691d097a48453d608042bd992730b92971cdd3d2475d8f6ca4e
+DIST aruba-2.0.0.tar.gz 132762 BLAKE2B b06190d3a1698c5a2d295df16096b2bd587c60a9c428d35e8ad24204b71b7a3d86f5b52a5f601f57204903412508faad3d4032f1499d78a309a99df63e8a68e5 SHA512 214de8dd3dd29b46ddac2605bab5008ac9d9755eef53c140aea5f160aba60ed9ac71ac5e1410f59700ddd8a506faedf6b54d99682c875faeaecbb47ad8660435
diff --git a/dev-util/aruba/aruba-1.1.2-r1.ebuild b/dev-util/aruba/aruba-1.1.2-r1.ebuild
new file mode 100644
index 00000000000..0d5d922bf2a
--- /dev/null
+++ b/dev-util/aruba/aruba-1.1.2-r1.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+USE_RUBY="ruby26 ruby27"
+
+RUBY_FAKEGEM_RECIPE_TEST="cucumber"
+RUBY_FAKEGEM_RECIPE_DOC="none"
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
+
+RUBY_FAKEGEM_GEMSPEC="aruba.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Cucumber steps for driving out command line applications"
+HOMEPAGE="https://github.com/cucumber/aruba"
+SRC_URI="https://github.com/cucumber/aruba/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+LICENSE="MIT"
+
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~s390 ~sparc ~x86"
+SLOT="$(ver_cut 1)"
+IUSE=""
+
+DEPEND="${DEPEND} test? ( sys-devel/bc )"
+RDEPEND="${RDEPEND}"
+
+ruby_add_rdepend "
+ =dev-ruby/bundler-2*
+ >=dev-ruby/childprocess-2.0 <dev-ruby/childprocess-5
+ >=dev-ruby/contracts-0.16.0:0 <dev-ruby/contracts-0.18:0
+ >=dev-ruby/rspec-expectations-3.4:3
+ dev-ruby/thor:1
+ >=dev-util/cucumber-2.4 <dev-util/cucumber-7"
+
+ruby_add_bdepend "test? ( dev-ruby/pry dev-ruby/rspec:3 )"
+
+all_ruby_prepare() {
+ # Remove bundler-related code.
+ sed -i -e '/[Bb]undler/d' Rakefile spec/spec_helper.rb || die
+ rm Gemfile || die
+
+ sed -i -e '/simplecov/I s:^:#:' \
+ -e '/Before/,/^end/ s:^:#:' \
+ spec/spec_helper.rb features/support/env.rb || die
+ rm -f features/support/simplecov_setup.rb || die
+
+ sed -e 's:_relative ": "./:' \
+ -e 's/git ls-files -z/find * -print0/' \
+ -i ${RUBY_FAKEGEM_GEMSPEC} || die
+
+ # Avoid features with minor output differences
+ sed -i -e '/Use .aruba. with .Minitest./i@wip' features/01_getting_started_with_aruba/supported_testing_frameworks.feature || die
+ sed -i -e '/Create files for Minitest/i@wip' features/06_use_aruba_cli/initialize_project_with_aruba.feature || die
+
+ # Avoid feature that requires aruba to be installed already
+ rm -r features/03_testing_frameworks/cucumber/disable_bundler.feature || die
+}
+
+each_ruby_test() {
+ RSPEC_VERSION=3 ruby-ng_rspec
+ RUBYLIB="$(pwd)/lib" ruby-ng_cucumber
+}
diff --git a/dev-util/aruba/aruba-2.0.0.ebuild b/dev-util/aruba/aruba-2.0.0.ebuild
new file mode 100644
index 00000000000..a3476f7ee53
--- /dev/null
+++ b/dev-util/aruba/aruba-2.0.0.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+USE_RUBY="ruby26 ruby27"
+
+RUBY_FAKEGEM_RECIPE_TEST="cucumber"
+RUBY_FAKEGEM_RECIPE_DOC="none"
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
+RUBY_FAKEGEM_BINDIR="exe"
+
+RUBY_FAKEGEM_GEMSPEC="aruba.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Cucumber steps for driving out command line applications"
+HOMEPAGE="https://github.com/cucumber/aruba"
+SRC_URI="https://github.com/cucumber/aruba/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+LICENSE="MIT"
+
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~s390 ~sparc ~x86"
+SLOT="$(ver_cut 1)"
+IUSE=""
+
+DEPEND="${DEPEND} test? ( sys-devel/bc )"
+RDEPEND="${RDEPEND}"
+
+ruby_add_rdepend "
+ =dev-ruby/bundler-2*
+ >=dev-ruby/childprocess-2.0 <dev-ruby/childprocess-5
+ >=dev-ruby/contracts-0.16.0:0 <dev-ruby/contracts-0.18:0
+ >=dev-ruby/rspec-expectations-3.4:3
+ dev-ruby/thor:1
+ >=dev-util/cucumber-2.4 <dev-util/cucumber-8
+ !<dev-util/aruba-1.1.2-r1"
+
+ruby_add_bdepend "test? ( dev-ruby/pry dev-ruby/rspec:3 )"
+
+all_ruby_prepare() {
+ # Remove bundler-related code.
+ sed -i -e '/[Bb]undler/d' Rakefile spec/spec_helper.rb || die
+ rm Gemfile || die
+
+ sed -i -e '/simplecov/I s:^:#:' \
+ -e '/Before/,/^end/ s:^:#:' \
+ spec/spec_helper.rb features/support/env.rb || die
+ rm -f features/support/simplecov_setup.rb || die
+
+ sed -e 's:_relative ": "./:' \
+ -e 's/git ls-files -z/find * -print0/' \
+ -i ${RUBY_FAKEGEM_GEMSPEC} || die
+
+ # Avoid features with minor output differences
+ sed -i -e '/Use .aruba. with .Minitest./i@wip' features/01_getting_started_with_aruba/supported_testing_frameworks.feature || die
+ sed -i -e '/Create files for Minitest/i@wip' features/06_use_aruba_cli/initialize_project_with_aruba.feature || die
+
+ # Avoid feature that requires aruba to be installed already
+ rm -r features/03_testing_frameworks/cucumber/disable_bundler.feature || die
+}
+
+each_ruby_test() {
+ RSPEC_VERSION=3 ruby-ng_rspec
+ RUBYLIB="$(pwd)/lib" ruby-ng_cucumber
+}
next reply other threads:[~2021-08-04 6:42 UTC|newest]
Thread overview: 97+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-08-04 6:41 Hans de Graaff [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-02-03 15:11 [gentoo-commits] repo/gentoo:master commit in: dev-util/aruba/ Hans de Graaff
2025-01-03 8:51 Hans de Graaff
2024-12-24 8:04 Hans de Graaff
2024-09-11 15:04 Arthur Zamarin
2024-07-12 6:21 Ionen Wolkens
2024-07-11 16:58 Hans de Graaff
2024-07-02 3:56 Ionen Wolkens
2024-06-08 11:12 Arthur Zamarin
2024-05-25 7:28 Hans de Graaff
2024-02-02 4:21 Ionen Wolkens
2024-01-18 8:06 Florian Schmaus
2024-01-18 8:06 Florian Schmaus
2024-01-18 8:06 Florian Schmaus
2024-01-18 8:06 Florian Schmaus
2024-01-03 8:53 WANG Xuerui
2023-12-23 16:25 Arthur Zamarin
2023-12-23 7:31 Hans de Graaff
2023-12-17 12:34 Hans de Graaff
2023-12-08 20:15 Arthur Zamarin
2023-11-08 13:37 Jakov Smolić
2023-10-30 6:55 Hans de Graaff
2023-07-12 18:53 Hans de Graaff
2023-03-29 13:04 Sam James
2023-03-29 13:04 Sam James
2023-03-29 9:36 Hans de Graaff
2023-03-27 7:37 Hans de Graaff
2022-11-26 10:28 Hans de Graaff
2022-05-16 0:51 Yixun Lan
2022-05-08 16:12 WANG Xuerui
2022-04-23 8:01 Hans de Graaff
2021-10-03 7:38 Hans de Graaff
2021-10-03 7:38 Hans de Graaff
2021-07-18 4:48 Hans de Graaff
2020-12-15 2:37 Matt Turner
2020-11-29 0:13 Sergei Trofimovich
2020-09-24 18:23 Sergei Trofimovich
2020-09-20 6:39 Hans de Graaff
2020-09-14 6:09 Hans de Graaff
2020-07-23 15:02 Hans de Graaff
2020-07-23 15:02 Hans de Graaff
2020-07-23 15:02 Hans de Graaff
2020-07-11 9:28 Hans de Graaff
2020-05-02 5:18 Hans de Graaff
2020-03-30 5:39 Hans de Graaff
2020-03-18 6:19 Matt Turner
2020-02-15 6:44 Hans de Graaff
2019-10-20 7:00 Hans de Graaff
2019-06-05 17:56 Hans de Graaff
2019-06-05 7:28 Agostino Sarubbo
2019-05-04 7:49 Hans de Graaff
2019-05-02 21:38 Mikle Kolyada
2019-04-28 20:12 Mikle Kolyada
2019-04-27 19:20 Sergei Trofimovich
2019-04-27 16:25 Sergei Trofimovich
2019-04-27 16:03 Sergei Trofimovich
2019-04-26 20:54 Mikle Kolyada
2019-04-24 17:02 Sergei Trofimovich
2019-04-23 19:33 Mikle Kolyada
2018-12-27 2:57 Matt Turner
2018-12-27 2:57 Matt Turner
2018-06-25 19:24 Hans de Graaff
2018-06-25 19:24 Hans de Graaff
2018-06-25 19:24 Hans de Graaff
2018-06-18 18:07 Tobias Klausmann
2018-06-14 19:22 Mikle Kolyada
2018-05-22 16:33 Hans de Graaff
2018-05-06 16:18 Hans de Graaff
2018-04-08 23:44 Matt Turner
2018-03-22 20:23 Jeroen Roovers
2018-03-18 22:38 Sergei Trofimovich
2018-03-18 19:59 Markus Meier
2018-03-06 22:28 Sergei Trofimovich
2018-01-24 16:43 Hans de Graaff
2018-01-24 16:43 Hans de Graaff
2018-01-24 7:02 Hans de Graaff
2018-01-21 8:56 Hans de Graaff
2017-12-29 17:41 Sergei Trofimovich
2017-12-28 18:45 Thomas Deutschmann
2017-12-27 20:06 Sergei Trofimovich
2017-12-20 22:21 Sergei Trofimovich
2017-11-26 10:02 Hans de Graaff
2017-10-01 0:56 Thomas Deutschmann
2017-09-02 6:53 Hans de Graaff
2017-08-22 9:19 Sergei Trofimovich
2017-07-29 22:22 Sergei Trofimovich
2017-07-23 5:59 Hans de Graaff
2017-06-06 22:12 Sergei Trofimovich
2017-04-17 6:45 Hans de Graaff
2017-02-27 17:01 Michael Weber
2017-02-14 0:36 Michael Weber
2017-02-14 0:36 Michael Weber
2016-12-03 6:37 Hans de Graaff
2016-09-01 19:49 Hans de Graaff
2016-04-10 0:26 Manuel Rüger
2015-10-26 6:01 Jeroen Roovers
2015-09-21 14:14 Tobias Klausmann
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1628059312.87a14dce5839bfb6b0109507caf8984603346dae.graaff@gentoo \
--to=graaff@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox