From: "Justin Lecher" <jlec@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/mock/
Date: Mon, 23 Nov 2015 10:05:47 +0000 (UTC) [thread overview]
Message-ID: <1448273131.2e460830ffec25ed1b7226890864a7b08d780df0.jlec@gentoo> (raw)
commit: 2e460830ffec25ed1b7226890864a7b08d780df0
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 23 10:01:53 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Nov 23 10:05:31 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e460830
dev-python/mock: Drop old
Package-Manager: portage-2.2.25
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
dev-python/mock/Manifest | 1 -
dev-python/mock/mock-1.0.1-r1.ebuild | 36 ------------------------------
dev-python/mock/mock-1.2.0.ebuild | 43 ------------------------------------
3 files changed, 80 deletions(-)
diff --git a/dev-python/mock/Manifest b/dev-python/mock/Manifest
index 87ab07a..c0ae945 100644
--- a/dev-python/mock/Manifest
+++ b/dev-python/mock/Manifest
@@ -1,3 +1,2 @@
DIST mock-1.0.1.tar.gz 818644 SHA256 b839dd2d9c117c701430c149956918a423a9863b48b09c90e30a6013e7d2f44f SHA512 4f6f4ebc34843e16b15d866e415ad9992e79bd266a63a22fee31b773ba77615e3406bc8890ceed92c0ee296380d68c46299c4c4448a3526f9cb96b258d32cf58 WHIRLPOOL d5a83199a355d9dc8f327f287e6f6fb889f569eb6642c86390aead3f91505c5fb98512e15ed34cadb407dc0a56d541395132872f1a910d20d330d6d3190f164c
-DIST mock-1.2.0.tar.gz 70370 SHA256 c2df20835beea1c018f4ecc8382317c50aea01351caae1730933f564757d571e SHA512 61a04ca2d4f1f0d9f682b86d569a1f1eafa077f0dcb40903d3970b4d29e31b4258259c26e55548e0c49bbb14ca21715233d58d9f34ca4afb3cec2d683fbf043f WHIRLPOOL b93ed20a696e90f48e83016f90560a2504f6892d8f33d7075e19dcae9c9d8b59d69c5022355cb8b95c119970478a7bf244b34455cbe75d36438efaec78e82673
DIST mock-1.3.0.tar.gz 70908 SHA256 1e247dbecc6ce057299eb7ee019ad68314bb93152e81d9a6110d35f4d5eca0f6 SHA512 10cbb78b89f2e82abfcadc035a526182f83b59df4775cd85acfdbeb4505791c63b7a3761e6126a08d9aedbd07ead8632ac2a728dc07a362f4aaeea694bdecaf9 WHIRLPOOL 783fa1a7dade482c318805cc34bc642e29403e2fd1e6010acf212283d20981216cc8ef85cfea3e72c9f521d2954cf8e895cbe7ee126cd84d780c8b80727421f2
diff --git a/dev-python/mock/mock-1.0.1-r1.ebuild b/dev-python/mock/mock-1.0.1-r1.ebuild
deleted file mode 100644
index 9749052..0000000
--- a/dev-python/mock/mock-1.0.1-r1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# 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} pypy )
-
-inherit distutils-r1
-
-DESCRIPTION="A Python Mocking and Patching Library for Testing"
-HOMEPAGE="http://www.voidspace.org.uk/python/mock/ https://pypi.python.org/pypi/mock"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos"
-IUSE="doc test"
-
-# dev-python/unittest2 is not required with Python >=3.2.
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
- test? ( dev-python/nose[${PYTHON_USEDEP}] )"
-RDEPEND=""
-
-python_test() {
- nosetests || die "Tests fail with ${EPYTHON}"
-}
-
-python_install_all() {
- local DOCS=( docs/*.txt )
-
- distutils-r1_python_install_all
-
- if use doc; then
- dohtml -r html/ -x html/objects.inv -x html/output.txt -x html/_sources
- fi
-}
diff --git a/dev-python/mock/mock-1.2.0.ebuild b/dev-python/mock/mock-1.2.0.ebuild
deleted file mode 100644
index ae8a062..0000000
--- a/dev-python/mock/mock-1.2.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 python3_{3,4} pypy )
-
-inherit distutils-r1
-
-DESCRIPTION="Rolling backport of unittest.mock for all Pythons"
-HOMEPAGE="https://github.com/testing-cabal/mock"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~m68k ~mips ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos"
-IUSE="doc test"
-
-CDEPEND="
- >=dev-python/pbr-1.3[${PYTHON_USEDEP}]
- virtual/python-funcsigs[${PYTHON_USEDEP}]"
-DEPEND="
- >=dev-python/setuptools-17.1[${PYTHON_USEDEP}]
- test? (
- ${CDEPEND}
- dev-python/nose[${PYTHON_USEDEP}]
- $(python_gen_cond_dep '>=dev-python/unittest2-1.1.0[${PYTHON_USEDEP}]' python{2_7,3_3} pypy)
- )"
-RDEPEND="
- ${CDEPEND}
- >=dev-python/six-1.7[${PYTHON_USEDEP}]
-"
-
-python_test() {
- nosetests || die "tests fail under ${EPYTHON}"
-}
-
-python_install_all() {
- use doc && local DOCS=( docs/*.txt )
-
- distutils-r1_python_install_all
-}
next reply other threads:[~2015-11-23 10:06 UTC|newest]
Thread overview: 75+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-23 10:05 Justin Lecher [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-04 6:48 [gentoo-commits] repo/gentoo:master commit in: dev-python/mock/ Michał Górny
2024-05-14 15:13 Michał Górny
2023-08-11 19:10 Michał Górny
2023-08-11 19:05 Arthur Zamarin
2023-07-12 4:04 Michał Górny
2023-05-23 16:23 Michał Górny
2023-05-23 16:23 Michał Górny
2023-05-23 16:15 Michał Górny
2023-05-23 15:46 Arthur Zamarin
2023-05-23 15:42 Michał Górny
2023-04-17 5:41 Michał Górny
2023-01-10 6:21 Michał Górny
2022-12-29 12:27 Michał Górny
2022-12-28 19:11 Arthur Zamarin
2022-06-10 4:18 Michał Górny
2022-06-10 3:09 Sam James
2022-05-09 20:38 Michał Górny
2022-05-09 15:01 Michał Górny
2021-03-02 14:34 Michał Górny
2021-01-13 19:06 Sam James
2021-01-13 18:26 Michał Górny
2020-12-14 2:30 Sam James
2020-12-08 22:56 Sam James
2020-12-08 19:45 Fabian Groffen
2020-12-05 23:48 Sam James
2020-09-20 15:38 Michał Górny
2020-05-25 16:16 Michał Górny
2020-05-11 17:33 Michał Górny
2020-05-09 8:47 Mart Raudsepp
2020-05-08 9:36 Sergei Trofimovich
2020-05-04 16:51 Agostino Sarubbo
2020-05-03 15:13 Agostino Sarubbo
2020-05-03 10:25 Agostino Sarubbo
2020-05-03 10:22 Agostino Sarubbo
2020-03-16 21:09 Michał Górny
2019-11-16 11:02 Michał Górny
2019-11-13 10:42 Michał Górny
2019-11-13 2:52 Patrick McLean
2019-11-12 23:44 Patrick McLean
2019-11-12 23:04 Patrick McLean
2018-08-20 5:26 Mikle Kolyada
2018-04-16 18:36 Sergei Trofimovich
2018-04-07 20:33 Matt Turner
2018-04-07 20:33 Matt Turner
2018-03-05 21:31 Tobias Klausmann
2017-12-09 14:21 Pacho Ramos
2017-07-29 20:38 Matt Thode
2017-07-18 8:25 Sergei Trofimovich
2016-11-06 21:39 Matt Thode
2016-08-19 20:00 Tim Harder
2016-01-14 9:53 Justin Lecher
2016-01-14 9:53 Justin Lecher
2015-12-31 12:55 Justin Lecher
2015-12-07 18:33 Mike Frysinger
2015-11-22 8:38 Markus Meier
2015-11-22 5:38 Jeroen Roovers
2015-11-19 10:25 Agostino Sarubbo
2015-11-16 15:01 Agostino Sarubbo
2015-11-04 16:09 Agostino Sarubbo
2015-11-04 15:50 Agostino Sarubbo
2015-11-04 6:40 Justin Lecher
2015-11-04 6:18 Justin Lecher
2015-11-02 13:12 Agostino Sarubbo
2015-11-02 13:09 Agostino Sarubbo
2015-10-14 13:40 Justin Lecher
2015-10-10 18:49 Mikle Kolyada
2015-10-10 18:49 Mikle Kolyada
2015-10-03 7:59 Markus Meier
2015-09-29 14:14 Tobias Klausmann
2015-09-27 16:16 Markus Meier
2015-09-22 8:26 Tobias Klausmann
2015-09-14 5:20 Jeroen Roovers
2015-09-01 15:06 Matt Thode
2015-08-25 8:10 Justin Lecher
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1448273131.2e460830ffec25ed1b7226890864a7b08d780df0.jlec@gentoo \
--to=jlec@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox