public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Thomas Deutschmann" <whissi@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/py/
Date: Wed, 18 Apr 2018 13:22:17 +0000 (UTC)	[thread overview]
Message-ID: <1524057724.f97fd31d4f5e5961283e49fab0b829807ffe90cd.whissi@gentoo> (raw)

commit:     f97fd31d4f5e5961283e49fab0b829807ffe90cd
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 18 13:21:52 2018 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Wed Apr 18 13:22:04 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f97fd31d

dev-python/py: Bump to v1.5.3

Package-Manager: Portage-2.3.30, Repoman-2.3.9

 dev-python/py/Manifest        |  1 +
 dev-python/py/py-1.5.3.ebuild | 46 +++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 47 insertions(+)

diff --git a/dev-python/py/Manifest b/dev-python/py/Manifest
index c774ff54a63..82c6cf32eaa 100644
--- a/dev-python/py/Manifest
+++ b/dev-python/py/Manifest
@@ -1,3 +1,4 @@
 DIST py-1.4.30.tar.gz 191796 BLAKE2B 1d908f5f29788868cb7c4da49bc8a9343176030df4549a992e06245d1d56d74ddf0477048992d282aa59e6ace1ff695a7e2c2c6f00b55f185bc91d0df8b6a6dd SHA512 dd9d92f8eaf8e5fc61bfb7feb4b07df5ae1745ebf88bcbe9d62589caa9e1f7d8beae5b2d20b407520919e47391cd50cf2d5323556fa5bd90a37e120b1d394d7a
 DIST py-1.4.34.tar.gz 194450 BLAKE2B 3e5733bb53d4f7eb8e6d43a5140f2ddf692d4272b564a9dd4fe8ede2cb4d0296e7c8764957bf4615f5cc4272d07997d126133dfce8ac8837f01d91bf557023d2 SHA512 2e19c82c8315274bffe0ba2c7e20ae3af95f942c40c16121ec953af186f8ff33e8f427c070e137bb04b7cc6dcc6779e35df3911c08595fd3294b5ec9897706e1
 DIST py-1.5.2.tar.gz 189542 BLAKE2B f0c5995121492ebca7bab9e73b7db61edf014be8e7d76822c72ded9ea19dd647dc0a83cbbcbf732c4ddae9070126cecb00958b623ca43d2219b7be8519b5b58e SHA512 ad92110d56caba2be44c6759350b05ceb882165ad0f58e6cce8361273be874b20b01856d685b142a83edff77b41bcce2911cf5797db5253b4f3e9b36e703c07d
+DIST py-1.5.3.tar.gz 202335 BLAKE2B 6a7ef206bddd641cb5e2fe04966ae93db96a7ff757fcde604f8fd2d36c4a03ce5955c2f445a866dd5cd83026ab2a9fa17feeb0da0df3d40d9746c19d865f6325 SHA512 243c0da94c439163257c525ef00b30fd6d8add5897121ee0b1f19476b50f18823ce2b99a5ab27a9cf47598b538758d0534060123dce0820d2a65d98046548c96

diff --git a/dev-python/py/py-1.5.3.ebuild b/dev-python/py/py-1.5.3.ebuild
new file mode 100644
index 00000000000..fea521eca53
--- /dev/null
+++ b/dev-python/py/py-1.5.3.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="library with cross-python path, ini-parsing, io, code, log facilities"
+HOMEPAGE="http://pylib.readthedocs.org/ https://pypi.python.org/pypi/py"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+IUSE="doc test"
+
+RDEPEND=""
+DEPEND="
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	test? ( >=dev-python/pytest-2.4.2[${PYTHON_USEDEP}] )
+	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
+
+PATCHES=( "${FILESDIR}"/${PN}-1.5.2-skip-apiwarn-pytest31.patch )
+
+python_prepare_all() {
+	sed -e 's:intersphinx_mapping:#&:' -i doc/conf.py || die
+	distutils-r1_python_prepare_all
+}
+
+python_compile_all() {
+	use doc && emake -C doc html
+}
+
+python_test() {
+	# 1 failure, test_comments, under both pypy only.
+	# Also appears the home repo has no issue tracker.
+	[[ "${EPYTHON}" == pypy ]] && return
+	py.test -v -v || die "testing failed with ${EPYTHON}"
+}
+
+python_install_all() {
+	use doc && local HTML_DOCS=( doc/_build/html/. )
+	distutils-r1_python_install_all
+}


             reply	other threads:[~2018-04-18 13:22 UTC|newest]

