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.
Signed-off-by: Hans de Graaff <[email protected]> Package-Manager: Portage-2.3.62, Repoman-2.3.11
- Loading branch information
Showing
2 changed files
with
26 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 json_schema-0.20.3.tar.gz 35400 BLAKE2B 3d61fab9aa47dc39e74ace68be005a7816c444737b7205eeb5b0b0f408da84e08f53ae22aee6fe8f5101231a33a5914dd57abdc556a1d2cf9ba4f5b30627d7fb SHA512 570afa5bc15899a6797bafaa50b11256442b377abfabd713c1a7c57188b394f86987a104e282540f09ee3e02c13df11a8a88df625834566233e00fa5553af80d | ||
DIST json_schema-0.20.4.tar.gz 35695 BLAKE2B 07e3f834992dd0f8405f53171a6351d6df755695741d675a2fe34410a40a69299330f2be769dc9a113e4169f6b7698e785061a71e73f0252d6652feca50b8046 SHA512 8b924908bd8e8fe484c85b275b941c3aeb14da1c90aa78f541b8c71471d296f1e935cf0a1944819d96969b687425c3dbd930f626e5627dc6a99a67f26743d545 | ||
DIST json_schema-0.20.5.tar.gz 36099 BLAKE2B 74cafca0d4e369bd7d5ac9a502ed4933aaa37682d67cb2c73cdf338373621b14805a91a365355052c6c4afed917101475ba80ed00f8bc0d01642d1d113d56888 SHA512 9a61d4709fd06aa5b7806cc9f313daa2bf6d632e9c231e2761cda324f0339b5d3a9bde1e96afc02f93ef81414bec93e8fab94df5221ef7809f29a4c0f3f79f54 | ||
DIST json_schema-0.20.6.tar.gz 36231 BLAKE2B 79874e4e7af3c856783ad5eb4c3085ea087195d46ebcf41e12302025dd899e70c81808889ad8e417d3aba1384444beafbd747cddaa4740fd6be9fdd7a4aa2907 SHA512 09fc6f5574da27e69cc13e5b081e27a78425c41606d89e794d77b15f56a17f709ee6a0267b247535da1ee9e71f2b4da9e2e278052a5d53c7d6f9ebbe3e314936 |
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,25 @@ | ||
# Copyright 1999-2019 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
USE_RUBY="ruby24 ruby25 ruby26" | ||
|
||
RUBY_FAKEGEM_RECIPE_DOC="rdoc" | ||
RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.md TODO.md" | ||
|
||
RUBY_FAKEGEM_EXTRAINSTALL="schemas" | ||
|
||
inherit ruby-fakegem | ||
|
||
DESCRIPTION="A JSON Schema V4 and Hyperschema V4 parser and validator" | ||
HOMEPAGE="https://github.com/brandur/json_schema" | ||
SRC_URI="https://github.com/brandur/json_schema/archive/v${PV}.tar.gz -> ${P}.tar.gz" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
IUSE="" | ||
|
||
all_ruby_prepare() { | ||
sed -i -e '/^if/,/^end/ s:^:#:' test/test_helper.rb || die | ||
} |