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.3, Repoman-2.3.1
- Loading branch information
Showing
2 changed files
with
41 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 mustache-1.0.2.gem 40960 SHA256 e79dbc8bae087011ace17bfbc4ee1e652b1d5efa5d56316b09b7c2256f447d34 SHA512 4bc50bf67317e9815b125c25cd94b6c6943b4c7cdeeae3118d29b002279386f00f73a38bfcba9072253cd389634c44a8da9aba775989ab235a444796e4634450 WHIRLPOOL 310359b29b8e9a948c92e9e82045ca7b2f8f01e52c63c13d345bc01c4b3ea5949d3f765d301e9cc209facb59748f459fadb98ac91bc6edfe50f1ba9026ab5f32 | ||
DIST mustache-1.0.3.gem 40960 SHA256 4ed9d389e41c54f000ad33bba6d1939a5685c0a0c3eb02d707fc21bddf6e97ec SHA512 2329a8f63fd025cbf2dee7c8034b0914d5348874775a4df9067a8af9aa566c639dfa7a5fabf63c3f48d520d4b5b901ae47e880e5a85213c253780036e1650255 WHIRLPOOL f52f321004de712ee9a768b64d781cea9180277e1fbbd4a2303b5fa5930027be091a31b4c0d5d1f6cc34c469a499e983e60762f8b51d04a97e94397b7324bd53 | ||
DIST mustache-1.0.4.gem 41984 SHA256 2cb937ef01d3302b4dffb885b0bb738ce260998e0c421a7e7e67e1d409e11e1b SHA512 20c4a9cf5cacd62d4741c884e873095eeffc58afffb935b8f78907bc22de75a2dc591c55b378b8e3635abea625b6e630b6e68cd2a3145736fdd5eeb256168d39 WHIRLPOOL b4aee246f23aab4e70cc24abef7ff580cc2262b1f270fff76026d11dc7b8cb5cb4961fe41afcbdf0d9ea877cd03ed1cf7c23af2fe5431cbabb327cb77d6cdd1d | ||
DIST mustache-1.0.5.gem 41984 SHA256 b99ea8d83e1f5256637ff0b2a1e8b61e2513e40584074ce29c641fa64b724ec8 SHA512 d9b2c55d758bd4e317732307b513e2a079b04ec7a1203233834fd08a3a32f7b1bf8283d207af2f7082a8c4847f9c5955a557f19bad9b08a1dee2f32417eca190 WHIRLPOOL 977c790f98aebddbe78594dfe94604b845ebfb7a7d9d6934a321e12250cbeb95de92626995734b0cce9a2bb0469dead1ede8b73e8e19aa57ad79130aad3a7820 |
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,40 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=5 | ||
|
||
USE_RUBY="ruby21 ruby22 ruby23 ruby24" | ||
|
||
RUBY_FAKEGEM_TASK_TEST="" | ||
|
||
RUBY_FAKEGEM_TASK_DOC="man:build" | ||
RUBY_FAKEGEM_EXTRADOC="README.md" | ||
|
||
inherit multilib ruby-fakegem | ||
|
||
DESCRIPTION="Mustache is a framework-agnostic way to render logic-free views" | ||
HOMEPAGE="https://mustache.github.com/" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x64-macos ~x64-solaris" | ||
IUSE="" | ||
|
||
ruby_add_bdepend "doc? ( app-text/ronn )" | ||
|
||
all_ruby_prepare() { | ||
# Fix rake deprecation | ||
sed -i -e 's:rake/rdoctask:rdoc/task:' Rakefile || die | ||
|
||
sed -i -e '/simplecov/,/^end/ s:^:#:' test/helper.rb || die | ||
} | ||
|
||
each_ruby_test() { | ||
${RUBY} -Ilib:. -e "Dir['test/*.rb'].each{|f| require f}" || die | ||
} | ||
|
||
all_ruby_install() { | ||
all_fakegem_install | ||
|
||
doman man/mustache.1 man/mustache.5 | ||
} |