Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/mpop/
Date: Thu, 06 Feb 2020 03:46:09
Message-Id: 1580960744.7feeb1e2515e0d71518474ac9e0f9c04fd230ed4.radhermit@gentoo
1 commit: 7feeb1e2515e0d71518474ac9e0f9c04fd230ed4
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 6 03:43:39 2020 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 6 03:45:44 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7feeb1e2
7
8 net-mail/mpop: version bump to 1.4.7
9
10 Signed-off-by: Tim Harder <radhermit <AT> gentoo.org>
11
12 net-mail/mpop/Manifest | 1 +
13 net-mail/mpop/mpop-1.4.7.ebuild | 51 +++++++++++++++++++++++++++++++++++++++++
14 2 files changed, 52 insertions(+)
15
16 diff --git a/net-mail/mpop/Manifest b/net-mail/mpop/Manifest
17 index 401363f503b..0b2784b3918 100644
18 --- a/net-mail/mpop/Manifest
19 +++ b/net-mail/mpop/Manifest
20 @@ -1 +1,2 @@
21 DIST mpop-1.4.4.tar.xz 319372 BLAKE2B acf5bdb62479126ae212bb008878872d16efba1eb9a077bf4697ba22ff512977fcd5affad090bc952fb01cf07a607a4dce91b873128c43f087c34dca6d6bae81 SHA512 1ed89108d35d7bbd6bcbd6de956f51cfcfaefd808f6aa7135b168d789f8cbe7070be9db676d1222dce5b6fe8b6692616d6b7adec9c23df11ac3de112897924da
22 +DIST mpop-1.4.7.tar.xz 322488 BLAKE2B ea73e84b5ed3b5aad7ef91ceb510187c3f2d42976329a6a53511329a84713edc056ca6db35b1de2c9bff8b417e2710e598c472e78acbdc499dd73b24c46dfb47 SHA512 ce0ac899fd2af1d50ef221c88282c12263c5862b9ff1f6341a8551c3fe6b69272772599a2040a0f553a776245514c55b8102ca8cf291b411e5127a3f39897832
23
24 diff --git a/net-mail/mpop/mpop-1.4.7.ebuild b/net-mail/mpop/mpop-1.4.7.ebuild
25 new file mode 100644
26 index 00000000000..ee0c8845eb5
27 --- /dev/null
28 +++ b/net-mail/mpop/mpop-1.4.7.ebuild
29 @@ -0,0 +1,51 @@
30 +# Copyright 1999-2020 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +DESCRIPTION="A small, fast, and portable POP3 client"
36 +HOMEPAGE="https://marlam.de/mpop/"
37 +SRC_URI="https://marlam.de/mpop/releases/${P}.tar.xz"
38 +
39 +LICENSE="GPL-3"
40 +SLOT="0"
41 +KEYWORDS="~amd64 ~arm ~x86"
42 +IUSE="gnutls idn libressl gnome-keyring nls sasl ssl vim-syntax"
43 +
44 +RDEPEND="
45 + idn? ( net-dns/libidn2 )
46 + gnome-keyring? ( app-crypt/libsecret )
47 + nls? ( virtual/libintl )
48 + sasl? ( virtual/gsasl )
49 + ssl? (
50 + gnutls? ( net-libs/gnutls:0=[idn?] )
51 + !gnutls? (
52 + !libressl? ( dev-libs/openssl:0= )
53 + libressl? ( dev-libs/libressl:0= )
54 + )
55 + )"
56 +DEPEND="${RDEPEND}
57 + nls? ( sys-devel/gettext )
58 + virtual/pkgconfig"
59 +
60 +REQUIRED_USE="gnutls? ( ssl )"
61 +
62 +DOCS="AUTHORS ChangeLog NEWS NOTES README THANKS"
63 +
64 +src_configure() {
65 + econf \
66 + $(use_enable nls) \
67 + $(use_with ssl tls $(usex gnutls "gnutls" "openssl")) \
68 + $(use_with sasl libgsasl) \
69 + $(use_with idn libidn) \
70 + $(use_with gnome-keyring libsecret)
71 +}
72 +
73 +src_install() {
74 + default
75 +
76 + if use vim-syntax ; then
77 + insinto /usr/share/vim/vimfiles/syntax
78 + doins scripts/vim/mpop.vim
79 + fi
80 +}