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/urwidtrees/
Date: Sat, 04 Mar 2023 05:53:18
Message-Id: 1677909181.09c000c90dc29f050c88c81d378c17a3a42b9add.mgorny@gentoo
1 commit: 09c000c90dc29f050c88c81d378c17a3a42b9add
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 4 05:49:38 2023 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 4 05:53:01 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09c000c9
7
8 dev-python/urwidtrees: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/urwidtrees/Manifest | 1 -
13 dev-python/urwidtrees/urwidtrees-1.0.3.ebuild | 36 ---------------------------
14 2 files changed, 37 deletions(-)
15
16 diff --git a/dev-python/urwidtrees/Manifest b/dev-python/urwidtrees/Manifest
17 index b90fcd2e57c5..e5e022dee514 100644
18 --- a/dev-python/urwidtrees/Manifest
19 +++ b/dev-python/urwidtrees/Manifest
20 @@ -1,2 +1 @@
21 DIST urwidtrees-1.0.3.gh.tar.gz 292930 BLAKE2B 91487debf4878fb58cf2505366a4762a4c755b53eaac86e3ac912d2972c66442828e152749f34e73ade10fd1b912054e4047900e0b54b960629909c1b03e2270 SHA512 f7d69d359ba24345a694659fd9432335679f4b505a5c0e33baf9fc0c068935148c393aff8e11cd5f2c12aa26884aa37ba86e9b3a763472e382d73dd57fd32cd6
22 -DIST urwidtrees-1.0.3.tar.gz 292930 BLAKE2B 91487debf4878fb58cf2505366a4762a4c755b53eaac86e3ac912d2972c66442828e152749f34e73ade10fd1b912054e4047900e0b54b960629909c1b03e2270 SHA512 f7d69d359ba24345a694659fd9432335679f4b505a5c0e33baf9fc0c068935148c393aff8e11cd5f2c12aa26884aa37ba86e9b3a763472e382d73dd57fd32cd6
23
24 diff --git a/dev-python/urwidtrees/urwidtrees-1.0.3.ebuild b/dev-python/urwidtrees/urwidtrees-1.0.3.ebuild
25 deleted file mode 100644
26 index f812fee6d534..000000000000
27 --- a/dev-python/urwidtrees/urwidtrees-1.0.3.ebuild
28 +++ /dev/null
29 @@ -1,36 +0,0 @@
30 -# Copyright 1999-2023 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{9..10} )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Tree widgets for urwid"
40 -HOMEPAGE="https://github.com/pazz/urwidtrees"
41 -SRC_URI="https://github.com/pazz/urwidtrees/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="GPL-3"
44 -SLOT="0"
45 -KEYWORDS="amd64 ~x86"
46 -
47 -RDEPEND=">=dev-python/urwid-1.1.0[${PYTHON_USEDEP}]"
48 -
49 -PATCHES=(
50 - "${FILESDIR}"/${P}-no-mock-dep.patch #770391
51 -)
52 -
53 -distutils_enable_sphinx docs/source
54 -
55 -src_prepare() {
56 - find -name '*.py' -exec \
57 - sed -i -e '1i# -*- coding: utf-8 -*-' {} + || die
58 -
59 - distutils-r1_src_prepare
60 -
61 - local md
62 - for md in *.md; do
63 - mv "${md}" "${md%.md}" || die
64 - done
65 -}