Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/dugong/
Date: Tue, 12 Jul 2016 18:52:02
Message-Id: 1468347809.fb289c96d06aa4aeb7002b354a9cc23b2cec6e7c.radhermit@gentoo
1 commit: fb289c96d06aa4aeb7002b354a9cc23b2cec6e7c
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 12 18:19:20 2016 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 12 18:23:29 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb289c96
7
8 dev-python/dugong: version bump to 3.7
9
10 dev-python/dugong/Manifest | 1 +
11 dev-python/dugong/dugong-3.7.ebuild | 30 ++++++++++++++++++++++++++++++
12 2 files changed, 31 insertions(+)
13
14 diff --git a/dev-python/dugong/Manifest b/dev-python/dugong/Manifest
15 index fbbddcf..998c7a8 100644
16 --- a/dev-python/dugong/Manifest
17 +++ b/dev-python/dugong/Manifest
18 @@ -1,2 +1,3 @@
19 DIST dugong-3.4.tar.bz2 190012 SHA256 148a65931b52e030f8eb5e1dd2740eb62754ad0c831d15c22f923f7f8274ad33 SHA512 67cf314629298249bfe0305ce2d79f66b71d6415090fab9721e62c38549863098b3048f2936532073dfe52438cf638fbc4ce46cbdbae14b7dd5158e8d9a1cdbb WHIRLPOOL b8be0bb5f7475f85ae219199a993362759646a9972934be14372b16455b18f1f2f33f4bdb553ef762e887673dc198ac6f07d863fe715a70721f2e4763752b9af
20 DIST dugong-3.5.tar.bz2 192228 SHA256 44bc81cd25b2e8762458b59f2f2382a3e59869c457edbbcdfe03541e576f1978 SHA512 204d8fceb63e9036f026e5a23da028a41600a740ceaa42f54474a1986c19cb224ca335d81c24c257dd761ac0f58443091df1d95fb0e1776eb3227c18d5331e39 WHIRLPOOL 678525106190b82c0be3d2c0ab72d006a8bd1b4343071bfa8d9702a7d8619859406f39a59a6bd87160d9ca31bf026cb547a55bc75907f645eba2da24ab77c1e3
21 +DIST dugong-3.7.tar.bz2 193975 SHA256 68f7810742e1c54a5cddfa49992d416704c13b25263bd3278f7581cbc2adb2e1 SHA512 f6e637946ec5f402a21dc40f08ab187bed281b4b7c27c056651eac049d9aaf4c952bfa5e19c05db6cac2d284cf7dbd47250b82cdbcac998971fd10466a47fe21 WHIRLPOOL 3ee51fc0f085f94f64d04b6ef04fb69db8f4a569347eee4fbb1e18727343752dbf6b7df080776ca38b87f49d8495b5bd6361eb25f3cd12b4bc54b911be96a87c
22
23 diff --git a/dev-python/dugong/dugong-3.7.ebuild b/dev-python/dugong/dugong-3.7.ebuild
24 new file mode 100644
25 index 0000000..22d464e
26 --- /dev/null
27 +++ b/dev-python/dugong/dugong-3.7.ebuild
28 @@ -0,0 +1,30 @@
29 +# Copyright 1999-2016 Gentoo Foundation
30 +# Distributed under the terms of the GNU General Public License v2
31 +# $Id$
32 +
33 +EAPI=6
34 +PYTHON_COMPAT=( python3_{3,4,5} )
35 +
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="Python library for communicating with HTTP 1.1 servers"
39 +HOMEPAGE="https://bitbucket.org/nikratio/python-dugong/"
40 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.bz2"
41 +
42 +LICENSE="LGPL-2"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +IUSE="doc examples test"
46 +
47 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
48 + test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
49 +
50 +python_test() {
51 + py.test -v || die "Tests failed under ${EPYTHON}"
52 +}
53 +
54 +python_install_all() {
55 + use doc && local HTML_DOCS=( doc/html/. )
56 + use examples && dodoc -r examples
57 + distutils-r1_python_install_all
58 +}