Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/mimeparse/
Date: Wed, 12 Oct 2016 07:38:28
Message-Id: 1476257809.13d89a105e72d14e35957f2456f4e654867529d6.soap@gentoo
1 commit: 13d89a105e72d14e35957f2456f4e654867529d6
2 Author: Mathy Vanvoorden <mathy <AT> vanvoorden <DOT> be>
3 AuthorDate: Tue Oct 11 18:19:55 2016 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 12 07:36:49 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13d89a10
7
8 dev-python/mimeparse: remove old version 1.5.1
9
10 Package-Manager: portage-2.3.0
11 Closes: https://github.com/gentoo/gentoo/pull/2538
12
13 Signed-off-by: David Seifert <soap <AT> gentoo.org>
14
15 dev-python/mimeparse/Manifest | 1 -
16 dev-python/mimeparse/mimeparse-1.5.1.ebuild | 49 -----------------------------
17 2 files changed, 50 deletions(-)
18
19 diff --git a/dev-python/mimeparse/Manifest b/dev-python/mimeparse/Manifest
20 index f17d1f2..7dad340 100644
21 --- a/dev-python/mimeparse/Manifest
22 +++ b/dev-python/mimeparse/Manifest
23 @@ -1,3 +1,2 @@
24 DIST python-mimeparse-0.1.4.tar.gz 5228 SHA256 3c69a21e37e77f754e6fc09ebda70acd92c90d8a58f29a41cc0248351378ddc3 SHA512 c8eeb298773a0eb36512b1d9a46dfc85423c0dab10b85ed94284bf1bf8dba8c34aeccefd8b6a187434789d5a160ab5d4af81659dd1808ea02078cc2b168e10b3 WHIRLPOOL f83328743b16ae46263e05055d6400617b7858e11837ce892919e26a36348650122b78ee366125a1793b20fa71c641b3606bf834d2936f98dab65b89b740385b
25 -DIST python-mimeparse-1.5.1.tar.gz 5822 SHA256 e4d0c49120f5d946106ed3a6fed0b353740c0c9700b57d7d024c65466e50a106 SHA512 bd25dd43ba98ac8e10e02d21ae040be76b0a2ae3904333c6bbf8d46e4f12bda84eb410059b22a345b6840af2c055802b31c3f76c46f133c1c11673a4f15f21f7 WHIRLPOOL a31cd0a78ba86a16d335ece4a226981dce813399e0695ce577d6fa8f327e6cf88c5723f69600f5852cde2d1a66ccb49aac1b8ada3854e1fe8f33a073a8ebb27c
26 DIST python-mimeparse-1.5.2.tar.gz 5870 SHA256 bef134a59598cc6aa598f84553162aa7a0c01f3f431588225bb9a208964b1827 SHA512 e11c28d627da4a12075ebc427813476ef32585cfeeb323c852e80f1fb8e987324ffab8a314e5249fe689460a457189d6cd252241b81a1d2d8216256d4976df14 WHIRLPOOL 9f1e290f37ab4e4cf0785c2188882bee7f660f533718b6c19867f12f0213f3a59a783559e98d86955f587c9e6d9b15de5b93cf3d1712e65c7b8e0248463d2ffa
27
28 diff --git a/dev-python/mimeparse/mimeparse-1.5.1.ebuild b/dev-python/mimeparse/mimeparse-1.5.1.ebuild
29 deleted file mode 100644
30 index 0d1ed5a..00000000
31 --- a/dev-python/mimeparse/mimeparse-1.5.1.ebuild
32 +++ /dev/null
33 @@ -1,49 +0,0 @@
34 -# Copyright 1999-2016 Gentoo Foundation
35 -# Distributed under the terms of the GNU General Public License v2
36 -# $Id$
37 -
38 -EAPI=5
39 -
40 -PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 )
41 -
42 -inherit distutils-r1
43 -
44 -MY_PN="python-${PN}"
45 -MY_P="${MY_PN}-${PV}"
46 -
47 -DESCRIPTION="Basic functions for handling mime-types in python"
48 -HOMEPAGE="
49 - https://code.google.com/p/mimeparse
50 - https://github.com/dbtsai/python-mimeparse"
51 -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
52 -
53 -LICENSE="MIT"
54 -SLOT="0"
55 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
56 -IUSE=""
57 -
58 -S="${WORKDIR}/${MY_P}"
59 -
60 -RDEPEND=""
61 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
62 -
63 -python_test() {
64 - "${PYTHON}" mimeparse_test.py || die "Tests fail with ${EPYTHON}"
65 -}
66 -
67 -python_install() {
68 - distutils-r1_python_install
69 -
70 - if [[ ${EPYTHON} == pypy ]]; then
71 - local pyver=2.7
72 - elif [[ ${EPYTHON} == pypy3 ]]; then
73 - local pyver=3.2
74 - else
75 - local pyver=${EPYTHON#python}
76 - fi
77 - python_export PYTHON_SITEDIR
78 -
79 - # Previous versions were just called 'mimeparse'
80 - ln -sf python_mimeparse-${PV}-py${pyver}.egg-info \
81 - "${D%/}${PYTHON_SITEDIR}/mimeparse-${PV}-py${pyver}.egg-info" || die
82 -}