summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-11-06 22:43:49 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-11-06 22:43:49 +0000
commit1bd0f71b6941cdc39bfcc789e5d46878fa230d34 (patch)
tree9f64b840f3f0b8c3f4f3fe3e831d2b8821f0e501 /dev-python/jsonpickle
parentStable for ppc64; bug #328241 (diff)
downloadgentoo-2-1bd0f71b6941cdc39bfcc789e5d46878fa230d34.tar.gz
gentoo-2-1bd0f71b6941cdc39bfcc789e5d46878fa230d34.tar.bz2
gentoo-2-1bd0f71b6941cdc39bfcc789e5d46878fa230d34.zip
Delete older ebuilds.
Diffstat (limited to 'dev-python/jsonpickle')
-rw-r--r--dev-python/jsonpickle/ChangeLog8
-rw-r--r--dev-python/jsonpickle/jsonpickle-0.2.0.ebuild32
-rw-r--r--dev-python/jsonpickle/jsonpickle-0.3.0.ebuild37
3 files changed, 6 insertions, 71 deletions
diff --git a/dev-python/jsonpickle/ChangeLog b/dev-python/jsonpickle/ChangeLog
index ec1ea2b76b00..562259b5c03b 100644
--- a/dev-python/jsonpickle/ChangeLog
+++ b/dev-python/jsonpickle/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-python/jsonpickle
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/jsonpickle/ChangeLog,v 1.4 2009/12/12 20:06:49 arfrever Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/jsonpickle/ChangeLog,v 1.5 2010/11/06 22:43:49 arfrever Exp $
+
+ 06 Nov 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+ -jsonpickle-0.2.0.ebuild, -jsonpickle-0.3.0.ebuild:
+ Delete.
*jsonpickle-0.3.1 (12 Dec 2009)
diff --git a/dev-python/jsonpickle/jsonpickle-0.2.0.ebuild b/dev-python/jsonpickle/jsonpickle-0.2.0.ebuild
deleted file mode 100644
index 09315b1230c2..000000000000
--- a/dev-python/jsonpickle/jsonpickle-0.2.0.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/jsonpickle/jsonpickle-0.2.0.ebuild,v 1.2 2009/06/30 20:46:18 fauli Exp $
-
-EAPI="2"
-
-inherit distutils
-
-DESCRIPTION="Python library for serializing any arbitrary object graph into JSON."
-HOMEPAGE="http://code.google.com/p/jsonpickle/"
-SRC_URI="http://jsonpickle.googlecode.com/files/${P}.tar.gz"
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="|| ( >=dev-lang/python-2.6
- ( dev-lang/python:2.5 dev-python/simplejson ) )"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- sed -i \
- -e '/install_requires/d' \
- setup.py || die "sed failed"
- sed -i \
- -e '/thirdparty/d' \
- jsonpickle/tests/__init__.py || die "sed failed"
-}
-
-src_test() {
- PYTHONPATH="./build/lib" "${python}" setup.py test || die "tests failed"
-}
diff --git a/dev-python/jsonpickle/jsonpickle-0.3.0.ebuild b/dev-python/jsonpickle/jsonpickle-0.3.0.ebuild
deleted file mode 100644
index bf017a85a2e7..000000000000
--- a/dev-python/jsonpickle/jsonpickle-0.3.0.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/jsonpickle/jsonpickle-0.3.0.ebuild,v 1.1 2009/12/12 06:36:49 arfrever Exp $
-
-EAPI="2"
-SUPPORT_PYTHON_ABIS="1"
-
-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="http://pypi.python.org/packages/source/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="|| ( >=dev-lang/python-2.6
- ( dev-lang/python:2.5 dev-python/simplejson ) )"
-DEPEND="${RDEPEND}
- dev-python/setuptools"
-RESTRICT_PYTHON_ABIS="3.*"
-
-#src_prepare() {
-# distutils_src_prepare
-#
-# # thirdparty_tests.py requires dev-python/feedparser.
-# sed -e "/thirdparty_tests/d" -i tests/runtests.py
-#}
-
-#src_test() {
-# testing() {
-# PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" tests/runtests.py
-# }
-# python_execute_function testing
-#}