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/pyspelling/
Date: Fri, 19 Aug 2022 09:27:41
Message-Id: 1660901251.9937cfa9112ac16709e91e712886f4f6f96cc6d8.mgorny@gentoo
1 commit: 9937cfa9112ac16709e91e712886f4f6f96cc6d8
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 19 09:01:49 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 19 09:27:31 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9937cfa9
7
8 dev-python/pyspelling: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pyspelling/Manifest | 1 -
13 dev-python/pyspelling/pyspelling-2.7.3.ebuild | 53 ---------------------------
14 2 files changed, 54 deletions(-)
15
16 diff --git a/dev-python/pyspelling/Manifest b/dev-python/pyspelling/Manifest
17 index 1d761802f7da..762afccb68e7 100644
18 --- a/dev-python/pyspelling/Manifest
19 +++ b/dev-python/pyspelling/Manifest
20 @@ -1,2 +1 @@
21 -DIST pyspelling-2.7.3.tar.gz 151244 BLAKE2B bdfb40c6f39dc5adcc31691ef75b2582e78e8d0ed800ef0e263f8f98987ce3911650cb08085315c617c185e6ef183a11508fde4608349d0dad435b9f4fe1da98 SHA512 6903b620993933e80dfef320c0218c6372ee37f1db958b489d273aca24dd91bcc86fd12967848b8e31c2d7d458fb5fbfb521f41328c5955a1914f7d552ae7341
22 DIST pyspelling-2.8.1.gh.tar.gz 150813 BLAKE2B 53df7ae453180007af08fe3928274f9a468f7d24cc5f00b85efbda0febe9532f7b57805b54c2e28c3580e34de383a249bb293b1f89905d2b09c1a70853d12fd3 SHA512 24e9b03b3f5c911e2cd32a5594813fad5fce3fe5cc8c570fdaf4a025aebe8d02d2b77542d6e940cb03350df3203f1a9961a3f446fd60d66250a3cff7c54534de
23
24 diff --git a/dev-python/pyspelling/pyspelling-2.7.3.ebuild b/dev-python/pyspelling/pyspelling-2.7.3.ebuild
25 deleted file mode 100644
26 index baecf3bf8bfd..000000000000
27 --- a/dev-python/pyspelling/pyspelling-2.7.3.ebuild
28 +++ /dev/null
29 @@ -1,53 +0,0 @@
30 -# Copyright 1999-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -PYTHON_COMPAT=( python3_{8..11} )
36 -DISTUTILS_USE_PEP517=setuptools
37 -
38 -DOCS_BUILDER="mkdocs"
39 -DOCS_DEPEND="
40 - ~dev-python/mkdocs_pymdownx_material_extras-1.1.3
41 - dev-python/mkdocs-git-revision-date-localized-plugin
42 - dev-python/mkdocs-minify-plugin
43 -"
44 -
45 -inherit distutils-r1 docs
46 -
47 -DESCRIPTION="Spell checker automation tool"
48 -HOMEPAGE="https://github.com/facelessuser/pyspelling"
49 -SRC_URI="https://github.com/facelessuser/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
50 -
51 -LICENSE="MIT"
52 -SLOT="0"
53 -KEYWORDS="amd64 ~riscv x86"
54 -
55 -RDEPEND="
56 - || ( app-text/aspell app-text/hunspell )
57 -
58 - dev-python/beautifulsoup4[${PYTHON_USEDEP}]
59 - dev-python/html5lib[${PYTHON_USEDEP}]
60 - dev-python/lxml[${PYTHON_USEDEP}]
61 - dev-python/markdown[${PYTHON_USEDEP}]
62 - dev-python/pyyaml[${PYTHON_USEDEP}]
63 - >=dev-python/soupsieve-1.8[${PYTHON_USEDEP}]
64 - >=dev-python/wcmatch-6.0.3[${PYTHON_USEDEP}]
65 -"
66 -
67 -BDEPEND="test? ( dev-vcs/git )"
68 -
69 -distutils_enable_tests pytest
70 -
71 -python_prepare_all() {
72 - # mkdocs-git-revision-date-localized-plugin needs git repo
73 - if use doc; then
74 - git init || die
75 - git config --global user.email "you@×××××××.com" || die
76 - git config --global user.name "Your Name" || die
77 - git add . || die
78 - git commit -m 'init' || die
79 - fi
80 -
81 - distutils-r1_python_prepare_all
82 -}