From: "Justin Lecher" <jlec@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/boto/
Date: Thu, 21 Jan 2016 08:33:40 +0000 (UTC) [thread overview]
Message-ID: <1453365211.6ef937f9ac17e1fe8925d9fcbe01d0c0acc451ec.jlec@gentoo> (raw)
commit: 6ef937f9ac17e1fe8925d9fcbe01d0c0acc451ec
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 21 07:28:40 2016 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Thu Jan 21 08:33:31 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ef937f9
dev-python/boto: Version Bump
Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
dev-python/boto/Manifest | 1 +
dev-python/boto/boto-2.39.0.ebuild | 50 ++++++++++++++++++++++++++++++++++++++
2 files changed, 51 insertions(+)
diff --git a/dev-python/boto/Manifest b/dev-python/boto/Manifest
index c09f071..b3109f3 100644
--- a/dev-python/boto/Manifest
+++ b/dev-python/boto/Manifest
@@ -3,3 +3,4 @@ DIST boto-2.31.1.tar.gz 7078455 SHA256 dadccbe69a9f8d858506bb9b14ff288fa91b81dec
DIST boto-2.34.0.tar.gz 7302242 SHA256 33baab022ecb803414ad0d6cf4041d010cfc2755ff8acc3bea7b32e77ba98be0 SHA512 5784ab3eb785784fa348f9f572d8e885d297d0e569f503229f0ae3aa66389699c9fe21cd1737e20a9683735dc4e7a765aa2345b013c75a3292ed5995f20699d2 WHIRLPOOL 33c42d3f012410e9f3acead7293073dfea3e97cffa93248d735a76266480ab912935d8300839ef742820f1ed1a093dbf5555c163bd8ee34cf28f09a62a01dff5
DIST boto-2.35.1.tar.gz 1367029 SHA256 62604f0fdf68a2b9a6c6bd5111c82e10281b498695152d21f56c9e4a0691d45d SHA512 4be15cbb4ccc9f984fed11213ce1e64fefe7adbc747314dc0030928f2876b55322344f325228d95209e0411ef22fe1a3bede91ffbf3e9eed1a1a2d2507bff92d WHIRLPOOL 060f3e2483a3a5be26b67a2a94df2f88a9eccb3f62cc4020e26b7ac0111d30d938638641f4c83c71095602d5b79e365de6211f884b4adbeacf6d7187bb04d071
DIST boto-2.38.0.tar.gz 1423863 SHA256 d9083f91e21df850c813b38358dc83df16d7f253180a1344ecfedce24213ecf2 SHA512 577672007348db846d041c0906806c62eb77653b1335645cc852c603f5d32991ca648aacb884676af02043914c91ab6f41666b36b5b1ae23a3a354bdf9f3f75a WHIRLPOOL de704484ed38a0d0322ef289fd0657b6d1141c0f77aa6725e338dd51d78bed39a7ef1ebdec54a659d83dae30c14196f2410507d9aeec070126bbe13565b210ba
+DIST boto-2.39.0.tar.gz 1434775 SHA256 950c5bf36691df916b94ebc5679fed07f642030d39132454ec178800d5b6c58a SHA512 58afdbde3818d84b25ad330c8d417dd2400c4be40d99d7895eda94b99f9a1d86e164894c05faee71b4433ea33866be1e3fea3046b08f98577a2cd60e9dab3f3d WHIRLPOOL ea80c168ee45febe8a37a96bd8fba8eafb2b68d695e369c3f4c3974c9909d67b9f255dab5e70a6ae9bdbcae7b0ffc89f6e6b2277933571e299d2ada0d7cc773b
diff --git a/dev-python/boto/boto-2.39.0.ebuild b/dev-python/boto/boto-2.39.0.ebuild
new file mode 100644
index 0000000..09e8e9d
--- /dev/null
+++ b/dev-python/boto/boto-2.39.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Amazon Web Services API"
+HOMEPAGE="https://github.com/boto/boto https://pypi.python.org/pypi/boto"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+IUSE="doc test"
+
+DEPEND="
+ dev-python/setuptools[${PYTHON_USEDEP}]
+ test? ( dev-python/nose[${PYTHON_USEDEP}] )
+ doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
+
+# requires Amazon Web Services keys to pass some tests
+RESTRICT="test"
+
+python_test() {
+ "${PYTHON}" tests/test.py -v || die "Tests fail with ${EPYTHON}"
+}
+
+python_prepare_all() {
+ # Prevent un-needed d'loading
+ sed -e "s/, 'sphinx.ext.intersphinx'//" -i docs/source/conf.py || die
+ distutils-r1_python_prepare_all
+}
+
+python_compile_all() {
+ if use doc; then
+ # Appease the doc build and supply a file for _static
+ # the usual emake -C docs doesn't work under this authorship
+ cd docs && mkdir source/_static || die
+ emake html
+ fi
+}
+
+python_install_all() {
+ use doc && local HTML_DOCS=( docs/build/html/. )
+ distutils-r1_python_install_all
+}
next reply other threads:[~2016-01-21 8:33 UTC|newest]
Thread overview: 44+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-01-21 8:33 Justin Lecher [this message]
-- strict thread matches above, loose matches on Subject: below --
2023-03-16 3:44 [gentoo-commits] repo/gentoo:master commit in: dev-python/boto/ Michał Górny
2023-01-25 5:43 Sam James
2023-01-10 14:31 Michał Górny
2022-12-10 9:03 Michał Górny
2022-12-10 8:52 Arthur Zamarin
2021-12-13 3:09 Yixun Lan
2021-03-02 1:36 Sam James
2021-03-02 1:01 Michał Górny
2020-09-18 14:28 Michał Górny
2020-09-01 4:22 Sam James
2020-08-29 23:22 Sam James
2020-08-18 11:18 Agostino Sarubbo
2020-07-19 13:37 Sergei Trofimovich
2020-07-17 0:17 Sam James
2020-07-16 19:34 Sam James
2020-07-16 3:46 Sam James
2020-07-16 2:32 Georgy Yakovlev
2020-07-15 10:12 Michał Górny
2020-07-13 23:56 Sam James
2020-06-04 14:13 Agostino Sarubbo
2020-06-04 14:12 Agostino Sarubbo
2020-06-04 14:11 Agostino Sarubbo
2020-06-04 14:11 Agostino Sarubbo
2020-06-04 14:10 Agostino Sarubbo
2020-04-29 17:33 Patrick McLean
2020-03-28 16:27 Michał Górny
2020-03-25 13:00 Michał Górny
2020-03-25 13:00 Michał Górny
2019-12-02 21:13 Aaron Bauman
2019-07-17 3:35 Patrick McLean
2017-07-31 18:12 Sebastien Fabbro
2017-06-23 5:20 Alexis Ballier
2017-05-02 19:15 Michał Górny
2017-03-12 7:57 Zac Medico
2016-12-20 20:09 Thomas Deutschmann
2016-12-20 14:38 Tobias Klausmann
2016-10-01 21:12 Patrick Lauer
2016-10-01 7:53 Markus Meier
2016-07-17 15:44 Patrick Lauer
2016-06-12 19:07 Patrick Lauer
2016-02-28 7:15 Matt Thode
2016-01-22 10:58 Justin Lecher
2015-11-24 12: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=1453365211.6ef937f9ac17e1fe8925d9fcbe01d0c0acc451ec.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