public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Louis Sautier" <sbraz@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/backports-unittest-mock/
Date: Fri, 13 Jul 2018 12:43:17 +0000 (UTC)	[thread overview]
Message-ID: <1531485777.f9a004cba0471825af08a023717219e19f3066ae.sbraz@gentoo> (raw)

commit:     f9a004cba0471825af08a023717219e19f3066ae
Author:     Louis Sautier <sbraz <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 13 12:38:37 2018 +0000
Commit:     Louis Sautier <sbraz <AT> gentoo <DOT> org>
CommitDate: Fri Jul 13 12:42:57 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9a004cb

dev-python/backports-unittest-mock: bump to 1.4

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 dev-python/backports-unittest-mock/Manifest        |  1 +
 .../backports-unittest-mock-1.4.ebuild             | 61 ++++++++++++++++++++++
 2 files changed, 62 insertions(+)

diff --git a/dev-python/backports-unittest-mock/Manifest b/dev-python/backports-unittest-mock/Manifest
index 563d643c161..20a81ac90c0 100644
--- a/dev-python/backports-unittest-mock/Manifest
+++ b/dev-python/backports-unittest-mock/Manifest
@@ -1,2 +1,3 @@
 DIST backports.unittest_mock-1.2.1.tar.gz 4580 BLAKE2B c935c378bae1f39e0658f4be027bcdbc13ecad6aeae93ca46ca314378f3c0462ea95b7b36daebdafd0577269520adb51a9f4cb7e74e9ab22c1bb6891d06c2384 SHA512 36218fe1117d62cc1aeea576c6220be7b8dd76b800776001756d157528ff7760791c513751a221ba84790c5b60b8ce62ab2ef17f4d359dd026211dc9c5cbcd5e
 DIST backports.unittest_mock-1.3.tar.gz 4687 BLAKE2B a01712eaf5cb32d7da803aa9034f68508faa4d8db8d6f6eb02e20cb9f42c4e6bda3b409a0e2f676b6b7782f16d78877da6f093af6ac1f1deb100b19969570787 SHA512 71741db5c2e43beac8c72dbffa0efd4bbae140177f56c3b2bca3e13a3aebd8a418b5ad7654421899980f73b8dbfb3b02d85d2dfcd7b3827047fa6ba84a8dcfff
+DIST backports.unittest_mock-1.4.tar.gz 6034 BLAKE2B c347f1d45c610701b605cb75304f93c8fc7a8534e2c14efb4600a7c5cdbcff02e0534dbf572ac248d17dbc161dcabd8448941d8340a71734f29ff3294c8210f1 SHA512 ad19eba7c221fbb97ba710cbe96aa26de74ad8c70ea7b794d8dcad3dc86a55a45d36f542ad829fb8c4bcf09c772cf64532dabf337b40bf87c7b29e13236484a9

diff --git a/dev-python/backports-unittest-mock/backports-unittest-mock-1.4.ebuild b/dev-python/backports-unittest-mock/backports-unittest-mock-1.4.ebuild
new file mode 100644
index 00000000000..63a89653734
--- /dev/null
+++ b/dev-python/backports-unittest-mock/backports-unittest-mock-1.4.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+# It is the developer's intention that backports.unittest_mock will be
+# used even for Python 3: https://github.com/jaraco/jaraco.timing/pull/1
+PYTHON_COMPAT=( pypy{,3} python{2_7,3_{4,5,6}} )
+
+inherit distutils-r1
+
+MY_PN="${PN/-/.}"
+MY_PN="${MY_PN//-/_}"
+DESCRIPTION="Backport of unittest.mock"
+HOMEPAGE="https://github.com/jaraco/backports.unittest_mock"
+SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd"
+IUSE="doc test"
+
+RDEPEND="
+	dev-python/backports[${PYTHON_USEDEP}]
+	dev-python/mock[${PYTHON_USEDEP}]
+"
+DEPEND="
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	>=dev-python/setuptools_scm-1.15.0[${PYTHON_USEDEP}]
+	doc? (
+		>=dev-python/jaraco-packaging-3.2[${PYTHON_USEDEP}]
+		>=dev-python/rst-linker-1.9[${PYTHON_USEDEP}]
+		>=dev-python/sphinx-1.5.2[${PYTHON_USEDEP}]
+	)
+	test? (
+		${RDEPEND}
+		>=dev-python/pytest-2.8[${PYTHON_USEDEP}]
+	)
+"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+python_compile_all() {
+	if use doc; then
+		cd docs || die
+		sphinx-build . _build/html || die
+		HTML_DOCS=( docs/_build/html/. )
+	fi
+}
+
+python_test() {
+	# Override pytest options to skip flake8
+	py.test -v --override-ini="addopts=--doctest-modules" \
+		|| die "tests failed with ${EPYTHON}"
+}
+
+python_install() {
+	# avoid a collision with dev-python/backports
+	rm "${BUILD_DIR}"/lib/backports/__init__.py || die
+	distutils-r1_python_install --skip-build
+}


             reply	other threads:[~2018-07-13 12:43 UTC|newest]

