public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Justin Lecher" <jlec@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/path-py/
Date: Wed,  2 Sep 2015 16:30:40 +0000 (UTC)	[thread overview]
Message-ID: <1441211434.b20b47efd3c176a6fb5cb037a902ced99a53a628.jlec@gentoo> (raw)

commit:     b20b47efd3c176a6fb5cb037a902ced99a53a628
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Wed Sep  2 16:03:05 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Sep  2 16:30:34 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b20b47ef

dev-python/path-py: Version Bump

Package-Manager: portage-2.2.20.1
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>

 dev-python/path-py/Manifest           |  1 +
 dev-python/path-py/path-py-8.1.ebuild | 39 +++++++++++++++++++++++++++++++++++
 2 files changed, 40 insertions(+)

diff --git a/dev-python/path-py/Manifest b/dev-python/path-py/Manifest
index 82e298f..6d27049 100644
--- a/dev-python/path-py/Manifest
+++ b/dev-python/path-py/Manifest
@@ -3,3 +3,4 @@ DIST path.py-7.4.tar.gz 27256 SHA256 69df64c911a4b27194e24b0b81789f449e2b75af46f
 DIST path.py-7.6.1.tar.gz 32974 SHA256 201c86613327f2f6c2d34c8f28689bdfde74fbb758c5211a1f8652dc71fa9e5a SHA512 f0879018bc5dbc3c5796a0587976f7bd40c44d62c4d81884efef2aca914b0ed14aada3f94c5ad6b8ac6cf8dbc809ff231ca4308d64438c38feafccbba478f796 WHIRLPOOL bb492d8ed4acb0b6c088c36acaba863514f85b46373fe98abd8f6edaf43ea9629340de128cbf2d385a81ccd923325870449553071bf0b967d28a9af1c54c87e1
 DIST path.py-7.7.1.tar.gz 33102 SHA256 692feac9d1fe3b70239b2f0f07dcdbbdad38e3611846924de33ec6175d87638e SHA512 9275fab8340600889e0704d383f009d9aa94f9fa903aade57922b8fc797587734bdacd89ab6e87573dffd4cfa6a167067e03cfab0916cc3416619774134de7cb WHIRLPOOL 7811ccbf811c8d7a307d2cb50ddfdea2e96c49de2e1618c856d97f300560cca3558c2fa2a1cf29717cfbdb4460f05f7fe8d5dbd9efadba3ae76e4f526d3c7b53
 DIST path.py-7.7.tar.gz 33065 SHA256 078e1011f0ee748e8569c9972a6259898c6e8f58d45c4ca06f3fab007c241544 SHA512 d8b1fb41bfd923054a03ef9d750f0921952b508f6be77cc026ba887584a610376d12ec54e1c1027bba02a256996e56b30b8dd6e56e8e1753c05a571985f43dc2 WHIRLPOOL c9bafc6ae2fe293978f086617c08341970dd2f0f2b2ec2e12b2904a7429171a3bcabcb8fb7014c8e8d330487724c7fb39ec10ac64d46524fc689c341ba053171
+DIST path.py-8.1.tar.gz 33221 SHA256 27ea0789c12cbe8e2a29397d2a54581009094a0684ce880844ba9fc4c16ce30c SHA512 f5a2e824bdf7c097fc690ce57237dc476e0c2b748dd6c7b1559d4d769bef2485a5bfddcad6ae89af861a0e072fc16eeefea307a0c3e069fa30b9e4e90b9a742f WHIRLPOOL e8c307bfbdfd0c61e2d09c21689120e4c1986b230daa56c51b56d94329149a32870f37cec3ccd1fdee12d8c40cd2f38ec90de1dfdecfad3d73f233004551368b

diff --git a/dev-python/path-py/path-py-8.1.ebuild b/dev-python/path-py/path-py-8.1.ebuild
new file mode 100644
index 0000000..b490b2b
--- /dev/null
+++ b/dev-python/path-py/path-py-8.1.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
+
+inherit distutils-r1
+
+MY_P="path.py-${PV}"
+
+DESCRIPTION="A module wrapper for os.path"
+HOMEPAGE="http://pythonhosted.org/path.py https://pypi.python.org/pypi/path.py https://github.com/jaraco/path.py"
+SRC_URI="mirror://pypi/p/path.py/${MY_P}.tar.gz"
+
+SLOT="0"
+LICENSE="MIT"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+DEPEND="
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	test? (
+		dev-python/appdirs[${PYTHON_USEDEP}]
+		dev-python/pytest[${PYTHON_USEDEP}]
+		dev-python/pytest-runner[${PYTHON_USEDEP}]
+	)"
+
+S="${WORKDIR}/${MY_P}"
+
+python_prepare_all() {
+	sed '/setuptools_scm/d' -i setup.py || die
+	distutils-r1_python_prepare_all
+}
+
+python_test() {
+	esetup.py test
+}


             reply	other threads:[~2015-09-02 16:30 UTC|newest]

