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.0
- Loading branch information
Showing
2 changed files
with
27 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,2 +1,3 @@ | ||
DIST vcard-0.2.13.gem 51712 SHA256 21dced9d23efcca9151314e378693617767ef47f99de9f91851f4f77be41e2cf SHA512 4ab38ad9408349e7a8fc15ebb75d7bfa50607e81987965bf03625cde0991df8a11c78ae7e2e5d7144e555f7d501ac5e0e4575015068d2dd8f579f4ffd392dae7 WHIRLPOOL f3d592db49396c79c491ba7589b096e62811073ff2c29b91d62405cbd1e431931806a18b57e3249c5ac889f41001fbdb97ef2dd6317094a1193bc42e76460a07 | ||
DIST vcard-0.2.14.gem 52224 SHA256 e96322ec96b0597b9a444979c080a27031a5b9544b907a92144dfa29d33013c4 SHA512 b40223afac51391c6da6350e59405e5450647a9136b7e2b3873d111731a4c922af6ade23c30b7d02ebcd9f04cfa032a56ade528333f5930c9d073d42e813d049 WHIRLPOOL ec2d71563affe487f47e7c44e4a0f816e7456455375297ff65ddca85b3d7eef4fc237f404820497a5eec7eddc308f1c98cec8422397ec3abd89fe5590550298a | ||
DIST vcard-0.2.15.gem 52224 SHA256 8da9c4eea13031436c0ac3bcb0548ea2803ce98c03ca92ce35d1aa76a3ff4ea9 SHA512 598133f82fcbb3e953a0ec9e933fd140f5b3501870a1698f202ae7990aea82aa2c9951c7ab4e6abd29b826771fb810fee3c8c890feb0ca3a19bd3ca9197c176b WHIRLPOOL 2a47a4192527c1317b10a19180b58ce973c0fe510c520980f3afd5b537e7775a6fd42e06074abf074b9afcd999b00e570dd90cdabcf5dd2fdb3a85f4e1d9ce4a |
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,26 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
USE_RUBY="ruby20 ruby21 ruby22 ruby23" | ||
|
||
# Avoid the complexity of the "rake" recipe and run testrb-2 manually. | ||
RUBY_FAKEGEM_RECIPE_TEST=none | ||
RUBY_FAKEGEM_RECIPE_DOC=none | ||
|
||
inherit ruby-fakegem | ||
|
||
DESCRIPTION="Ruby vcard support extracted from Vpim" | ||
HOMEPAGE="https://github.com/qoobaa/vcard" | ||
|
||
LICENSE="GPL-3" | ||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
IUSE="" | ||
|
||
ruby_add_bdepend "test? ( dev-ruby/test-unit:2 )" | ||
|
||
each_ruby_test() { | ||
ruby-ng_testrb-2 --load-path=lib --pattern='.*_test\.rb' test/ | ||
} |