summaryrefslogtreecommitdiff
path: root/net-mail/fdm
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2021-07-17 19:04:28 +0100
committerV3n3RiX <venerix@redcorelinux.org>2021-07-17 19:04:28 +0100
commit514d1bbe260df2521fe60f1a3ec87cfcfde1a829 (patch)
tree555c194dbeb0fb2ac4ad3cde7c0f6a80fd330ce2 /net-mail/fdm
parent4df3bf9762850b34cd1ead5c80374d1a0fc3362e (diff)
gentoo resync : 17.07.2021
Diffstat (limited to 'net-mail/fdm')
-rw-r--r--net-mail/fdm/Manifest3
-rw-r--r--net-mail/fdm/fdm-2.0-r1.ebuild2
-rw-r--r--net-mail/fdm/fdm-2.0.ebuild41
3 files changed, 2 insertions, 44 deletions
diff --git a/net-mail/fdm/Manifest b/net-mail/fdm/Manifest
index f9cb5e7ad8d8..a7fafa4915e1 100644
--- a/net-mail/fdm/Manifest
+++ b/net-mail/fdm/Manifest
@@ -1,4 +1,3 @@
DIST fdm-2.0.tar.gz 313596 BLAKE2B 8b323f4a8953a46773a4e5a1214444dc97db4346f50990fcfb4c9d79ae40bbb73b61e3bf41bc95b76e44f6bed7b398cb210d58901823752e92ca7b83189cbc7e SHA512 14e923202d17083ceb3b91b3a442d7e512c37f3d29535f22d8c0c4e1d57c97acc5d5465d643ed0cf437b3945ef777a6e38da3117219c2d54dcec88ecab1e10d9
-EBUILD fdm-2.0-r1.ebuild 905 BLAKE2B 5f14bf6c0de3dcb8e20dbeb5f06759e7d7b328c38f1155c3b819bc055b330314bd0043bbd031f8bf6ad508eaa245cc85a90a2a9af556f759673dab5810269369 SHA512 9b927d9b865f4c4b0b8e417b689a4d1068c129199ecbda7286dad073896418128597750ead7fb819a7c551d0638d7d5ef71d4d30f9ab1ff1f2b8b7f4e8f2d8b8
-EBUILD fdm-2.0.ebuild 781 BLAKE2B cf0dc7932dc397b139ddaaa8250c648a479df2c30d756336010d3cc29b86240dc5dc3d1f2543cd478c585066977fe2d0183c1545ab4aa6c301cc195033d694d2 SHA512 5e6431de86fcd9fe8366ba284a31341b9ce8d696b8ed48fbfcc5945761789cd80b8c2f9a7ce81f3ef3602b213da48f0f041da5efebe0d418116ed5ec25551fa5
+EBUILD fdm-2.0-r1.ebuild 903 BLAKE2B 6ce5748e6f8ea135ef5f1988069260d71c0d788594608a3204c58be47cc21e201ddcc1ff1489462fb727832ce05c24a43fd2b3ce8f383134c6f78aeb718ac95c SHA512 806b6b91db64f8e0e3acbac89a7e502b204fe33b948b73273f9ca151a21dca1096a29b165c3d8e097961990d54fa33946e47ba9a43db1cb1e81a5557026410b7
MISC metadata.xml 295 BLAKE2B 258b3dde768bd93f75108c451644287a850dd28a867429953e65ce650dd9911982f6c47672d6fe75d67f572d28f6d6e3d15393f7e88f9beff7917dea30f53ca4 SHA512 702eb19cdd97836f450877ec4fb366447b32b5eb4c181930c0960b1d5c2638ba1a0c995cb599fa272fd31c80b5ecba93ba4b713d9e913103d5509ba2959f8eb6
diff --git a/net-mail/fdm/fdm-2.0-r1.ebuild b/net-mail/fdm/fdm-2.0-r1.ebuild
index 565b705e22c6..b371fd17ac37 100644
--- a/net-mail/fdm/fdm-2.0-r1.ebuild
+++ b/net-mail/fdm/fdm-2.0-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://github.com/nicm/fdm/releases/download/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
IUSE="examples pcre"
DEPEND="
diff --git a/net-mail/fdm/fdm-2.0.ebuild b/net-mail/fdm/fdm-2.0.ebuild
deleted file mode 100644
index 694efe073883..000000000000
--- a/net-mail/fdm/fdm-2.0.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit user
-
-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}"
-
-DOCS=( CHANGES README TODO MANUAL )
-
-src_configure() {
- econf $(use_enable pcre)
-}
-
-src_install() {
- default
-
- if use examples ; then
- docinto examples
- dodoc examples/*
- fi
-}
-
-pkg_preinst() {
- # This user is hard-coded in fdm.h. If fdm is started as root,
- # it will attempt to drop privileges (to this user).
- enewuser _fdm
-}