From: "Pacho Ramos" <pacho@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/fdm/
Date: Sat, 16 Feb 2019 09:28:55 +0000 (UTC) [thread overview]
Message-ID: <1550309321.015928f27ce15b08e2d15c30ab5a91eeb1a0bd34.pacho@gentoo> (raw)
commit: 015928f27ce15b08e2d15c30ab5a91eeb1a0bd34
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 16 09:23:11 2019 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sat Feb 16 09:28:41 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=015928f2
net-mail/fdm: Drop old
Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
net-mail/fdm/Manifest | 2 --
net-mail/fdm/fdm-1.7.ebuild | 47 --------------------------------------------
net-mail/fdm/fdm-1.8.ebuild | 48 ---------------------------------------------
3 files changed, 97 deletions(-)
diff --git a/net-mail/fdm/Manifest b/net-mail/fdm/Manifest
index 9b89e0f7310..fcf3fa2af8a 100644
--- a/net-mail/fdm/Manifest
+++ b/net-mail/fdm/Manifest
@@ -1,3 +1 @@
-DIST fdm-1.7.tar.gz 199808 BLAKE2B 92abf639c5ced219ddc70842820493e57914e23298c1b07bf8abc3c343b0dd58c71694afb34fad4bacbbf34109b8651511c75adccff81ee3caa1c1a298def866 SHA512 d438c96b1d3bdf08d14cfbb3b78ab5180e6bbc32121b7dfdd47ac14a4f8a19d1309f7742f78cc9db2d68b64b3422ec96f8f729931168d2fc411c36d0cc3e9386
-DIST fdm-1.8.tar.gz 193220 BLAKE2B bea041cc1cc8937831525f622e6f4ef70c8b11e5a4ad0f89cf1c0503cb4bcfb882f1d3a22abfd93c6ced524dcb2984c381728297454d2a5a7aed39f87d8eac35 SHA512 eaf868628c7c98385804ebdcf1756547ee487109fe02ca3d8177eb25ebdc4c61e6d4ad820c52fd9e39ac4d2f93408aa6787446e8330a87a6cb75da2be0b5f337
DIST fdm-1.9.tar.gz 299916 BLAKE2B 0c9bb9514a4d36fb1168be73fe745aa136cea75e0ebde28ab181be7d4b7e093c0bec775222e8a333e14baa90871739fa095a89bf8d1f16a86dee03b6d01021aa SHA512 e7e5c8aae8be3e82ff6015d2d87fd9d0dad4fe24796b4f30d6874f761e2df6900c8940d39de28bb2db6ee3ea3faf494c57149037657d986a3b54db3a6a601ca7
diff --git a/net-mail/fdm/fdm-1.7.ebuild b/net-mail/fdm/fdm-1.7.ebuild
deleted file mode 100644
index 0c5d011d77b..00000000000
--- a/net-mail/fdm/fdm-1.7.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils multilib toolchain-funcs user
-
-DESCRIPTION="fetch, filter and deliver mail"
-HOMEPAGE="http://fdm.sourceforge.net"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="courierauth examples pcre"
-
-DEPEND="dev-libs/openssl:0
- sys-libs/tdb
- courierauth? ( net-libs/courier-authlib )
- pcre? ( dev-libs/libpcre )"
-RDEPEND="${DEPEND}"
-
-pkg_setup() {
- enewuser _fdm
-}
-
-src_prepare() {
- rm Makefile || die
- sed -e '/^FDEBUG=/s:=.*:=:' \
- -e "/ifdef COURIER/aLIBS+=-L/usr/$(get_libdir)/courier-authlib" \
- -i GNUmakefile || die
-}
-
-src_compile() {
- emake CC="$(tc-getCC)" \
- COURIER=$(use courierauth && echo 1) \
- PCRE=$(use pcre && echo 1)
-}
-
-src_install() {
- emake DESTDIR="${D}" PREFIX=/usr MANDIR=/usr/share/man install
- dodoc CHANGES README TODO
- if use examples ; then
- docinto examples
- dodoc examples/*
- fi
-}
diff --git a/net-mail/fdm/fdm-1.8.ebuild b/net-mail/fdm/fdm-1.8.ebuild
deleted file mode 100644
index f3143004b7c..00000000000
--- a/net-mail/fdm/fdm-1.8.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils multilib toolchain-funcs user
-
-DESCRIPTION="fetch, filter and deliver mail"
-HOMEPAGE="https://github.com/nicm/fdm"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="courierauth examples pcre"
-
-DEPEND="dev-libs/openssl:0
- sys-libs/tdb
- courierauth? ( net-libs/courier-authlib )
- pcre? ( dev-libs/libpcre )"
-RDEPEND="${DEPEND}"
-
-pkg_setup() {
- enewuser _fdm
-}
-
-src_prepare() {
- rm Makefile || die
- sed -e '/^FDEBUG=/s:=.*:=:' \
- -e "/ifdef COURIER/aLIBS+=-L${EROOT}usr/$(get_libdir)/courier-authlib" \
- -e '/CPPFLAGS/s: -I/usr/local/include : :' \
- -i GNUmakefile || die
-}
-
-src_compile() {
- emake CC="$(tc-getCC)" \
- COURIER=$(use courierauth && echo 1) \
- PCRE=$(use pcre && echo 1)
-}
-
-src_install() {
- emake DESTDIR="${D}" PREFIX=/usr MANDIR=/usr/share/man install
- dodoc CHANGES README TODO MANUAL
- if use examples ; then
- docinto examples
- dodoc examples/*
- fi
-}
next reply other threads:[~2019-02-16 9:29 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-02-16 9:28 Pacho Ramos [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-01-10 13:26 [gentoo-commits] repo/gentoo:master commit in: net-mail/fdm/ Petr Vaněk
2025-01-10 11:48 Petr Vaněk
2024-11-26 7:03 Sam James
2024-11-23 15:05 Michał Górny
2024-11-23 14:32 Michał Górny
2023-03-18 21:54 Sam James
2023-03-17 17:26 Sam James
2023-03-17 17:00 Sam James
2023-01-10 3:14 Sam James
2022-12-18 4:20 Sam James
2021-10-04 0:47 Sam James
2021-07-15 22:12 Conrad Kostecki
2021-07-15 21:39 Sam James
2021-07-15 21:33 Sam James
2021-05-02 14:51 Mikle Kolyada
2021-04-11 20:52 Conrad Kostecki
2020-11-29 9:56 David Seifert
2020-11-29 8:15 Agostino Sarubbo
2020-11-27 16:49 Thomas Deutschmann
2020-09-19 20:05 Stephen Klimaszewski
2019-06-25 14:31 Michael Orlitzky
2019-02-16 9:28 Pacho Ramos
2016-05-30 19:36 Michael Weber
2015-08-27 8:04 Tim Harder
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1550309321.015928f27ce15b08e2d15c30ab5a91eeb1a0bd34.pacho@gentoo \
--to=pacho@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox