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.
dev-python/yarl: version bump to 0.10.3
Package-Manager: Portage-2.3.6, Repoman-2.3.2
- 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,2 +1,3 @@ | ||
DIST yarl-0.10.2.tar.gz 127679 SHA256 a042c5b3584531cd09cd5ca647f71553df7caaa3359b9b3f7eb34c3b1045b38d SHA512 b385a4165b7d095e4d6e2ec5c808c6536e044fb7750000d917370ca4ca66162ed60b142e33eedb02f608bd8b005f6d1f18304992fe00702ea30dd746a0ad9a88 WHIRLPOOL 4d64a9051b00eed92b48afa2340374f125ac4de05c6886bc7dd706734518308cbf7c29086e9f812331831800bda659f027cf4c4a1b91a80d1762387a55d3d175 | ||
DIST yarl-0.10.3.tar.gz 127867 SHA256 27b24ba3ef3cb8475aea1a655a1750bb11918ba139278af21db5846ee9643138 SHA512 61df025fb906ecd95b8360bda224801baac5268215f6957837415cfe56a64c90e29bcd0b6a2dd7f253d1142643058301d362952cd3c8f8dd5f5a78a2da413177 WHIRLPOOL 911bd5861e6be7657fe62c0fb02b0fb70a1f5582ac45de48fca7aa5ca07502ea890c5999c2a066e2a87157a6452e42194235c36fb8177b563f9787007ce1db1a | ||
DIST yarl-0.9.8.tar.gz 125806 SHA256 a7818b0654265623525b56e78b901315a9ffb7ef0bf21b4af7e0e27572d54dec SHA512 67446ca618a2539f8c1fc8a7a96d1ce50a924ece0479e01103347f73a7bd75b0fbdd0ff5c007529195c3f12aa62d185563e761557fcb95b3226eaece65c0be9f WHIRLPOOL 422cdd47982e44a64f89d689882a31038728dab0e827f5d44b7e25e81fe2a89f888f060f7971a4b6ff901627596d65da73035be8673efcd186d5af25da01cd8f |
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-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
PYTHON_COMPAT=( python3_{4,5,6} ) | ||
|
||
inherit distutils-r1 | ||
|
||
DESCRIPTION="Yet another URL library" | ||
HOMEPAGE="https://github.com/aio-libs/yarl/" | ||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" | ||
|
||
LICENSE="Apache-2.0" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="test" | ||
|
||
RDEPEND="dev-python/multidict[${PYTHON_USEDEP}]" | ||
DEPEND="${RDEPEND} | ||
dev-python/setuptools[${PYTHON_USEDEP}] | ||
test? ( dev-python/pytest[${PYTHON_USEDEP}] )" | ||
|
||
python_test() { | ||
py.test -v || die "Tests fail with ${EPYTHON}" | ||
} |