Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/httmock/
Date: Thu, 24 Dec 2015 00:08:13
Message-Id: 1450865627.a7b48c17cb68dc6133aea0e5f4231d972de962ca.monsieurp@gentoo
1 commit: a7b48c17cb68dc6133aea0e5f4231d972de962ca
2 Author: Tomas Mozes <hydrapolic <AT> gmail <DOT> com>
3 AuthorDate: Wed Dec 23 10:13:47 2015 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 23 10:13:47 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7b48c17
7
8 dev-python/httmock: version bump to 1.2.3
9
10 Package-Manager: portage-2.2.26
11
12 dev-python/httmock/Manifest | 1 +
13 dev-python/httmock/httmock-1.2.3.ebuild | 25 +++++++++++++++++++++++++
14 2 files changed, 26 insertions(+)
15
16 diff --git a/dev-python/httmock/Manifest b/dev-python/httmock/Manifest
17 index e6ffa34..6eb9009 100644
18 --- a/dev-python/httmock/Manifest
19 +++ b/dev-python/httmock/Manifest
20 @@ -1 +1,2 @@
21 DIST httmock-1.2.2.tar.gz 4975 SHA256 4dd4eddd8dba38c2b279c6fc7487fb92e91b1ae5d945a496bf059ea2b2aaf06c SHA512 0be8ae754bd3ae34166b0b001a44e664b07488ba6d44ed3dc518b310b82418dc5ab2f15ef13cb20909109f19c22a6e13dfdfdfa37f26f3c0688b19f2321be767 WHIRLPOOL 7d1315845e7a72975d5e0f8ae483f17b5e033a230cf020c770e804091c7a0ef5e94c4649720db3f3f5c68d2a19d7a45ab5d696118719967913e4c1ee01f9234c
22 +DIST httmock-1.2.3.tar.gz 5203 SHA256 030cca3f3210b902aaa28524183dc061a2ef9afd3da6a9b40ce0c09d28d50d4d SHA512 23b7295f2685639eba44714b3dadbd6eca20b7f50e636d6490d5c3f581429d84e1f4b1e15f4ba31a7ccee1596768003e68a7f1591b75aeb3d5811b279b3f1bb1 WHIRLPOOL 4eea5a2637e88309a19a05ba5788f8d53a062f0e54458d9ace1e3262affc4104c7953ebceaef52c5fdabcc5b30a520557e75ca5aaa0473159a286d3340200221
23
24 diff --git a/dev-python/httmock/httmock-1.2.3.ebuild b/dev-python/httmock/httmock-1.2.3.ebuild
25 new file mode 100644
26 index 0000000..c34228d
27 --- /dev/null
28 +++ b/dev-python/httmock/httmock-1.2.3.ebuild
29 @@ -0,0 +1,25 @@
30 +# Copyright 1999-2015 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +
36 +PYTHON_COMPAT=( python{2_7,3_4,3_5} pypy )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="A mocking library for requests"
41 +HOMEPAGE="https://github.com/patrys/httmock"
42 +SRC_URI="https://github.com/patrys/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="Apache-2.0"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +IUSE=""
48 +
49 +RDEPEND=">=dev-python/requests-1.0.0[${PYTHON_USEDEP}]"
50 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
51 +
52 +python_test() {
53 + esetup.py test
54 +}