Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/linkchecker/
Date: Fri, 24 Dec 2021 06:47:57
Message-Id: 1640328424.7c47becc01af9a72463f25c3344a4f14ad64fe75.sam@gentoo
1 commit: 7c47becc01af9a72463f25c3344a4f14ad64fe75
2 Author: Tomáš Mózes <hydrapolic <AT> gmail <DOT> com>
3 AuthorDate: Fri Dec 24 06:36:16 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 24 06:47:04 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c47becc
7
8 net-analyzer/linkchecker: drop old
9
10 Signed-off-by: Tomáš Mózes <hydrapolic <AT> gmail.com>
11 Closes: https://github.com/gentoo/gentoo/pull/23395
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 net-analyzer/linkchecker/Manifest | 1 -
15 .../linkchecker-10.0.0_pre20200729.ebuild | 60 ----------------------
16 2 files changed, 61 deletions(-)
17
18 diff --git a/net-analyzer/linkchecker/Manifest b/net-analyzer/linkchecker/Manifest
19 index 9e0c64f510b3..1f113113f8bf 100644
20 --- a/net-analyzer/linkchecker/Manifest
21 +++ b/net-analyzer/linkchecker/Manifest
22 @@ -1,3 +1,2 @@
23 -DIST linkchecker-10.0.0_pre20200729.tar.gz 401694 BLAKE2B f1a0918c30b292e569fd3168eee152e63ba7266f0ef848a55601e0205d8b0521cb653db77c8dc7b5d1140b493c95e50d76acba44e961586159f2b691e6898353 SHA512 35c49ca5de06688667e39f4eb0d8a048e565fe460a4aff125a484e3966c62cbea95fd95154cb2b544c0f4987f66012793726cf890d604321ed83970654a318f6
24 DIST linkchecker-10.0.1.tar.gz 512649 BLAKE2B f0373da6c1b4c18394500f32936065dca8b4a92532f5da6f15a4470c2e458df147009599939a41fc36f5ae4941c0fdd97aa9bf77a7237544f3df3bf5772ed884 SHA512 2d57092591187f62f7ae685b867ab02d08108ce3a687ea7da444e57cbe5e9f74220747beee322ccfec0ce4319c95cc37ba0908ba8fae6a8d88bdb0928d099099
25 DIST linkchecker-10.1.0.tar.gz 521214 BLAKE2B 767c1176751a2011e0e175eb7c9e7b3704bda0d469bad7b38ac1481db62b470fbb69a62bf11316699e15fd1ca822f801a1237c798754353aba5c559ccd9d3274 SHA512 a6ba57ef9c617ece2c53d54cf460571561bfa60831e038e31e520e7fbee789566616b6e5b0b98529376510ef4e228bebdb6e6e011fb986b74d837ebc69323085
26
27 diff --git a/net-analyzer/linkchecker/linkchecker-10.0.0_pre20200729.ebuild b/net-analyzer/linkchecker/linkchecker-10.0.0_pre20200729.ebuild
28 deleted file mode 100644
29 index f087ac9b1512..000000000000
30 --- a/net-analyzer/linkchecker/linkchecker-10.0.0_pre20200729.ebuild
31 +++ /dev/null
32 @@ -1,60 +0,0 @@
33 -# Copyright 1999-2021 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=7
37 -
38 -PYTHON_COMPAT=( python3_{7..9} )
39 -PYTHON_REQ_USE="sqlite?"
40 -
41 -inherit bash-completion-r1 distutils-r1 optfeature
42 -
43 -DESCRIPTION="Check websites for broken links"
44 -HOMEPAGE="https://github.com/linkcheck/linkchecker"
45 -
46 -if [[ "${PV}" == "9999" ]]; then
47 - EGIT_REPO_URI="https://github.com/linkcheck/linkchecker.git"
48 - inherit git-r3
49 -else
50 - GIT_COMMIT="a977e4d7129450ba9fda8389724c80c1bde66883"
51 - SRC_URI="https://github.com/linkchecker/linkchecker/archive/${GIT_COMMIT}.tar.gz -> ${P}.tar.gz"
52 - S="${WORKDIR}/${PN}-${GIT_COMMIT}"
53 - KEYWORDS="amd64 x86"
54 -fi
55 -
56 -LICENSE="GPL-2"
57 -SLOT="0"
58 -IUSE="sqlite"
59 -# requires py2 only libs
60 -RESTRICT="test"
61 -
62 -RDEPEND="
63 - dev-python/beautifulsoup4[${PYTHON_USEDEP}]
64 - dev-python/dnspython[${PYTHON_USEDEP}]
65 - dev-python/pyxdg[${PYTHON_USEDEP}]
66 - dev-python/requests[${PYTHON_USEDEP}]
67 -"
68 -
69 -python_prepare_all() {
70 - local PATCHES=(
71 - "${FILESDIR}/${PN}-9.3-bash-completion.patch"
72 - )
73 -
74 - distutils-r1_python_prepare_all
75 -}
76 -
77 -python_install_all() {
78 - local DOCS=(
79 - doc/changelog.txt
80 - doc/upgrading.txt
81 - )
82 - distutils-r1_python_install_all
83 -
84 - newbashcomp config/linkchecker-completion ${PN}
85 -}
86 -
87 -pkg_postinst() {
88 - optfeature "bash-completion support" dev-python/argcomplete[${PYTHON_USEDEP}]
89 - optfeature "Virus scanning" app-antivirus/clamav
90 - optfeature "Geo IP support" dev-python/geoip-python[${PYTHON_USEDEP}]
91 - optfeature "GNOME proxy settings support" dev-python/pygobject[${PYTHON_USEDEP}]
92 -}