Thread overview: 86+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-02 16:30 Justin Lecher [this message]
  -- strict thread matches above, loose matches on Subject: below --
2022-09-26 11:21 [gentoo-commits] repo/gentoo:master commit in: dev-python/path-py/ Michał Górny
2022-05-12 10:53 Michał Górny
2022-03-31 12:42 Michał Górny
2022-03-31 12:34 Jakov Smolić
2022-02-25 23:41 Michał Górny
2022-02-04 12:04 Michał Górny
2021-08-26  8:15 Michał Górny
2021-08-26  3:00 Sam James
2021-07-27  5:37 Michał Górny
2021-07-25 21:25 Michał Górny
2021-07-24 17:33 Michał Górny
2021-07-24 17:10 Sam James
2021-06-13  6:10 Michał Górny
2021-05-05 18:20 Michał Górny
2021-03-25 19:09 Michał Górny
2021-03-25 14:23 Sam James
2021-03-02  8:33 Michał Górny
2021-03-02  1:38 Sam James
2021-02-21 22:33 Michał Górny
2021-01-29  9:00 Michał Górny
2021-01-17 16:16 Sam James
2020-11-28 14:21 Sam James
2020-09-30 12:11 Louis Sautier
2020-09-09  0:09 Sam James
2020-07-28  2:41 Michał Górny
2020-07-28  2:41 Michał Górny
2020-07-09 13:06 Michał Górny
2020-07-09 13:06 Michał Górny
2020-05-26  7:11 Michał Górny
2020-05-26  7:11 Michał Górny
2020-05-26  6:15 Michał Górny
2020-05-25 20:16 Michał Górny
2020-05-17  8:20 Michał Górny
2020-05-16  9:07 Michał Górny
2020-05-16  9:07 Michał Górny
2020-04-15  5:54 Mike Gilbert
2020-03-25 11:46 Michał Górny
2020-03-25 11:46 Michał Górny
2020-03-10 10:33 Agostino Sarubbo
2020-03-10  8:56 Agostino Sarubbo
2020-03-10  8:55 Agostino Sarubbo
2020-03-10  8:53 Agostino Sarubbo
2020-03-09 18:55 Thomas Deutschmann
2020-03-09 18:10 Mikle Kolyada
2020-01-26 17:11 Michał Górny
2019-12-30 10:15 Sergei Trofimovich
2019-12-24 14:21 Mikle Kolyada
2019-12-16  7:54 Agostino Sarubbo
2019-12-16  7:54 Agostino Sarubbo
2019-12-16  7:53 Agostino Sarubbo
2019-12-16  7:52 Agostino Sarubbo
2019-12-16  7:51 Agostino Sarubbo
2019-12-16  7:49 Agostino Sarubbo
2019-12-02  2:48 Aaron Bauman
2019-11-25  8:09 Patrick McLean
2019-11-23  4:30 Patrick McLean
2018-08-20  5:00 Mikle Kolyada
2018-07-14 12:08 Michał Górny
2018-06-25 18:45 Tim Harder
2018-02-21 17:20 Michał Górny
2018-02-21 14:24 Michał Górny
2018-02-19 21:07 Michał Górny
2017-08-13 11:24 David Seifert
2017-03-23 17:32 Mike Gilbert
2017-03-12  4:52 Zac Medico
2017-01-03 21:32 Mike Gilbert
2015-11-23 10:05 Justin Lecher
2015-11-23  6:44 Jeroen Roovers
2015-11-22  8:53 Markus Meier
2015-11-19 10:25 Agostino Sarubbo
2015-11-16 15:01 Agostino Sarubbo
2015-11-05 11:52 Agostino Sarubbo
2015-11-04 16:09 Agostino Sarubbo
2015-11-04 15:50 Agostino Sarubbo
2015-11-03  7:45 Justin Lecher
2015-11-02 13:12 Agostino Sarubbo
2015-11-02 13:09 Agostino Sarubbo
2015-10-21 13:41 Justin Lecher
2015-10-15 14:41 Justin Lecher
2015-09-11  7:53 Justin Lecher
2015-09-02 10:16 Justin Lecher
2015-08-26  7:08 Justin Lecher
2015-08-25  8:10 Justin Lecher
2015-08-21 17:19 Justin Lecher
2015-08-10  5:33 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=1441211434.b20b47efd3c176a6fb5cb037a902ced99a53a628.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