summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkos Chandras <hwoarang@gentoo.org>2011-06-23 14:58:55 +0000
committerMarkos Chandras <hwoarang@gentoo.org>2011-06-23 14:58:55 +0000
commite5b3b694ac2a8e1450a215bfbeadde1a0260c9b3 (patch)
tree80552143cd06c58c8a1afa5011d88a4131d504b9 /dev-python/demjson
parentVersion Bump, respect LDFLAGS, #337655 (diff)
downloadhistorical-e5b3b694ac2a8e1450a215bfbeadde1a0260c9b3.tar.gz
historical-e5b3b694ac2a8e1450a215bfbeadde1a0260c9b3.tar.bz2
historical-e5b3b694ac2a8e1450a215bfbeadde1a0260c9b3.zip
Remove old ebuilds. Requested by Arfrever
Package-Manager: portage-2.1.9.49/cvs/Linux x86_64
Diffstat (limited to 'dev-python/demjson')
-rw-r--r--dev-python/demjson/ChangeLog5
-rw-r--r--dev-python/demjson/demjson-1.5.ebuild42
2 files changed, 4 insertions, 43 deletions
diff --git a/dev-python/demjson/ChangeLog b/dev-python/demjson/ChangeLog
index 27793c5eccc5..349e23daaf82 100644
--- a/dev-python/demjson/ChangeLog
+++ b/dev-python/demjson/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/demjson
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/demjson/ChangeLog,v 1.15 2011/05/27 10:41:55 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/demjson/ChangeLog,v 1.16 2011/06/23 14:46:54 hwoarang Exp $
+
+ 23 Jun 2011; Markos Chandras <hwoarang@gentoo.org> -demjson-1.5.ebuild:
+ Remove old ebuilds. Requested by Arfrever
27 May 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> demjson-1.6.ebuild:
x86 stable wrt bug #365881
diff --git a/dev-python/demjson/demjson-1.5.ebuild b/dev-python/demjson/demjson-1.5.ebuild
deleted file mode 100644
index e93ead03f76d..000000000000
--- a/dev-python/demjson/demjson-1.5.ebuild
+++ /dev/null
@@ -1,42 +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/demjson/demjson-1.5.ebuild,v 1.3 2010/11/19 20:17:36 hwoarang Exp $
-
-EAPI="3"
-PYTHON_DEPEND="2"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="3.*"
-
-inherit distutils
-
-DESCRIPTION="encoder, decoder, and lint/validator for JSON (JavaScript Object Notation) compliant with RFC 4627"
-HOMEPAGE="http://deron.meranda.us/python/demjson/ http://pypi.python.org/pypi/demjson"
-SRC_URI="http://deron.meranda.us/python/${PN}/dist/${P}.tar.gz"
-
-LICENSE="LGPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="doc"
-
-DEPEND="dev-python/setuptools"
-RDEPEND=""
-
-DOCS="AUTHORS.txt CHANGES.txt NEWS.txt THANKS.txt docs/*.txt"
-PYTHON_MODNAME="demjson.py"
-
-src_test() {
- cd test
-
- testing() {
- PYTHONPATH="../build-${PYTHON_ABI}/lib" "$(PYTHON)" test_demjson.py
- }
- python_execute_function testing
-}
-
-src_install() {
- distutils_src_install
-
- if use doc; then
- dohtml docs/*.html || die "Installation of documentation failed"
- fi
-}