Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/django-evolution/
Date: Tue, 02 May 2017 11:58:38
Message-Id: 1493726291.52ecde03852990715a8cef6f906c704956d4beb4.mgorny@gentoo
1 commit: 52ecde03852990715a8cef6f906c704956d4beb4
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 2 11:13:27 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue May 2 11:58:11 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52ecde03
7
8 dev-python/django-evolution: Clean old versions up
9
10 dev-python/django-evolution/Manifest | 1 -
11 .../django-evolution/django-evolution-0.6.9.ebuild | 46 ----------------------
12 2 files changed, 47 deletions(-)
13
14 diff --git a/dev-python/django-evolution/Manifest b/dev-python/django-evolution/Manifest
15 index bf5d009b450..c612bfff528 100644
16 --- a/dev-python/django-evolution/Manifest
17 +++ b/dev-python/django-evolution/Manifest
18 @@ -1,3 +1,2 @@
19 -DIST django_evolution-0.6.9.tar.gz 65021 SHA256 7a526b1a39e07dd3df3612986896bd8bd5e7dd42a38a9779ce749a4e8f3015f4 SHA512 f3e0925546210bdcb622ed7e51ed6e032acfc721bee9dbd7ba96b4280b36c978657c8b3d68d17799c3cc654796f8cb4d7f6c05f6eaa49840471b7f1f5dc96651 WHIRLPOOL 043a1beb21c19765cbc207ba0ef5b2c1543ee78d2c6066dbf1b53f7c877783aa50d0193eab01547db38297204969a862e3330ca22865f1903f6d06b12983bfae
20 DIST django_evolution-0.7.4.tar.gz 88467 SHA256 0b75bf163d5c859f171baf674503dfb3ca7d1d2ef082e5c5952d52b9ee6644e4 SHA512 6a6596211da7c0df1690e969b6116ee86ef2645886aab3d2026c1eadc0663f58f8c4025ffc30bb5b11f2f7ccedc687702396244c8fb12f1ea12b026521f90803 WHIRLPOOL e9f35d9c0ca8f8e199d1da3092904e38ec9e72e9602e342d7e5c0b20542d7f9ff591fae1b6a39b5703bb73a0822ae7f317d32f592301153aac7bbf7c56ef530b
21 DIST django_evolution-0.7.5.tar.gz 89551 SHA256 db9ee54849ccce54736b18926bd3b839d5a0e61a713263851d3e220c49e96ce1 SHA512 f457fa53ff59bff09fa3fc3ad73ffc8f09ce306c756b022d2da097cba1f14b69dca03ff2c714ac470da7200f649c4765543a717a6ce851d1dbd4b0fc8fc84098 WHIRLPOOL 38cacf172047d97ef60cda119ca69bfada8b24687e21d7194c580bfff2def50e84c402223c086c9e870385b465d96556cc4b90ff9a0033937783529cab220be0
22
23 diff --git a/dev-python/django-evolution/django-evolution-0.6.9.ebuild b/dev-python/django-evolution/django-evolution-0.6.9.ebuild
24 deleted file mode 100644
25 index a6e43c88613..00000000000
26 --- a/dev-python/django-evolution/django-evolution-0.6.9.ebuild
27 +++ /dev/null
28 @@ -1,46 +0,0 @@
29 -# Copyright 1999-2015 Gentoo Foundation
30 -# Distributed under the terms of the GNU General Public License v2
31 -
32 -EAPI=5
33 -
34 -PYTHON_COMPAT=( python2_7 )
35 -
36 -inherit distutils-r1
37 -
38 -MY_PN=${PN/-/_}
39 -MY_P=${MY_PN}-${PV}
40 -
41 -DESCRIPTION="A Django application that will run cron jobs for other django apps"
42 -HOMEPAGE="https://code.google.com/p/django-evolution/ https://pypi.python.org/pypi/django_evolution/"
43 -SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
44 -
45 -LICENSE="BSD"
46 -SLOT="0"
47 -KEYWORDS="~amd64 ~x86"
48 -IUSE="test"
49 -
50 -RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
51 -DEPEND="${RDEPEND}
52 - dev-python/django[${PYTHON_USEDEP}]
53 - test? ( dev-python/nose[${PYTHON_USEDEP}] )"
54 -
55 -S=${WORKDIR}/${MY_P}
56 -
57 -python_prepare_all() {
58 - # Fix installing 'tests' package in the global scope.
59 - # https://code.google.com/p/django-evolution/issues/detail?id=134
60 - sed -i -e 's:find_packages(:&exclude=("tests",):' setup.py || die
61 -
62 - distutils-r1_python_prepare_all
63 -}
64 -
65 -python_test() {
66 - # https://code.google.com/p/django-evolution/issues/detail?id=135
67 - # This is tested, any delay in die subsequent to (implicitly inherited) multiprocessing eclass
68 - "${PYTHON}" tests/runtests.py || die
69 -}
70 -
71 -python_install_all() {
72 - distutils-r1_python_install_all
73 - dodoc -r docs/
74 -}