Thread overview: 55+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-07-13 12:43 Louis Sautier [this message]
  -- strict thread matches above, loose matches on Subject: below --
2020-08-01 21:48 [gentoo-commits] repo/gentoo:master commit in: dev-python/backports-unittest-mock/ Michał Górny
2020-03-26 13:49 Michał Górny
2020-03-26 13:49 Michał Górny
2020-03-26 13:49 Michał Górny
2020-03-26 13:49 Michał Górny
2019-11-25 12:35 Michał Górny
2019-11-25  7:56 Patrick McLean
2019-11-22  0:20 Patrick McLean
2019-08-23  9:59 Louis Sautier
2018-07-16 19:57 Michał Górny
2018-07-13 12:43 Louis Sautier
2018-06-03 13:55 Mike Frysinger
2018-04-19 19:42 Sergei Trofimovich
2018-04-18 14:51 Mike Gilbert
2018-04-09 20:22 Stephen Klimaszewski
2018-03-21 19:41 Markus Meier
2018-03-15  1:03 Matt Turner
2018-02-22 20:49 Michał Górny
2018-02-21 17:20 Michał Górny
2018-01-06 20:13 Markus Meier
2017-12-27 20:06 Sergei Trofimovich
2017-12-23 21:58 Sergei Trofimovich
2017-12-21 22:34 Sergei Trofimovich
2017-12-17 21:33 Sergei Trofimovich
2017-12-16 21:22 Mike Gilbert
2017-11-23 22:31 Matt Turner
2017-11-10  1:08 Matt Turner
2017-08-06 12:45 Sergei Trofimovich
2017-08-05 19:25 Sergei Trofimovich
2017-07-02 15:06 Sergei Trofimovich
2017-07-02 15:06 Sergei Trofimovich
2017-06-17 17:24 Agostino Sarubbo
2017-06-17 15:36 Agostino Sarubbo
2017-06-14 19:49 Markus Meier
2017-06-10 17:23 Mike Gilbert
2017-06-10 17:23 Mike Gilbert
2017-05-22 14:13 Michał Górny
2017-05-22 14:13 Michał Górny
2017-05-22 14:13 Michał Górny
2017-05-22 14:13 Michał Górny
2017-04-07 17:00 Jeroen Roovers
2017-03-31 10:20 Michael Weber
2017-03-31  9:50 Michael Weber
2017-03-29 16:46 Tobias Klausmann
2017-03-29  9:07 Michael Weber
2017-03-29  9:07 Michael Weber
2017-03-23 17:32 Mike Gilbert
2017-03-23 17:26 Mike Gilbert
2017-03-22 10:02 Jeroen Roovers
2017-01-06 14:44 Jeroen Roovers
2017-01-06 11:19 Jeroen Roovers
2017-01-03 13:22 Tobias Klausmann
2016-11-29  8:17 David Seifert
2015-12-29 23:36 Ian Delaney

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=1531485777.f9a004cba0471825af08a023717219e19f3066ae.sbraz@gentoo \
    --to=sbraz@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