summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkos Chandras <hwoarang@gentoo.org>2011-08-05 22:54:34 +0000
committerMarkos Chandras <hwoarang@gentoo.org>2011-08-05 22:54:34 +0000
commit8563b83c5cf44a55fa368f00a1cbc6716673609b (patch)
tree119256abc76414a7d878c1cc8ab4767f35b3dc7e /dev-python/jsonpickle
parentRemove old ebuild. Requested by Arfrever (diff)
downloadgentoo-2-8563b83c5cf44a55fa368f00a1cbc6716673609b.tar.gz
gentoo-2-8563b83c5cf44a55fa368f00a1cbc6716673609b.tar.bz2
gentoo-2-8563b83c5cf44a55fa368f00a1cbc6716673609b.zip
Remove old ebuild. Requested by Arfrever
(Portage version: 2.2.0_alpha50/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/jsonpickle')
-rw-r--r--dev-python/jsonpickle/ChangeLog5
-rw-r--r--dev-python/jsonpickle/jsonpickle-0.3.1.ebuild40
2 files changed, 4 insertions, 41 deletions
diff --git a/dev-python/jsonpickle/ChangeLog b/dev-python/jsonpickle/ChangeLog
index 1aa42d556e98..713d38327b36 100644
--- a/dev-python/jsonpickle/ChangeLog
+++ b/dev-python/jsonpickle/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/jsonpickle
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/jsonpickle/ChangeLog,v 1.7 2011/07/29 22:38:54 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/jsonpickle/ChangeLog,v 1.8 2011/08/05 22:54:33 hwoarang Exp $
+
+ 05 Aug 2011; Markos Chandras <hwoarang@gentoo.org> -jsonpickle-0.3.1.ebuild:
+ Remove old ebuild. Requested by Arfrever
*jsonpickle-0.4.0 (29 Jul 2011)
diff --git a/dev-python/jsonpickle/jsonpickle-0.3.1.ebuild b/dev-python/jsonpickle/jsonpickle-0.3.1.ebuild
deleted file mode 100644
index 4fb2a626cb07..000000000000
--- a/dev-python/jsonpickle/jsonpickle-0.3.1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/jsonpickle/jsonpickle-0.3.1.ebuild,v 1.2 2010/11/06 22:45:56 arfrever Exp $
-
-EAPI="3"
-PYTHON_DEPEND="2"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="3.*"
-
-inherit distutils
-
-DESCRIPTION="Python library for serializing any arbitrary object graph into JSON."
-HOMEPAGE="http://jsonpickle.github.com/ http://pypi.python.org/pypi/jsonpickle"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="|| ( dev-lang/python:2.7 dev-lang/python:2.6 dev-python/simplejson )"
-DEPEND="${RDEPEND}
- dev-python/setuptools"
-
-src_prepare() {
- distutils_src_prepare
-
- # Fix exit status of runtests.py.
- sed -e "s/unittest.TextTestRunner/return &/" -e "s/main()$/sys.exit(not main().wasSuccessful())/" -i tests/runtests.py || die "sed failed"
-
- # thirdparty_tests.py requires dev-python/feedparser.
- sed -e "/thirdparty_tests/d" -i tests/runtests.py || die "sed failed"
-}
-
-src_test() {
- testing() {
- PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" tests/runtests.py
- }
- python_execute_function testing
-}