diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-02-21 20:23:13 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-02-21 20:28:31 +0100 |
commit | d2cbfdac9e52d19a82227e52183ff8ad026fac2c (patch) | |
tree | 21a4453928fbbebe9bca5fa67019ac3da509850f /dev-python/wehjit | |
parent | dev-python/webut: Remove last-rited package (diff) | |
download | gentoo-d2cbfdac9e52d19a82227e52183ff8ad026fac2c.tar.gz gentoo-d2cbfdac9e52d19a82227e52183ff8ad026fac2c.tar.bz2 gentoo-d2cbfdac9e52d19a82227e52183ff8ad026fac2c.zip |
dev-python/wehjit: Remove last-rited package
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/wehjit')
-rw-r--r-- | dev-python/wehjit/Manifest | 1 | ||||
-rw-r--r-- | dev-python/wehjit/files/wehjit-0.2.2-SkipTest.patch | 23 | ||||
-rw-r--r-- | dev-python/wehjit/metadata.xml | 17 | ||||
-rw-r--r-- | dev-python/wehjit/wehjit-0.2.2-r1.ebuild | 37 |
4 files changed, 0 insertions, 78 deletions
diff --git a/dev-python/wehjit/Manifest b/dev-python/wehjit/Manifest deleted file mode 100644 index b6eb668a9795..000000000000 --- a/dev-python/wehjit/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST wehjit-0.2.2.tar.gz 100515 BLAKE2B 2eddf7ce81583080b051ecfd07d108a2e72dbcaba3616359d463e5c4f92d11463a03197ba372476cc5ab1523cf58614db3cb8d8a72586359a7d95620bd578d7c SHA512 f8fb2edeeb9e90315d3c8f1e9e7d73d556fcad780c4dea637599291b2094e292a42b6f3671407f3d9d88733894501796484fa05ac52f3c1f3e1cb29d376a87fb diff --git a/dev-python/wehjit/files/wehjit-0.2.2-SkipTest.patch b/dev-python/wehjit/files/wehjit-0.2.2-SkipTest.patch deleted file mode 100644 index 057d70747e74..000000000000 --- a/dev-python/wehjit/files/wehjit-0.2.2-SkipTest.patch +++ /dev/null @@ -1,23 +0,0 @@ -diff -ur wehjit-0.2.2.orig/wehjit/collection.py wehjit-0.2.2/wehjit/collection.py ---- wehjit/collection.py 2010-02-11 16:26:14.000000000 +0800 -+++ wehjit/collection.py 2012-11-08 14:24:40.326482713 +0800 -@@ -22,6 +22,11 @@ - Collect widget plugins together in a `Collection`. - """ - -+import sys -+if sys.version_info[:2] == (2, 7): -+ import unittest -+else: -+ import unittest2 as unittest - import inspect - import os - from os import path -@@ -130,6 +135,7 @@ - """ - return name in self.__plugins - -+ @unittest.skip("Plugin not in gentoo") - def __getitem__(self, name): - """ - Return the plugin named ``name``. diff --git a/dev-python/wehjit/metadata.xml b/dev-python/wehjit/metadata.xml deleted file mode 100644 index e84e225efc41..000000000000 --- a/dev-python/wehjit/metadata.xml +++ /dev/null @@ -1,17 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<maintainer type="person"> - <email>maksbotan@gentoo.org</email> - <name>Maxim Koltsov</name> -</maintainer> -<maintainer type="project"> - <email>python@gentoo.org</email> - <name>Python</name> -</maintainer> -<longdescription> - wehjit is a Python library for for building XHTML widgets for web - applications and web pages. It encapsulates the XHTML - (a Genshi XML template), CSS, and JavaScript for each widget into a plugin -</longdescription> -</pkgmetadata> diff --git a/dev-python/wehjit/wehjit-0.2.2-r1.ebuild b/dev-python/wehjit/wehjit-0.2.2-r1.ebuild deleted file mode 100644 index 246e57dcb6ec..000000000000 --- a/dev-python/wehjit/wehjit-0.2.2-r1.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -PYTHON_COMPAT=( python2_7 ) - -inherit distutils-r1 - -DESCRIPTION="A Python web-widget library" -HOMEPAGE="http://jderose.fedorapeople.org/wehjit" -SRC_URI="http://jderose.fedorapeople.org/${PN}/${PV}/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND="dev-python/genshi - dev-python/assets[${PYTHON_USEDEP}] - dev-python/paste[${PYTHON_USEDEP}] - dev-python/pygments[${PYTHON_USEDEP}] - " -DEPEND="${RDEPEND}" - -DOCS=( README NEWS ) - -PATCHES=( "${FILESDIR}"/${P}-SkipTest.patch ) - -python_test() { - if [[ "${EPYTHON:6:3}" == '2.6' ]]; then - nosetests -I test_app* -e=*getitem - else - nosetests - fi -} |