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.2.22 Signed-off-by: Justin Lecher <[email protected]>
- Loading branch information
Showing
2 changed files
with
38 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 pykwalify-1.4.0.tar.gz 23126 SHA256 25ab7c4303ca4631dd89de851535d1284a8799c7b696ddbf95056f0b615f4520 SHA512 072f646a9846122e74fb09b682abaf89b93ded52b9e32053586658a4a5a416bc51d051b1607358450324ceb963e3cd66ae487421275cc7928facdb2acede2797 WHIRLPOOL 826cd36b5f1061a60c2056d532671cca5865462805e5c6f6c9b83e149d9775f9a2ffb559d5ea8dd18986eb7dffe36710cc776e022c2d0b36fc51a1045e52b4a0 | ||
DIST pykwalify-1.4.1.tar.gz 36874 SHA256 2b46d0ff31d3fe26cdc2d6adbbb8f256a0cada965d847162f10f58f6254f8ac1 SHA512 d1a6a50ed29eb1c187e6b748c6cf1ce089e3c57be279adfd7f1763c9ff74968d881a14e18a6d6a1bdbd17cc15c3471807025aee9026719f78089edcd3398b5d5 WHIRLPOOL 66d58126678507a40097a1eeac7f0c5f149e04eb200b18c02689e83f638393dbbe5dcca739cb4daf1a3f95065c439ff7c4535c40fb2a83da47dfa0b88ea16ae2 | ||
DIST pykwalify-1.5.0.tar.gz 38400 SHA256 b1ddec5398c366f41ca90bb613e51444b4de84f5904937951190dffc8f57f757 SHA512 067f9306a394fe78311dae10165ff0efaadcbe5f93493b9aa46fc5072c1fcf2bc2b6cb913bd2df79d9102eaffa39a8f85ff5db1a26d437acc678f70f7aebab53 WHIRLPOOL e9226392dfffc4513f4c86ace27fdd38b8d8df39b7d47fcfad96a20ab5f6568228ee9c18dcb4ef7411769dea3b4cc31ce1b42595d2edcb9cf97f8add74288ad5 |
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,37 @@ | ||
# Copyright 1999-2015 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
|
||
PYTHON_COMPAT=( python{2_7,3_3,3_4} ) | ||
|
||
inherit distutils-r1 | ||
|
||
DESCRIPTION="Python lib/cli for JSON/YAML schema validation" | ||
HOMEPAGE="https://pypi.python.org/pypi/pykwalify https://github.com/Grokzen/pykwalify" | ||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" | ||
|
||
SLOT="0" | ||
LICENSE="MIT" | ||
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" | ||
IUSE="test" | ||
|
||
RDEPEND=" | ||
>=dev-python/docopt-0.6.2 | ||
>=dev-python/pyyaml-3.11 | ||
>=dev-python/python-dateutil-2.4.2 | ||
" | ||
DEPEND="${RDEPEND} | ||
dev-python/setuptools[${PYTHON_USEDEP}] | ||
test? ( | ||
dev-python/pytest[${PYTHON_USEDEP}] | ||
dev-python/testfixtures[${PYTHON_USEDEP}] | ||
) | ||
" | ||
|
||
PATCHES=( "${FILESDIR}"/${PN}-1.4.0-S.patch ) | ||
|
||
python_test() { | ||
py.test || die | ||
} |