From: "Justin Lecher" <jlec@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/humanfriendly/
Date: Sat, 29 Apr 2017 18:49:18 +0000 (UTC) [thread overview]
Message-ID: <1493491753.18326a851efbd2236455e1ea9b9e8434e55bc999.jlec@gentoo> (raw)
commit: 18326a851efbd2236455e1ea9b9e8434e55bc999
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 29 09:15:11 2017 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sat Apr 29 18:49:13 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18326a85
dev-python/humanfriendly: Version Bump and Py3.6 support
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
dev-python/humanfriendly/Manifest | 1 +
dev-python/humanfriendly/humanfriendly-2.4.ebuild | 33 +++++++++++++++++++++++
2 files changed, 34 insertions(+)
diff --git a/dev-python/humanfriendly/Manifest b/dev-python/humanfriendly/Manifest
index 7f179573c25..228f58c9eb7 100644
--- a/dev-python/humanfriendly/Manifest
+++ b/dev-python/humanfriendly/Manifest
@@ -1,3 +1,4 @@
DIST humanfriendly-1.44.1.tar.gz 44281 SHA256 a9c545dc284c8e310465dba0b2300d898a9dc0d6eba5852f7578e03ff3ffc4ea SHA512 d5467e75c2e84c50dacaaab1c14b71a536eda5b91f4fc2d6ca69f1f1e50fe0ac215ac6cbf91cf7df08456f3058dcf84f0e38f611022c295e90c936e3b8a77cc9 WHIRLPOOL 869f86cd719fb9f3810767a37f43742ff21e9664229ccc4525873c84288fff8e9f08530796f54f2f1bea3b2df0601a424c5a253a42940c2d6a99cdbe19b20627
DIST humanfriendly-1.44.3.tar.gz 44682 SHA256 910a01f17d73536d53f0464c3d825e64efcb56fff80c58b383b78bfab5f934d0 SHA512 7ddba207e9946ea38ec7d4aaebe87c38ae7cec0f87d7576a8e99425f9678e7b90d830de2518ba898ba485d86e4b363022a9919dbf4fdf0b6cdd4bcf1629cd1b5 WHIRLPOOL 58683b1085e92d0d9c24a9b31c189f20a6d04f9a0eed8369ef180d0e0e66bcf878c251d61dcce905ad53223b480e1d244ff239d56b5a13d730c48952ec85007a
DIST humanfriendly-1.44.7.tar.gz 45058 SHA256 fcee758612edc6fead9b8fd1d5a473eab2c3a84cf8766f3ce70862ccd35e8a64 SHA512 07ac1b6376dd144bb0fefaa5aa801cf05165d913ba9138bbaa0ab708fd262e76871a4821c7675ba10a2c212a3645c615a5abe01339c073730357dd85c0b94ffe WHIRLPOOL ab70278bed60136fa7aec3cbeb118458152e5a295c1cbc0cdecabc932e97eca4097ec37eae3dcbd12496a487818cb531c82a55fe9e75394d13cd8fc488b9871a
+DIST humanfriendly-2.4.tar.gz 51037 SHA256 bccba2151adfe4b058667cc995c780e21b36502af24ef4037fc37609f2ed6c2d SHA512 e35017c6be9d80ac5e3465836aae4f5b1ea4358224e250c7c1b7e3a93c2764832382e0ec24ea54e1d656fd8874c12b23ffc535440870b55a532800c5953cc676 WHIRLPOOL cf6678904edb6344f249ac8e8c5c3cef5fda72f7903d6a50cc4c17dc766060784591e6bc350451a5b46045414997ed44fac9627887bec14c4cf9de414191f658
diff --git a/dev-python/humanfriendly/humanfriendly-2.4.ebuild b/dev-python/humanfriendly/humanfriendly-2.4.ebuild
new file mode 100644
index 00000000000..c4b229c3b9d
--- /dev/null
+++ b/dev-python/humanfriendly/humanfriendly-2.4.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+PYTHON_REQ_USE="threads(+)"
+
+inherit distutils-r1
+
+DESCRIPTION="Human friendly output for text interfaces using Python"
+HOMEPAGE="https://pypi.python.org/pypi/humanfriendly https://humanfriendly.readthedocs.org"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+SLOT="0"
+LICENSE="MIT"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+RDEPEND="
+ dev-python/monotonic[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}
+ dev-python/setuptools[${PYTHON_USEDEP}]
+ test? (
+ >=dev-python/capturer-2.1[${PYTHON_USEDEP}]
+ >=dev-python/coloredlogs-2.0[${PYTHON_USEDEP}]
+ dev-python/pytest[${PYTHON_USEDEP}]
+ )
+ "
+python_test() {
+ esetup.py test
+}
next reply other threads:[~2017-04-29 18:49 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-04-29 18:49 Justin Lecher [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-07-21 2:47 [gentoo-commits] repo/gentoo:master commit in: dev-python/humanfriendly/ Michał Górny
2024-07-21 0:32 Sam James
2024-06-30 7:30 Petr Vaněk
2024-02-14 16:44 Sam James
2024-01-30 15:15 Marek Szuba
2023-03-16 3:50 Michał Górny
2022-11-14 4:39 Michał Górny
2022-11-08 9:18 Andrew Ammerlaan
2021-10-17 8:58 Michał Górny
2021-09-17 22:22 Michał Górny
2021-08-08 13:20 Louis Sautier
2021-06-12 6:39 Michał Górny
2021-01-21 1:06 Sam James
2021-01-21 1:05 Sam James
2020-12-11 12:55 Michał Górny
2020-09-28 20:53 Louis Sautier
2020-09-28 17:03 Louis Sautier
2020-06-09 20:06 Michał Górny
2020-03-27 11:45 Michał Górny
2020-02-04 13:42 Michał Górny
2020-01-23 9:53 Joonas Niilola
2018-12-13 20:26 Virgil Dupras
2018-12-13 20:26 Virgil Dupras
2018-11-23 8:57 Patrice Clement
2018-11-22 22:53 Patrice Clement
2018-11-21 15:18 Mikle Kolyada
2017-05-03 7:37 Michał Górny
2016-07-18 9:56 Patrick Lauer
2016-02-21 15:32 Justin Lecher
2016-02-21 15:32 Justin Lecher
2016-02-19 9:45 Justin Lecher
2016-01-21 8:33 Justin Lecher
2015-10-23 13:13 Justin Lecher
2015-10-23 8:46 Justin Lecher
2015-09-11 7:53 Justin Lecher
2015-09-11 7:53 Justin Lecher
2015-09-11 7:53 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=1493491753.18326a851efbd2236455e1ea9b9e8434e55bc999.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