summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2017-05-02 18:52:00 +0200
committerMichał Górny <mgorny@gentoo.org>2017-05-02 19:43:14 +0200
commit5be62ca2499f9731b33f1b07665fab9000ca9051 (patch)
treef3a23735cb4419d31c674d3dd54607239056934c /dev-python/demjson
parentdev-python/dj-database-url: Clean old versions up (diff)
downloadgentoo-5be62ca2499f9731b33f1b07665fab9000ca9051.tar.gz
gentoo-5be62ca2499f9731b33f1b07665fab9000ca9051.tar.bz2
gentoo-5be62ca2499f9731b33f1b07665fab9000ca9051.zip
dev-python/demjson: Clean old versions up
Diffstat (limited to 'dev-python/demjson')
-rw-r--r--dev-python/demjson/Manifest2
-rw-r--r--dev-python/demjson/demjson-2.2.2.ebuild35
-rw-r--r--dev-python/demjson/demjson-2.2.3.ebuild35
3 files changed, 0 insertions, 72 deletions
diff --git a/dev-python/demjson/Manifest b/dev-python/demjson/Manifest
index cd1cc12fc736..0754280a026d 100644
--- a/dev-python/demjson/Manifest
+++ b/dev-python/demjson/Manifest
@@ -1,3 +1 @@
-DIST demjson-2.2.2.tar.gz 130874 SHA256 5114563dd3a0324b6c9c74250528660adbb6a095b2a015038149e31a9b5727d5 SHA512 c5df57fdc286b33fbceada0ff8531d559fb183b29ca114fbfef7dfd0615ad5bae3882da91b6818ad58be5e20d3c2091db7cb75b1c31285b8ed5f466984b5fc15 WHIRLPOOL 6ca4e599128a896df098514d2b1983b025122ac07ee5ffa2f673c2d441482e32b7fa013a3896c2efedfcea9114dbe2049927b1754d4db9127bdf1ab9f32ddda3
-DIST demjson-2.2.3.tar.gz 131263 SHA256 9fb0f3c02fe500104680af2889a64d1637b395aebdb37341ae2309d77854f40c SHA512 058f8429967e21b30a9e28ec7790c372f5eb3126d7ab05c17d6f0548002650314048bf2f4eb3e2c8f75bb91169722c90eeeddb815ca166dfb14b2d1385504b14 WHIRLPOOL b665e19c5c28afd4636b2f33959f7a14d04706c8e8d7c77ef790fb12e3aff56a1cea35420caf7eceb06de8b001cab07a3e38d4252b7f67a3dbba99fcc4f1d476
DIST demjson-2.2.4.tar.gz 131457 SHA256 31de2038a0fdd9c4c11f8bf3b13fe77bc2a128307f965c8d5fb4dc6d6f6beb79 SHA512 d8a1cde062d0b062bdae29b6d79ad69fb9cc185428718a0009ccbed544ed37bd354fbb86edadb56bd98183ac8636b2edae322ed19aa5f07a7b6df668c7aa0029 WHIRLPOOL 70e826739bc2ae7ca040e54fe651f021a1c7f08357d985a560a8560f5da694da0068d32e7a972525ba215a6fcda93abdebdf4d99c8e3f156a9f17600aa283973
diff --git a/dev-python/demjson/demjson-2.2.2.ebuild b/dev-python/demjson/demjson-2.2.2.ebuild
deleted file mode 100644
index 5da168ee484d..000000000000
--- a/dev-python/demjson/demjson-2.2.2.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python{2_7,3_4} pypy )
-
-inherit distutils-r1
-
-DESCRIPTION="encoder, decoder, and lint/validator for JSON (JavaScript Object Notation) compliant with RFC 4627"
-HOMEPAGE="http://deron.meranda.us/python/demjson/ https://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[${PYTHON_USEDEP}]"
-RDEPEND=""
-
-python_test() {
- cd test
- if python_is_python3; then
- 2to3 -w --no-diffs test_demjson.py
- fi
- "${PYTHON}" test_demjson.py
-}
-
-python_install_all() {
- distutils-r1_python_install_all
- # Docs are .txt files
- if use doc; then
- dodoc docs/*.txt || die "Installation of documentation failed"
- fi
-}
diff --git a/dev-python/demjson/demjson-2.2.3.ebuild b/dev-python/demjson/demjson-2.2.3.ebuild
deleted file mode 100644
index 9181e2d8f2e3..000000000000
--- a/dev-python/demjson/demjson-2.2.3.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python{2_7,3_4} pypy pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="encoder, decoder, and lint/validator for JSON (JavaScript Object Notation) compliant with RFC 4627"
-HOMEPAGE="http://deron.meranda.us/python/demjson/ https://pypi.python.org/pypi/demjson"
-SRC_URI="http://deron.meranda.us/python/${PN}/dist/${P}.tar.gz"
-
-LICENSE="LGPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE="doc"
-
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-RDEPEND=""
-
-python_test() {
- cd test
- if python_is_python3; then
- 2to3 -w --no-diffs test_demjson.py
- fi
- "${PYTHON}" test_demjson.py
-}
-
-python_install_all() {
- distutils-r1_python_install_all
- # Docs are .txt files
- if use doc; then
- dodoc docs/*.txt || die "Installation of documentation failed"
- fi
-}