From: "Justin Lecher" <jlec@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/docker-py/
Date: Wed, 17 Feb 2016 08:57:20 +0000 (UTC) [thread overview]
Message-ID: <1455699431.95ad5ac66a1c54d4621e14b739db70cf03adf656.jlec@gentoo> (raw)
commit: 95ad5ac66a1c54d4621e14b739db70cf03adf656
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 17 08:47:44 2016 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Feb 17 08:57:11 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95ad5ac6
dev-python/docker-py: Version Bump
Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
dev-python/docker-py/Manifest | 1 +
dev-python/docker-py/docker-py-1.7.0.ebuild | 48 +++++++++++++++++++++++++++++
dev-python/docker-py/metadata.xml | 2 +-
3 files changed, 50 insertions(+), 1 deletion(-)
diff --git a/dev-python/docker-py/Manifest b/dev-python/docker-py/Manifest
index 748d464..a1c88fe 100644
--- a/dev-python/docker-py/Manifest
+++ b/dev-python/docker-py/Manifest
@@ -3,3 +3,4 @@ DIST docker-py-1.2.2.tar.gz 69685 SHA256 85284a5b1a965e01a5d0a91f9f639ad5069143a
DIST docker-py-1.3.1.tar.gz 71456 SHA256 4a980c55f22b97573b68f720ebc0b6f2a01cd9ec454d305bd13d2b83109a0bfa SHA512 f027a44cd15aa0a9d47a748c6f593e940ee4b6db0d8a933591e148bc9b0e6801c9ece3f81fc3a21eba762eff838ef40bf04fda299f28ba508e029b67658ee228 WHIRLPOOL 57d7429d58610bbef4473d5aabfe7f1771b2e3d4f083d44d6aba8f144bf44afeff9a0bcf458754f2787b54e1a1e07fddb9e66a42c16a6b1f20a8e1f9be3aa558
DIST docker-py-1.4.0.tar.gz 75336 SHA256 81e2a7cd59b25c3df63ec47458c8a019ed7e11355ea0cfeec1f38df8c93f3179 SHA512 c4ea0a4a43063c90aa212952b3aeaa1a7c574dfcf7e8223c3fdb24216d0939c80258fe4ad2b6bba24d9d5fcde27332106860baf463482119b382670ed57c0da2 WHIRLPOOL f085dc4c59ce5b4b8c22695c90e054f3875dfa7553a600e025f089b3f5da34f91b5de3fb4106e737150b3e558319a5ae4bd1a6448f4bcafc9f9d45fa1a826d3a
DIST docker-py-1.5.0.tar.gz 84712 SHA256 a7b437aa9bfd2ad1e9b3eeed57e376d28a93acb852bac2aaf01dd70a304d439b SHA512 948f63f48a1994f90041c7d2e2982a313ccc0c9aea0dc1cec03bcd9afd855459088b36d052ab061ada270c8fe06c0c18115910b40740c78f58258782791180ab WHIRLPOOL a34f3f896e5e3722fb9fed520e0f776875fd869f4dbd10ee922a73332dcd46b00c608c1a65f28eb9e53ba4a343b430a83ccacf7fd211113ee4dabde6dbf7963b
+DIST docker-py-1.7.0.tar.gz 95003 SHA256 13193dff1e29e0f3bfa8a51751a08eac8d56b3b7d14c4c2c9b7a56647303166b SHA512 98296c2bcc567caae6178599470999ee97b6e9648096a09790912e92191b88b2affaec5fb8dbe3b9070015ddb198fe8b9c3210d1a450ce91e620793d19da7b0c WHIRLPOOL 483f85e598d601346e933645819c78639adff1f1c2d0d65e7f22c71412d85442c74e1690b8457a372b4ab2dc0d1c56e4a30b44edc67bb150a16f2bb95aae1462
diff --git a/dev-python/docker-py/docker-py-1.7.0.ebuild b/dev-python/docker-py/docker-py-1.7.0.ebuild
new file mode 100644
index 0000000..bb34232
--- /dev/null
+++ b/dev-python/docker-py/docker-py-1.7.0.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python2_7 python3_4 )
+
+inherit distutils-r1 vcs-snapshot
+
+DESCRIPTION="Python client for Docker"
+HOMEPAGE="https://github.com/docker/docker-py"
+SRC_URI="https://github.com/docker/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc test"
+
+DEPEND="
+ dev-python/setuptools[${PYTHON_USEDEP}]
+ doc? ( >=dev-python/mkdocs-0.14.0[${PYTHON_USEDEP}] )
+ test? (
+ >=dev-python/mock-1.0.1[${PYTHON_USEDEP}]
+ >=dev-python/pytest-2.7.2[${PYTHON_USEDEP}]
+ >=dev-python/pytest-cov-2.1.0[${PYTHON_USEDEP}]
+ )
+"
+RDEPEND="
+ >=dev-python/requests-2.5.2[${PYTHON_USEDEP}]
+ >=dev-python/six-1.4.0[${PYTHON_USEDEP}]
+ >=dev-python/websocket-client-0.32.0[${PYTHON_USEDEP}]
+"
+
+python_compile_all() {
+ if use doc; then
+ mkdocs build || die "docs failed to build"
+ fi
+}
+
+python_test() {
+ py.test -vv tests/unit || die "tests failed under ${EPYTHON}"
+}
+
+python_install_all() {
+ use doc && local HTML_DOCS=( site/. )
+
+ distutils-r1_python_install_all
+}
diff --git a/dev-python/docker-py/metadata.xml b/dev-python/docker-py/metadata.xml
index af6c54f..9c5c481 100644
--- a/dev-python/docker-py/metadata.xml
+++ b/dev-python/docker-py/metadata.xml
@@ -10,6 +10,6 @@
<name>Python</name>
</maintainer>
<upstream>
- <remote-id type="github">docker/docker-py</remote-id>
+ <remote-id type="github">docker/docker-py</remote-id>
</upstream>
</pkgmetadata>
next reply other threads:[~2016-02-17 8:57 UTC|newest]
Thread overview: 127+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-17 8:57 Justin Lecher [this message]
-- strict thread matches above, loose matches on Subject: below --
2023-06-04 5:02 [gentoo-commits] repo/gentoo:master commit in: dev-python/docker-py/ Michał Górny
2023-06-04 4:54 Sam James
2023-05-12 2:55 Michał Górny
2022-10-15 15:09 Andrew Ammerlaan
2021-12-13 3:09 Yixun Lan
2021-11-13 9:54 Michał Górny
2021-11-13 9:42 Jakov Smolić
2021-10-08 6:21 Michał Górny
2021-06-05 18:48 Michał Górny
2021-05-19 20:21 Michał Górny
2021-05-19 20:06 Agostino Sarubbo
2021-04-06 23:45 Sebastian Pipping
2021-03-30 19:12 Michał Górny
2021-03-30 17:35 Sam James
2021-03-25 19:09 Michał Górny
2021-03-25 16:19 Agostino Sarubbo
2021-02-26 17:07 Sebastian Pipping
2021-02-19 15:54 Sebastian Pipping
2021-02-18 2:12 Sebastian Pipping
2020-12-27 8:58 Michał Górny
2020-12-27 4:47 Sam James
2020-11-23 17:05 Michał Górny
2020-11-04 5:32 Sam James
2020-09-24 6:59 Agostino Sarubbo
2020-09-18 14:41 Michał Górny
2020-09-18 7:29 Agostino Sarubbo
2020-08-21 15:36 Agostino Sarubbo
2020-08-21 13:35 Michał Górny
2020-08-11 13:43 Michał Górny
2020-06-30 22:27 Sebastian Pipping
2020-06-11 2:28 Georgy Yakovlev
2020-06-10 15:11 Michał Górny
2020-06-10 15:11 Michał Górny
2020-05-04 10:56 Michał Górny
2020-03-30 13:41 Agostino Sarubbo
2020-03-30 13:14 Agostino Sarubbo
2020-03-27 15:24 Michał Górny
2020-03-27 7:25 Michał Górny
2020-03-27 7:25 Michał Górny
2020-03-17 7:23 Michał Górny
2020-03-03 20:35 Sebastian Pipping
2020-03-03 20:35 Sebastian Pipping
2020-02-05 5:50 Michał Górny
2020-01-13 18:24 Sebastian Pipping
2019-11-23 16:28 Sebastian Pipping
2019-11-23 10:40 Manuel Rüger
2019-08-05 10:18 Manuel Rüger
2019-08-05 10:18 Manuel Rüger
2019-06-05 6:48 Agostino Sarubbo
2019-05-09 15:23 Manuel Rüger
2019-04-16 9:04 Manuel Rüger
2019-04-12 22:47 Matthew Thode
2019-04-11 11:06 Manuel Rüger
2019-03-10 8:41 Mikle Kolyada
2018-12-21 14:16 Mikle Kolyada
2018-11-07 12:50 Manuel Rüger
2018-09-17 13:42 Manuel Rüger
2018-07-13 13:02 Manuel Rüger
2018-07-13 13:02 Manuel Rüger
2018-07-12 14:53 Manuel Rüger
2018-07-12 14:48 Manuel Rüger
2018-06-28 15:07 Manuel Rüger
2018-05-26 1:18 Manuel Rüger
2018-04-05 13:41 Manuel Rüger
2018-03-30 14:53 Manuel Rüger
2018-03-23 15:05 Manuel Rüger
2018-03-23 15:05 Manuel Rüger
2018-03-20 11:59 Manuel Rüger
2018-03-20 11:59 Manuel Rüger
2018-02-24 0:01 Manuel Rüger
2018-02-13 21:01 Matt Thode
2018-02-13 13:59 Mart Raudsepp
2018-02-13 11:24 Manuel Rüger
2018-02-13 11:24 Manuel Rüger
2018-02-08 16:43 Manuel Rüger
2017-12-23 15:08 Manuel Rüger
2017-11-28 15:59 Manuel Rüger
2017-11-28 15:33 Mike Gilbert
2017-11-22 15:30 Manuel Rüger
2017-11-14 12:27 Manuel Rüger
2017-11-14 12:25 Manuel Rüger
2017-11-08 14:53 Manuel Rüger
2017-09-29 23:32 Matt Thode
2017-09-10 10:43 Manuel Rüger
2017-08-30 22:07 Matt Thode
2017-07-15 16:22 Tobias Klausmann
2017-07-04 16:14 Manuel Rüger
2017-07-03 0:44 Manuel Rüger
2017-06-14 17:16 Manuel Rüger
2017-05-28 21:18 Manuel Rüger
2017-05-04 16:40 Manuel Rüger
2017-04-04 21:30 Manuel Rüger
2017-02-17 14:43 Manuel Rüger
2017-02-06 14:06 Manuel Rüger
2017-01-20 14:26 David Seifert
2017-01-15 12:06 Manuel Rüger
2017-01-12 14:07 Manuel Rüger
2016-12-15 12:06 Manuel Rüger
2016-11-24 13:18 Manuel Rüger
2016-11-11 12:14 Manuel Rüger
2016-10-30 20:40 Alex Brandt
2016-09-24 15:41 Alex Brandt
2016-09-24 15:41 Alex Brandt
2016-08-06 14:12 Alex Brandt
2016-08-06 14:12 Alex Brandt
2016-07-16 14:12 Alex Brandt
2016-07-16 14:12 Alex Brandt
2016-06-18 18:44 Alex Brandt
2016-05-15 21:19 Alex Brandt
2016-04-23 15:15 Alex Brandt
2016-04-23 15:15 Alex Brandt
2016-04-17 17:47 Alex Brandt
2016-04-17 17:47 Alex Brandt
2016-04-15 9:44 Zac Medico
2016-04-10 22:13 Alex Brandt
2016-04-10 22:13 Alex Brandt
2016-04-03 14:46 Alex Brandt
2016-04-03 14:46 Alex Brandt
2016-04-03 14:46 Alex Brandt
2016-04-03 14:46 Alex Brandt
2016-03-20 22:05 Alex Brandt
2016-03-20 22:05 Alex Brandt
2015-10-24 20:09 Alex Brandt
2015-09-13 17:15 Alex Brandt
2015-09-13 17:15 Alex Brandt
2015-09-13 17:15 Alex Brandt
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=1455699431.95ad5ac66a1c54d4621e14b739db70cf03adf656.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