Gentoo Archives: gentoo-commits

From: Bernard Cafarelli <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/fetchmail/
Date: Thu, 29 Jul 2021 19:08:32
Message-Id: 1627585707.538fc55735dfc94cd16108b7600b6683f9cad84b.voyageur@gentoo
1 commit: 538fc55735dfc94cd16108b7600b6683f9cad84b
2 Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 29 19:08:15 2021 +0000
4 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 29 19:08:27 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=538fc557
7
8 net-mail/fetchmail: 6.4.20 bump
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org>
12
13 net-mail/fetchmail/Manifest | 1 +
14 net-mail/fetchmail/fetchmail-6.4.20.ebuild | 105 +++++++++++++++++++++++++++++
15 2 files changed, 106 insertions(+)
16
17 diff --git a/net-mail/fetchmail/Manifest b/net-mail/fetchmail/Manifest
18 index f7e70bd4bcf..75539071b65 100644
19 --- a/net-mail/fetchmail/Manifest
20 +++ b/net-mail/fetchmail/Manifest
21 @@ -1,2 +1,3 @@
22 DIST fetchmail-6.4.19.tar.xz 1316672 BLAKE2B 679d2c49698dd368d32439a8276412e3f32c0a0f6f0e7607bc323c0294c987307469451b4b085fe521f2d5dd4869d59b4841762b6a57b3c654b992e9de8ba87c SHA512 b10f0ac5b3b22f8b1d86367990fc96ea5c49dc21c873890c732c254c34503bd6ab9348c5ef88b99ba0f83f065fa9f9aead55de9721b0f296efa14eac0311daaf
23 +DIST fetchmail-6.4.20.tar.xz 1317204 BLAKE2B 85137bdae2fda05cba6e9bee9056bb9a1ef09b96199dc5f991da9aa5c2073f1c8cbf3fae43999a79de338a95e9d28e474035200758b65ffa9fa18b5a905c1279 SHA512 5b170f51a74b6596020282f5cbb34bf0a9ea8c5b089fd8c6c72df6c7742e16bcd5931d62181d56265779f9c3431c4ddf795a03deee09c5552a3aa0601282bd17
24 DIST fetchmail-7.0.0-alpha8.tar.xz 1212256 BLAKE2B 1b123921a696e60b9c42ea30a379bc6cf46bb66dd630f50e1f10ceac5066932da9538295954be451c4665e1186b7281523bbae83fb4cdb7ad2d1b7b408a3a38f SHA512 fdb20b6a4723f718958e8c800d5a996ff0bb8d9ffe485e8f8429f28953a5a691fd8439c29cb4fbbae338d64c1e9cd1f5f9ed6d89261d0ca582f6345cacb696fe
25
26 diff --git a/net-mail/fetchmail/fetchmail-6.4.20.ebuild b/net-mail/fetchmail/fetchmail-6.4.20.ebuild
27 new file mode 100644
28 index 00000000000..9a15f59666e
29 --- /dev/null
30 +++ b/net-mail/fetchmail/fetchmail-6.4.20.ebuild
31 @@ -0,0 +1,105 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +PYTHON_COMPAT=( python3_{8,9} )
38 +PYTHON_REQ_USE="tk"
39 +
40 +inherit autotools python-single-r1 systemd tmpfiles toolchain-funcs
41 +
42 +DESCRIPTION="the legendary remote-mail retrieval and forwarding utility"
43 +HOMEPAGE="https://www.fetchmail.info/"
44 +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
45 +
46 +LICENSE="GPL-2 public-domain"
47 +SLOT="0"
48 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
49 +IUSE="ssl nls kerberos tk socks"
50 +REQUIRED_USE="tk? ( ${PYTHON_REQUIRED_USE} )"
51 +
52 +RDEPEND="acct-user/fetchmail
53 + ssl? (
54 + >=dev-libs/openssl-1.1.1:=
55 + )
56 + kerberos? (
57 + virtual/krb5
58 + >=dev-libs/openssl-1.0.2:=
59 + )
60 + nls? ( virtual/libintl )
61 + !elibc_glibc? ( sys-libs/e2fsprogs-libs )
62 + socks? ( net-proxy/dante )
63 + tk? (
64 + ${PYTHON_DEPS}
65 + $(python_gen_cond_dep '
66 + dev-python/future[${PYTHON_USEDEP}]
67 + ')
68 + )"
69 +DEPEND="${RDEPEND}
70 + app-arch/xz-utils
71 + sys-devel/flex
72 + nls? ( sys-devel/gettext )"
73 +
74 +DOCS="FAQ FEATURES NEWS NOTES README README.NTLM README.SSL* TODO"
75 +HTML_DOCS="*.html"
76 +PATCHES=(
77 + "${FILESDIR}"/${PN}-6.3.26-python-optional.patch
78 +)
79 +S=${WORKDIR}/${P/_/.}
80 +
81 +pkg_setup() {
82 + use tk && python-single-r1_pkg_setup
83 +}
84 +
85 +src_prepare() {
86 + default
87 + # don't compile during src_install
88 + use tk && : > "${S}"/py-compile
89 + eautoreconf
90 +}
91 +
92 +src_configure() {
93 + use tk || export PYTHON=:
94 +
95 + econf \
96 + --enable-RPA \
97 + --enable-NTLM \
98 + --enable-SDPS \
99 + $(use_enable nls) \
100 + $(use_with ssl ssl "${EPREFIX}/usr") \
101 + $(use kerberos && echo "--with-ssl=${EPREFIX}/usr") \
102 + $(use_with kerberos gssapi) \
103 + $(use_with kerberos kerberos5) \
104 + --without-hesiod \
105 + $(use_with socks)
106 +}
107 +
108 +src_compile() {
109 + emake AR="$(tc-getAR)"
110 +}
111 +
112 +src_install() {
113 + default
114 +
115 + newinitd "${FILESDIR}"/fetchmail.initd fetchmail
116 + newconfd "${FILESDIR}"/fetchmail.confd fetchmail
117 +
118 + systemd_dounit "${FILESDIR}"/${PN}.service
119 + systemd_newunit "${FILESDIR}"/${PN}_at.service "${PN}@.service"
120 + dotmpfiles "${FILESDIR}"/${PN}.conf
121 +
122 + docinto contrib
123 + local f
124 + for f in contrib/* ; do
125 + [ -f "${f}" ] && dodoc "${f}"
126 + done
127 +
128 + use tk && python_optimize
129 +}
130 +
131 +pkg_postinst() {
132 + if [[ -z ${REPLACING_VERSIONS} ]]; then
133 + elog "Please see /etc/conf.d/fetchmail if you want to adjust"
134 + elog "the polling delay used by the fetchmail init script."
135 + fi
136 +}