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 8C7B0158021 for ; Sun, 18 Dec 2022 04:20:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 523D8E0898; Sun, 18 Dec 2022 04:20:26 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 378DCE0898 for ; Sun, 18 Dec 2022 04:20:26 +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 33395340C6F for ; Sun, 18 Dec 2022 04:20:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0706F771 for ; Sun, 18 Dec 2022 04:20:23 +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: <1671336083.9185fe1f4da39f9c847e8f39fcb54593b9e5f3fa.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/fdm/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-mail/fdm/Manifest net-mail/fdm/fdm-2.1.ebuild X-VCS-Directories: net-mail/fdm/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 9185fe1f4da39f9c847e8f39fcb54593b9e5f3fa X-VCS-Branch: master Date: Sun, 18 Dec 2022 04:20:23 +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: 63e29cee-79b1-4b0e-85d7-6a2bec5cb3b5 X-Archives-Hash: b04d4cc09341c81678ef6c8d1b531764 commit: 9185fe1f4da39f9c847e8f39fcb54593b9e5f3fa Author: Sam James gentoo org> AuthorDate: Sun Dec 18 03:19:40 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Dec 18 04:01:23 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9185fe1f net-mail/fdm: add 2.1 Signed-off-by: Sam James gentoo.org> net-mail/fdm/Manifest | 1 + net-mail/fdm/fdm-2.1.ebuild | 46 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+) diff --git a/net-mail/fdm/Manifest b/net-mail/fdm/Manifest index 1a6c5cc60af1..43e26b5d3da1 100644 --- a/net-mail/fdm/Manifest +++ b/net-mail/fdm/Manifest @@ -1 +1,2 @@ DIST fdm-2.0.tar.gz 313596 BLAKE2B 8b323f4a8953a46773a4e5a1214444dc97db4346f50990fcfb4c9d79ae40bbb73b61e3bf41bc95b76e44f6bed7b398cb210d58901823752e92ca7b83189cbc7e SHA512 14e923202d17083ceb3b91b3a442d7e512c37f3d29535f22d8c0c4e1d57c97acc5d5465d643ed0cf437b3945ef777a6e38da3117219c2d54dcec88ecab1e10d9 +DIST fdm-2.1.tar.gz 318803 BLAKE2B 2bb693177c69665d2354c382ab663a3283c5edae2cdf6f3bf2fe4133309de9d43e0e8ad3830eeee4eb002fe202eb20f982cdc892fb0b0d1698b13aa79f22be0a SHA512 6a864048e1f25eedbb6af86451b258678b91e3c225b3b065a1aeb043f125405dfa109a0fbd77363394e14050053c7d81093d5b9d6a2dd155fb00dc98455028b4 diff --git a/net-mail/fdm/fdm-2.1.ebuild b/net-mail/fdm/fdm-2.1.ebuild new file mode 100644 index 000000000000..bf1b62354bb5 --- /dev/null +++ b/net-mail/fdm/fdm-2.1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Fetch, filter and deliver mail" +HOMEPAGE="https://github.com/nicm/fdm" +SRC_URI="https://github.com/nicm/fdm/releases/download/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="examples pcre" + +DEPEND=" + dev-libs/openssl:0= + sys-libs/tdb + pcre? ( dev-libs/libpcre ) +" +RDEPEND=" + ${DEPEND} + acct-group/fdm + acct-user/fdm +" + +DOCS=( CHANGES README TODO MANUAL ) + +src_prepare() { + default + + # Change user '_fdm' to 'fdm' + sed -e 's/_fdm/fdm/g' -i fdm.h || die +} + +src_configure() { + econf $(use_enable pcre) +} + +src_install() { + default + + if use examples ; then + docinto examples + dodoc examples/* + fi +}