Thread overview: 64+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-04-18 13:22 Thomas Deutschmann [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-05-11 18:41 [gentoo-commits] repo/gentoo:master commit in: dev-python/py/ Sam James
2025-05-11 18:36 Sam James
2024-05-10 18:38 Michał Górny
2023-05-23 16:02 Michał Górny
2022-05-09 20:38 Michał Górny
2022-02-27 18:58 Michał Górny
2022-02-27 12:29 Jakov Smolić
2022-01-19 17:15 Michał Górny
2022-01-19 17:15 Michał Górny
2021-12-09 22:41 Michał Górny
2021-12-09 21:26 Sam James
2021-11-04 22:09 Michał Górny
2021-05-05 17:05 Michał Górny
2021-04-10 20:25 Louis Sautier
2021-02-06 14:20 Sam James
2021-02-06 14:15 Sam James
2020-12-13 12:15 Michał Górny
2020-09-18 15:30 Michał Górny
2020-09-08 23:38 Sam James
2020-05-25 16:16 Michał Górny
2020-03-28 17:07 Michał Górny
2020-03-28 17:07 Michał Górny
2020-03-25 15:42 Agostino Sarubbo
2020-03-25 14:17 Agostino Sarubbo
2019-11-16 11:02 Michał Górny
2019-11-16 10:32 Michał Górny
2019-04-17  3:38 Aaron Bauman
2019-03-10 21:38 Matt Turner
2019-03-02 23:21 Matt Turner
2019-02-24  9:46 Sergei Trofimovich
2019-02-17 18:04 Sergei Trofimovich
2019-02-07 16:39 Mikle Kolyada
2019-02-04 20:16 Markus Meier
2019-01-30 16:04 Tobias Klausmann
2019-01-17 17:00 Mikle Kolyada
2019-01-15 22:10 Thomas Deutschmann
2019-01-14  7:14 Sergei Trofimovich
2019-01-03 22:22 Mike Gilbert
2018-11-19 21:15 Fabian Groffen
2018-08-21  8:31 Patrice Clement
2018-06-27  6:25 Sergei Trofimovich
2018-06-22 15:01 Mikle Kolyada
2018-04-29  6:33 Michał Górny
2018-04-21 23:55 Thomas Deutschmann
2018-04-09 20:22 Stephen Klimaszewski
2018-03-21 19:41 Markus Meier
2018-03-15  1:03 Matt Turner
2018-02-17 21:51 Patrice Clement
2017-12-27 20:06 Sergei Trofimovich
2017-12-26 16:22 Jason Zaman
2017-12-23 21:58 Sergei Trofimovich
2017-12-21 22:34 Sergei Trofimovich
2017-08-27  8:34 Tim Harder
2017-05-15  9:47 Lars Wendler
2017-05-03 12:18 Michał Górny
2017-03-01  7:01 Tim Harder
2016-06-21  2:47 Mike Frysinger
2015-11-28  9:28 Justin Lecher
2015-11-02 11:50 Justin Lecher
2015-10-11 11:25 Justin Lecher
2015-09-19 19:02 Agostino Sarubbo
2015-09-16 14:14 Tobias Klausmann
2015-09-16 12:52 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=1524057724.f97fd31d4f5e5961283e49fab0b829807ffe90cd.whissi@gentoo \
    --to=whissi@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