From b5f312d23839444ad8bf16b3c1577cdc9411d478 Mon Sep 17 00:00:00 2001 From: Patrice Clement Date: Tue, 11 Oct 2016 19:07:02 +0200 Subject: [PATCH] dev-python/manuel: clean up old. Package-Manager: portage-2.3.0 --- dev-python/manuel/Manifest | 1 - .../files/manuel-1.7-rm_zope_test.patch | 92 ------------------- dev-python/manuel/manuel-1.7.1.ebuild | 33 ------- 3 files changed, 126 deletions(-) delete mode 100644 dev-python/manuel/files/manuel-1.7-rm_zope_test.patch delete mode 100644 dev-python/manuel/manuel-1.7.1.ebuild diff --git a/dev-python/manuel/Manifest b/dev-python/manuel/Manifest index f0b48b42c3658..94bae128a6510 100644 --- a/dev-python/manuel/Manifest +++ b/dev-python/manuel/Manifest @@ -1,2 +1 @@ -DIST manuel-1.7.1-20130316.tar.bz2 24910 SHA256 4b23c562c84fe771d897b1ce237ba065940ffd5a847bc23bb6ec81070e0d0824 SHA512 94dab56165b92761aa710aba057338ba3062faa375600885e9943e067726ced492493bee5d203883dad604d424f8599fab35fd605e024e2a4139fb5e1a32698e WHIRLPOOL 75909a8fb55f264198733b3b0b0344c5a8e2039e23e55daab2a3dc4aba67ab7d0226ec4197e588a3625cf38062940008ebf0ca8c72a42b8b5077e2e1c38f39dd DIST manuel-1.8.0.tar.gz 207600 SHA256 a974d7e83652b26be30f6f513fac95d28b9ffa5ae2819a5c63e2ef8594913eb6 SHA512 8099df44cfd28c8ac6256f346bf8cd36091893a38d3c297099866b1a5db97286b9c9e69f3f12054d7eee9ae3985ca0a003d7b2cc082d28d59850bbcad6b57c57 WHIRLPOOL 7870484499d8c18916bf8349ed1a8a9be84eb074440b8c875f3a0468137edf45425a51545da3517a6c81a862708114eea2fa8561eaa219ccb1ff958d8fcb2afe diff --git a/dev-python/manuel/files/manuel-1.7-rm_zope_test.patch b/dev-python/manuel/files/manuel-1.7-rm_zope_test.patch deleted file mode 100644 index 3487e5f9a9fa1..0000000000000 --- a/dev-python/manuel/files/manuel-1.7-rm_zope_test.patch +++ /dev/null @@ -1,92 +0,0 @@ -diff -ur manuel-1.7.1.orig/src/manuel/tests.py manuel-1.7.1/src/manuel/tests.py ---- src/manuel/tests.py 2012-04-17 03:08:54.000000000 +0800 -+++ src/manuel/tests.py 2012-05-21 20:43:20.981722893 +0800 -@@ -9,16 +9,17 @@ - import os.path - import re - import unittest --import zope.testing.renormalizing - - doctest = manuel.absolute_import('doctest') - - here = os.path.dirname(os.path.abspath(__file__)) - --checker = zope.testing.renormalizing.RENormalizing([ -+try: -+ checker = zope.testing.renormalizing.RENormalizing([ - (re.compile(r">> list(suite)[0].shortDescription() -+ list(suite)[0].shortDescription() - 'bugs.txt' - - - - - diff --git a/dev-python/manuel/manuel-1.7.1.ebuild b/dev-python/manuel/manuel-1.7.1.ebuild deleted file mode 100644 index 15e19b1b55b6a..0000000000000 --- a/dev-python/manuel/manuel-1.7.1.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy ) - -inherit distutils-r1 - -DESCRIPTION="Manuel lets you build tested documentation" -HOMEPAGE="https://github.com/benji-york/manuel/ https://pypi.python.org/pypi/manuel" -# A snapshot was required since upstream missed out half the source -SRC_URI="https://dev.gentoo.org/~idella4/tarballs/${P}-20130316.tar.bz2" - -LICENSE="ZPL" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -RDEPEND="dev-python/six[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}]" -# Required to run tests -DISTUTILS_IN_SOURCE_BUILD=1 - -DOCS=( CHANGES.txt ) - -PATCHES=( "${FILESDIR}"/${PN}-1.7-rm_zope_test.patch ) - -python_test() { - PYTHONPATH=src/ esetup.py test -}