forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package-Manager: Portage-2.3.8, Repoman-2.3.3
- Loading branch information
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
DIST bunny-2.6.5.gem 198144 SHA256 c400c6dda078e8a57c6273a671518d344c8832f1191a747d0420f511b8f56a1d SHA512 e1e15e12d7d36c0022ba4da4b2a934688054756fee7fb8e11b43532ce0be12aea37a6224e81602b0b27b0952dd014f1d2f59f4bb8d28b484e1d48dc2bfa89f3a WHIRLPOOL f9eb84322d3d816b9fda0e95f9eeff199471be87f7471a0b1ba2d8a214d1e8eb4b5c0f1de11989f57e2605d6e50c27c24e6904b031b0014b62877c15df3a21a4 | ||
DIST bunny-2.7.0.gem 198144 SHA256 0c1c54e0b0597d9f2663574a0ef6e104976126912a073239a782d79d587101e9 SHA512 dc44ce5a8b05fe7bd68a9d6fe8c7d0bb7f7ead3500582ff273dcdabba8e9ff104f3f2b0990c004d9217839881d1e3a79494d211b32723a866655d1e0bec2899c WHIRLPOOL c00f57d6a36c3cf9422b5af24e9061f9717f142e9fa6fc9bd3674120e97173e434ec6261ad1a3199c41a81c70cf6ce28b1769c51f8ebe7658fbc0bb2383af97d | ||
DIST bunny-2.7.1.gem 199168 SHA256 34d522c07764c45c6705443e39d46716af23227f0288bb15b23077607253bcef SHA512 9222ff4cf2e0261f82ad98ec75b697f1fee7f0f0cf998e14edffdbc16bbcb93ba2206051d712a8b6e6452345ef12043c094c6f7bc88bd203b3c171765c5e0422 WHIRLPOOL 6b96d2264858cfabc8f70654fd197e94d6867a43c86a4df1dd3f59bfbd3463c0980fc99debb6bb4aafac9272bd074679abe17937f2517d9ccd51b9615dcbefcf | ||
DIST bunny-2.7.2.gem 199168 SHA256 a1e6350688da415753a2a7e636824dca433a8a1df1fee762208ef65f58f29c9e SHA512 acba94a6611be0c72d10016366c00f8a2c84c36e897d1e9b179f49ae717edd1d6ade5b90fa963d1f830a315927be01267d0f848bd8f3016978ab2b2ec38c6bde WHIRLPOOL 7af921e0fe28d357c72ba696e914537598d63ce680103589aab2bdc0990ef0388dcb9e6781a6ab45db7bb6a50cc27d9de2bc15fc7ceaa42ea340a9701ab17b64 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
USE_RUBY="ruby22 ruby23 ruby24" | ||
|
||
RUBY_FAKEGEM_TASK_DOC="" | ||
|
||
# Tests require a live AMQP server. | ||
RUBY_FAKEGEM_TASK_TEST="" | ||
|
||
RUBY_FAKEGEM_EXTRADOC="ChangeLog.md README.md" | ||
|
||
RUBY_FAKEGEM_BINWRAP="" | ||
|
||
inherit ruby-fakegem | ||
|
||
DESCRIPTION="Another synchronous Ruby AMQP client" | ||
HOMEPAGE="https://github.com/celldee/bunny" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="" | ||
|
||
ruby_add_rdepend ">=dev-ruby/amq-protocol-2.2.0:2" | ||
|
||
all_ruby_install() { | ||
all_fakegem_install | ||
|
||
insinto /usr/share/doc/${PF} | ||
doins -r examples || die | ||
} |