From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6043015800F for ; Thu, 9 Feb 2023 13:34:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5F552E085B; Thu, 9 Feb 2023 13:34:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 450A8E0864 for ; Thu, 9 Feb 2023 13:34:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7A2EE335DBF for ; Thu, 9 Feb 2023 13:34:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CC5E58AD for ; Thu, 9 Feb 2023 13:33:59 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1675949473.cb6f659563b4948d47bd7520020d739d74bd0a44.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/linkchecker/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/linkchecker/linkchecker-9999.ebuild X-VCS-Directories: net-analyzer/linkchecker/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: cb6f659563b4948d47bd7520020d739d74bd0a44 X-VCS-Branch: master Date: Thu, 9 Feb 2023 13:33:59 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f766a110-d3f4-4308-9c8c-7678cdea4543 X-Archives-Hash: 2330b6f3bb81096689634b9943dca683 commit: cb6f659563b4948d47bd7520020d739d74bd0a44 Author: Chris Mayo gmail com> AuthorDate: Tue Feb 7 19:24:03 2023 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Thu Feb 9 13:31:13 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb6f6595 net-analyzer/linkchecker: drop live Signed-off-by: Chris Mayo gmail.com> Signed-off-by: Joonas Niilola gentoo.org> net-analyzer/linkchecker/linkchecker-9999.ebuild | 58 ------------------------ 1 file changed, 58 deletions(-) diff --git a/net-analyzer/linkchecker/linkchecker-9999.ebuild b/net-analyzer/linkchecker/linkchecker-9999.ebuild deleted file mode 100644 index c473050a7913..000000000000 --- a/net-analyzer/linkchecker/linkchecker-9999.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{9..10} ) -PYTHON_REQ_USE="sqlite?" - -inherit bash-completion-r1 distutils-r1 optfeature - -DESCRIPTION="Check websites for broken links" -HOMEPAGE="https://github.com/linkcheck/linkchecker" - -if [[ "${PV}" == "9999" ]]; then - EGIT_REPO_URI="https://github.com/linkcheck/linkchecker.git" - inherit git-r3 -else - SRC_URI="" - KEYWORDS="~amd64 ~x86" -fi - -LICENSE="GPL-2" -SLOT="0" -IUSE="sqlite" -# requires libs not present in portage yet -RESTRICT="test" - -RDEPEND=" - dev-python/beautifulsoup4[${PYTHON_USEDEP}] - dev-python/dnspython[${PYTHON_USEDEP}] - dev-python/pyxdg[${PYTHON_USEDEP}] - dev-python/requests[${PYTHON_USEDEP}] - dev-python/setuptools_scm[${PYTHON_USEDEP}] -" - -PATCHES=( - "${FILESDIR}/${PN}-9.3-bash-completion.patch" -) - -DOCS=( - doc/changelog.txt - doc/upgrading.txt -) - -python_prepare_all() { - distutils-r1_python_prepare_all -} - -python_install_all() { - distutils-r1_python_install_all - newbashcomp config/linkchecker-completion ${PN} -} - -pkg_postinst() { - optfeature "bash-completion support" dev-python/argcomplete[${PYTHON_USEDEP}] - optfeature "Virus scanning" app-antivirus/clamav - optfeature "GNOME proxy settings support" dev-python/pygobject[${PYTHON_USEDEP}] -}