Gentoo Archives: gentoo-commits

From: Marius Brehler <marbre@××××××××××××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: dev-python/pickleshare/
Date: Sat, 28 Nov 2015 17:58:17
Message-Id: 1448732832.04c2bc173aaa41cacba0665080c2502b5fa1cf5b.marbre@gentoo
1 commit: 04c2bc173aaa41cacba0665080c2502b5fa1cf5b
2 Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
3 AuthorDate: Sat Nov 28 17:47:12 2015 +0000
4 Commit: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
5 CommitDate: Sat Nov 28 17:47:12 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=04c2bc17
7
8 dev-python/pickleshare: Moved to tree
9
10 Package-Manager: portage-2.2.20.1
11
12 dev-python/pickleshare/ChangeLog | 4 ++++
13 dev-python/pickleshare/pickleshare-0.5.ebuild | 34 ---------------------------
14 2 files changed, 4 insertions(+), 34 deletions(-)
15
16 diff --git a/dev-python/pickleshare/ChangeLog b/dev-python/pickleshare/ChangeLog
17 index d7c56ec..52d018e 100644
18 --- a/dev-python/pickleshare/ChangeLog
19 +++ b/dev-python/pickleshare/ChangeLog
20 @@ -2,6 +2,10 @@
21 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
22 # $Id$
23
24 + 28 Nov 2015; Marius Brehler <marbre@××××××××××××××.de> -Manifest,
25 + -pickleshare-0.5.ebuild:
26 + dev-python/pickleshare: Moved to tree
27 +
28 21 Sep 2015; Marius Brehler <marbre@××××××××××××××.de>
29 pickleshare-9999.ebuild:
30 dev-python/pickleshare: Add ~x86 to KEYWORDS
31
32 diff --git a/dev-python/pickleshare/pickleshare-0.5.ebuild b/dev-python/pickleshare/pickleshare-0.5.ebuild
33 deleted file mode 100644
34 index 7fd09f4..0000000
35 --- a/dev-python/pickleshare/pickleshare-0.5.ebuild
36 +++ /dev/null
37 @@ -1,34 +0,0 @@
38 -# Copyright 1999-2015 Gentoo Foundation
39 -# Distributed under the terms of the GNU General Public License v2
40 -# $Id$
41 -
42 -EAPI=5
43 -
44 -PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
45 -
46 -inherit distutils-r1
47 -
48 -DESCRIPTION="A small 'shelve' like datastore with concurrency support"
49 -HOMEPAGE="https://github.com/pickleshare/pickleshare"
50 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
51 -
52 -LICENSE="MIT"
53 -SLOT="0"
54 -KEYWORDS="~amd64 ~x86"
55 -IUSE="test"
56 -
57 -RDEPEND="
58 - dev-python/path-py[${PYTHON_USEDEP}]"
59 -DEPEND="${RDEPEND}
60 - test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
61 -
62 -# test_pickleshare.py is not included in the pickleshare-0.5 source
63 -# we fetched from pipy
64 -RESTRICT="test"
65 -
66 -python_test() {
67 - distutils_install_for_testing
68 - cd "${TEST_DIR}"/lib || die
69 - cp "${S}"/test_pickleshare.py "${TEST_DIR}"/lib/ || die
70 - py.test || die
71 -}