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 12118158170 for ; Sat, 20 Jul 2024 15:31:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5BDEC2BC068; Sat, 20 Jul 2024 15:31:19 +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 4115F2BC068 for ; Sat, 20 Jul 2024 15:31:19 +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 307FD335DC5 for ; Sat, 20 Jul 2024 15:31:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 404851B9A for ; Sat, 20 Jul 2024 15:31:16 +0000 (UTC) From: "Hanno Böck" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hanno Böck" Message-ID: <1721489461.c974a68e32eb33287f8c2590f639f4b3b113a464.hanno@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mail-filter/couriersrs/ X-VCS-Repository: repo/gentoo X-VCS-Files: mail-filter/couriersrs/couriersrs-0.1.2-r1.ebuild X-VCS-Directories: mail-filter/couriersrs/ X-VCS-Committer: hanno X-VCS-Committer-Name: Hanno Böck X-VCS-Revision: c974a68e32eb33287f8c2590f639f4b3b113a464 X-VCS-Branch: master Date: Sat, 20 Jul 2024 15:31:16 +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: 27bf7ccb-a0b9-49b5-81af-d6775adba231 X-Archives-Hash: d2ccbc41834669b12a73adf219bd0089 commit: c974a68e32eb33287f8c2590f639f4b3b113a464 Author: Hanno Böck gentoo org> AuthorDate: Sat Jul 20 15:30:57 2024 +0000 Commit: Hanno Böck gentoo org> CommitDate: Sat Jul 20 15:31:01 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c974a68e mail-filter/couriersrs: update EAPI 6 -> 8 Signed-off-by: Hanno Böck gentoo.org> mail-filter/couriersrs/couriersrs-0.1.2-r1.ebuild | 26 +++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/mail-filter/couriersrs/couriersrs-0.1.2-r1.ebuild b/mail-filter/couriersrs/couriersrs-0.1.2-r1.ebuild new file mode 100644 index 000000000000..0bb5b4ca7e71 --- /dev/null +++ b/mail-filter/couriersrs/couriersrs-0.1.2-r1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="SRS (Sender Rewriting Scheme) wrapper for the courier MTA" +HOMEPAGE="https://couriersrs.com/" +SRC_URI="https://github.com/mawis/courier-srs/releases/download/${PV}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="dev-libs/popt + mail-filter/libsrs2" +RDEPEND="${DEPEND}" + +PATCHES=( "${FILESDIR}/${P}-automake-fixes.diff" ) + +src_prepare() { + default + rm m4/*.m4 || die "rm failed!" + AT_M4DIR="m4" eautoreconf +}