summaryrefslogtreecommitdiff
path: root/dev-python/urwidtrees
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/urwidtrees')
-rw-r--r--dev-python/urwidtrees/Manifest1
-rw-r--r--dev-python/urwidtrees/files/urwidtrees-1.0.3-no-mock-dep.patch30
-rw-r--r--dev-python/urwidtrees/metadata.xml20
-rw-r--r--dev-python/urwidtrees/urwidtrees-1.0.3-r2.ebuild40
4 files changed, 0 insertions, 91 deletions
diff --git a/dev-python/urwidtrees/Manifest b/dev-python/urwidtrees/Manifest
deleted file mode 100644
index e5e022dee514..000000000000
--- a/dev-python/urwidtrees/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST urwidtrees-1.0.3.gh.tar.gz 292930 BLAKE2B 91487debf4878fb58cf2505366a4762a4c755b53eaac86e3ac912d2972c66442828e152749f34e73ade10fd1b912054e4047900e0b54b960629909c1b03e2270 SHA512 f7d69d359ba24345a694659fd9432335679f4b505a5c0e33baf9fc0c068935148c393aff8e11cd5f2c12aa26884aa37ba86e9b3a763472e382d73dd57fd32cd6
diff --git a/dev-python/urwidtrees/files/urwidtrees-1.0.3-no-mock-dep.patch b/dev-python/urwidtrees/files/urwidtrees-1.0.3-no-mock-dep.patch
deleted file mode 100644
index d26d23e085fe..000000000000
--- a/dev-python/urwidtrees/files/urwidtrees-1.0.3-no-mock-dep.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From ed39dbc4fc67b0e0249bf108116a88cd18543aa9 Mon Sep 17 00:00:00 2001
-From: Louis Leseur <louis.leseur@gmail.com>
-Date: Wed, 26 Aug 2020 10:36:29 +0200
-Subject: [PATCH] Update mock dependency to install when necessary
-
-Closes: #48
----
- setup.py | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/setup.py b/setup.py
-index 9f6e328..ab8ffdc 100755
---- a/setup.py
-+++ b/setup.py
-@@ -14,10 +14,10 @@ setup(
- url="https://github.com/pazz/urwidtrees",
- license="Licensed under the GNU GPL v3+.",
- packages=['urwidtrees'],
-- install_requires=['urwid>=1.1.0', 'mock'],
-+ install_requires=['urwid>=1.1.0'],
- extras_require={
- 'docs': [
-- 'mock',
-+ 'mock;python_version<"3.3"',
- ],
- },
- )
---
-2.26.3
-
diff --git a/dev-python/urwidtrees/metadata.xml b/dev-python/urwidtrees/metadata.xml
deleted file mode 100644
index 3829b6175352..000000000000
--- a/dev-python/urwidtrees/metadata.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person" proxied="yes">
- <email>guillaumeseren@gmail.com</email>
- <name>Guillaume Seren</name>
- </maintainer>
- <maintainer type="project" proxied="proxy">
- <email>proxy-maint@gentoo.org</email>
- <name>Proxy Maintainers</name>
- </maintainer>
- <longdescription lang="en">
- This is a Widget Container API for the urwid toolkit. It uses a MVC
- approach and allows to build trees of widgets.
- </longdescription>
- <upstream>
- <remote-id type="github">pazz/urwidtrees</remote-id>
- <remote-id type="pypi">urwidtrees</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/urwidtrees/urwidtrees-1.0.3-r2.ebuild b/dev-python/urwidtrees/urwidtrees-1.0.3-r2.ebuild
deleted file mode 100644
index 722ff4048210..000000000000
--- a/dev-python/urwidtrees/urwidtrees-1.0.3-r2.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{13..14} )
-
-inherit distutils-r1
-
-DESCRIPTION="Tree widgets for urwid"
-HOMEPAGE="https://github.com/pazz/urwidtrees"
-SRC_URI="
- https://github.com/pazz/urwidtrees/archive/${PV}.tar.gz
- -> ${P}.gh.tar.gz
-"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 ~x86"
-
-RDEPEND=">=dev-python/urwid-1.1.0[${PYTHON_USEDEP}]"
-
-PATCHES=(
- "${FILESDIR}"/${P}-no-mock-dep.patch #770391
-)
-
-distutils_enable_sphinx docs/source
-
-src_prepare() {
- find -name '*.py' -exec \
- sed -i -e '1i# -*- coding: utf-8 -*-' {} + || die
-
- distutils-r1_src_prepare
-
- local md
- for md in *.md; do
- mv "${md}" "${md%.md}" || die
- done
-}