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 B3F6615800F for ; Sat, 14 Jan 2023 22:07:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D04FCE084A; Sat, 14 Jan 2023 22:07:25 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 BB8DFE084A for ; Sat, 14 Jan 2023 22:07:25 +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 033C0340EC8 for ; Sat, 14 Jan 2023 22:07:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3100683C for ; Sat, 14 Jan 2023 22:07:22 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1673734033.2375ca6e94c072fa00b17b0e081be116757dc0f8.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/qmail-autoresponder/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-mail/qmail-autoresponder/qmail-autoresponder-2.0.ebuild X-VCS-Directories: net-mail/qmail-autoresponder/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 2375ca6e94c072fa00b17b0e081be116757dc0f8 X-VCS-Branch: master Date: Sat, 14 Jan 2023 22:07:22 +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: 0047c4b9-0225-4b5b-82cb-a3091fb4e6b3 X-Archives-Hash: d0e00a7217ec9851af39093bb978682b commit: 2375ca6e94c072fa00b17b0e081be116757dc0f8 Author: Marco Scardovi proton me> AuthorDate: Sat Jan 14 21:50:01 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sat Jan 14 22:07:13 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2375ca6e net-mail/qmail-autoresponder: drop 2.0 Signed-off-by: Marco Scardovi proton.me> Closes: https://github.com/gentoo/gentoo/pull/29108 Signed-off-by: Sam James gentoo.org> .../qmail-autoresponder-2.0.ebuild | 45 ---------------------- 1 file changed, 45 deletions(-) diff --git a/net-mail/qmail-autoresponder/qmail-autoresponder-2.0.ebuild b/net-mail/qmail-autoresponder/qmail-autoresponder-2.0.ebuild deleted file mode 100644 index 1fdf92e79e0d..000000000000 --- a/net-mail/qmail-autoresponder/qmail-autoresponder-2.0.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -DESCRIPTION="Rate-limited autoresponder for qmail" -HOMEPAGE="https://untroubled.org/qmail-autoresponder/" -SRC_URI="https://untroubled.org/qmail-autoresponder/archive/${P}.tar.gz" - -SLOT="0" -LICENSE="GPL-2+" -KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc ~x86" -IUSE="mysql" - -DEPEND=">=dev-libs/bglibs-2.04 - mysql? ( dev-db/mysql-connector-c:0= )" -RDEPEND="${DEPEND} - virtual/qmail - mysql? ( virtual/mysql )" - -src_configure() { - echo "$(tc-getCC) ${CFLAGS}" > conf-cc || die - echo "$(tc-getCC) ${LDFLAGS}" > conf-ld || die -} - -src_compile() { - emake qmail-autoresponder - if use mysql; then - emake qmail-autoresponder-mysql - fi -} - -src_install() { - dobin qmail-autoresponder - doman qmail-autoresponder.1 - if use mysql; then - dobin qmail-autoresponder-mysql - doman qmail-autoresponder-mysql.1 - dodoc schema.mysql - fi - - dodoc ANNOUNCEMENT NEWS README TODO ChangeLog procedure.txt -}