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 3A69815ACFD for ; Mon, 1 May 2023 12:34:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4A621E081E; Mon, 1 May 2023 12:34:21 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 31099E081E for ; Mon, 1 May 2023 12:34:21 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B9423340F8E for ; Mon, 1 May 2023 12:34:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0F81CA49 for ; Mon, 1 May 2023 12:34:18 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1682944233.0cab73bb84a9ea7aef07c8c9f4657fe5555d5cf9.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-antivirus/fangfrisch/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-antivirus/fangfrisch/fangfrisch-1.5.0.ebuild X-VCS-Directories: app-antivirus/fangfrisch/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 0cab73bb84a9ea7aef07c8c9f4657fe5555d5cf9 X-VCS-Branch: master Date: Mon, 1 May 2023 12:34:18 +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: 6a4cec2c-9ef9-4c59-ab90-ca4eb0381d45 X-Archives-Hash: 4bd0f444daed0bee11e8d4ad2fa9fed7 commit: 0cab73bb84a9ea7aef07c8c9f4657fe5555d5cf9 Author: Michał Górny gentoo org> AuthorDate: Mon May 1 12:30:33 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon May 1 12:30:33 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cab73bb app-antivirus/fangfrisch: Remove old Signed-off-by: Michał Górny gentoo.org> app-antivirus/fangfrisch/fangfrisch-1.5.0.ebuild | 68 ------------------------ 1 file changed, 68 deletions(-) diff --git a/app-antivirus/fangfrisch/fangfrisch-1.5.0.ebuild b/app-antivirus/fangfrisch/fangfrisch-1.5.0.ebuild deleted file mode 100644 index f3d8cbef31d8..000000000000 --- a/app-antivirus/fangfrisch/fangfrisch-1.5.0.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_9 ) - -inherit distutils-r1 readme.gentoo-r1 - -DESCRIPTION="Update and verify unofficial Clam Anti-Virus signatures" -HOMEPAGE="https://github.com/rseichter/fangfrisch https://pypi.org/project/fangfrisch/" -SRC_URI="https://github.com/rseichter/fangfrisch/archive/${PV}.tar.gz -> ${P}.tar.gz" - -MY_CONF="/etc/${PN}.conf" -MY_DBDIR="/var/lib/${PN}" -DISABLE_AUTOFORMATTING=1 -DOC_CONTENTS="See https://rseichter.github.io/fangfrisch/ for the official -documentation. - -### Fresh installations: - -Modify ${MY_CONF} according to your preferences. -Assuming you place the database into ${MY_DBDIR} -(recommended), execute the following commands in a root shell: - -mkdir -m 0770 ${MY_DBDIR} -chgrp clamav ${MY_DBDIR} -sudo -u clamav -- fangfrisch -c ${MY_CONF} initdb - -You can now enable /etc/cron.d/${PN} for periodic updates. - -### Alternative: Updating from release 1.0.1: - -Either create a fresh database or manually delete all existing -database tables, then run the initdb command as shown above." - -LICENSE="GPL-3+" -SLOT="0" -KEYWORDS="amd64 x86" - -DEPEND=">=dev-python/requests-2.22.0[${PYTHON_USEDEP}] - >=dev-python/sqlalchemy-1.3.11[${PYTHON_USEDEP}]" -RDEPEND="${DEPEND}" - -python_prepare_all() { - sed -i -e '/SQLAlchemy/d' setup.py || die - # Due to the nature of Fangfrisch, most tests require network - # connectivity. Upstream CI reports show that the tests are - # successful, so instead of a pick-and-choose approach, the - # complete tests directory is removed in this ebuild. - if [ -d tests ]; then - rm -r tests || die - fi - distutils-r1_python_prepare_all -} - -python_install_all() { - insinto /etc - doins "${FILESDIR}/${PN}.conf" - insinto /etc/cron.d - newins "${FILESDIR}/${PN}.cron" ${PN} - distutils-r1_python_install_all - readme.gentoo_create_doc -} - -pkg_postinst() { - FORCE_PRINT_ELOG=1 readme.gentoo_print_elog -}