diff options
author | Hans de Graaff <graaff@gentoo.org> | 2018-11-11 11:49:45 +0100 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2018-11-11 11:54:31 +0100 |
commit | 49bb02fa6b6cb01259697ceda7f19cbb77ee17b7 (patch) | |
tree | 87f03ce166b54e365ac12d7950d02b8db2f80091 /dev-ruby/octokit | |
parent | dev-lang/nasm: drop old (diff) | |
download | gentoo-49bb02fa6b6cb01259697ceda7f19cbb77ee17b7.tar.gz gentoo-49bb02fa6b6cb01259697ceda7f19cbb77ee17b7.tar.bz2 gentoo-49bb02fa6b6cb01259697ceda7f19cbb77ee17b7.zip |
dev-ruby/octokit: add 4.13.0
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Diffstat (limited to 'dev-ruby/octokit')
-rw-r--r-- | dev-ruby/octokit/Manifest | 1 | ||||
-rw-r--r-- | dev-ruby/octokit/octokit-4.13.0.ebuild | 33 |
2 files changed, 34 insertions, 0 deletions
diff --git a/dev-ruby/octokit/Manifest b/dev-ruby/octokit/Manifest index 866a9477ca0f..5e840bfd5f8f 100644 --- a/dev-ruby/octokit/Manifest +++ b/dev-ruby/octokit/Manifest @@ -1 +1,2 @@ +DIST octokit-4.13.0.tar.gz 3053006 BLAKE2B 7028cd8c14865a1b061a5ad95f103944b20827797e5f75dbbc8237ed91cb7c9fc79e9a9319dddd9dcee58d32071156e02c04f7d39c4073bad789cbc65887c2df SHA512 48716876e8c5d807e5ebfbd2236bc4b1558d0d1dfd5d3c4cd42b345e3c8164ea36176c23a23e2bb84078e5a6fdeba2b55c3ae8ec0a6451258fe683d84b007013 DIST octokit-4.7.0.tar.gz 2926712 BLAKE2B 07224de4132ac97525f2a8da784c74a150328f7e7ba08de32485e3fc43231e1583ddf8c16b119c85baece2cba90321059c77c624e450e98dc03ce7c84be54719 SHA512 7a760f909e4756401ce7ecfb3dc8682ec2c630b7ca1639135e61912f8dac2a18974ced1fd5b2d75ee14d1fcc567a370781c159303d7789a9a3f4b756186e72c1 diff --git a/dev-ruby/octokit/octokit-4.13.0.ebuild b/dev-ruby/octokit/octokit-4.13.0.ebuild new file mode 100644 index 000000000000..b7f0f47af5c1 --- /dev/null +++ b/dev-ruby/octokit/octokit-4.13.0.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +USE_RUBY="ruby23 ruby24" + +RUBY_FAKEGEM_RECIPE_DOC="yard" +RUBY_FAKEGEM_RECIPE_TEST="rspec3" +RUBY_FAKEGEM_EXTRADOC="README.md CONTRIBUTING.md" +RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" + +inherit multilib ruby-fakegem + +DESCRIPTION="Ruby toolkit for the Github API" +HOMEPAGE="https://github.com/octokit/octokit.rb" +SRC_URI="https://github.com/octokit/octokit.rb/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm" +IUSE="" + +RUBY_S=octokit.rb-${PV} + +ruby_add_rdepend ">=dev-ruby/sawyer-0.8.0" +ruby_add_bdepend "test? ( dev-ruby/mime-types + >=dev-ruby/netrc-0.7.7 + dev-ruby/vcr:3 + dev-ruby/webmock:3 )" + +all_ruby_prepare() { + sed -i -e '/if RUBY_ENGINE/,/^end/ s:^:#: ; 1igem "webmock", "~>3.0"' spec/helper.rb || die +} |