public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/isync/
Date: Mon,  7 Jun 2021 16:04:59 +0000 (UTC)	[thread overview]
Message-ID: <1623050035.953ae581d25b29bc8fbf8f7c8c1139f67a74ceef.sam@gentoo> (raw)

commit:     953ae581d25b29bc8fbf8f7c8c1139f67a74ceef
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jun  7 06:56:05 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jun  7 07:13:55 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=953ae581

net-mail/isync: add 1.3.6

Bug: https://bugs.gentoo.org/794772
Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-mail/isync/Manifest           |  1 +
 net-mail/isync/isync-1.3.6.ebuild | 42 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 43 insertions(+)

diff --git a/net-mail/isync/Manifest b/net-mail/isync/Manifest
index 0455eec5cf6..ef083329cb8 100644
--- a/net-mail/isync/Manifest
+++ b/net-mail/isync/Manifest
@@ -1,4 +1,5 @@
 DIST isync-1.3.1.tar.gz 311868 BLAKE2B e7eae36407873b8f9f3c4e9a827e719aefa608994f5a48a93779207148123c7b796f6aa8ad8157f5eb9e863c5845889ad595d23570f12a0520fe997f8282158c SHA512 59d702d41d4a4e72f03cb282b414d0bb859593171763e845bc24d116a74f807a79e5be61f1dd1f59a9ece492322bceac156b08958a246cbfbe7f230fab4cdda2
 DIST isync-1.3.3.tar.gz 315912 BLAKE2B 64a6130fd2e0b6bcb4c57e7e353c1227f65ec84b557419aaff617f9cde186e1e8f906a9448e4642bd1f6db245a769923cb8ec779ac077225c47a16160d3a8b10 SHA512 915824272606f75da8c05fb75872bc5cf528fa555024245094d14a25b190f1b813dd5723e9b87f27f3fbb14b100311ee487bc409d074a68d67e9ab675b12c7a1
 DIST isync-1.3.5.tar.gz 316671 BLAKE2B 3018236aef71e7eb9dcb3c0ce4dee208a6b53060cf5354fe142095f227c29aecba34d9a41db24e53b6bcf9e8bb5c9be163178bed30c41117fd459284f18292af SHA512 d3e12ca461a0cddcb7a59665d0b08c5bc690cc187bca68d0bebab2d406382a3c28d015ed6a37bdb13f3dc6295b8381c3e5a6e1a3ac0e7336d1885eadbb0ec451
+DIST isync-1.3.6.tar.gz 317174 BLAKE2B 3a230cd4bfac061ceb3325732c336ccd808a662989d2fc81459b4b27fce927a62e335200ef233f63d28b80f6ba79b1e5e102fda8ec68c9cd8e368f8ddd7188a0 SHA512 16e859361b27f00e1ef9eda0a2d06edf271b2643107a1f90c90713c34ffe9b542cdedb31218db72db633e12cf39a6aa2ac509333647c79a1825faac8ad4ead38
 DIST isync-1.4.1.tar.gz 336281 BLAKE2B cb15a8c0dcadbc3db072fcb10a6f0d83ccef0de1c49a9d30a7c189f616c965d8e759a72c4e35927e20e2d7995f9430bffa22e535684a7b7290516d8bc78bf071 SHA512 87d1101d3e39680c1d101653a6f48859d539f0d37d65db8d90566fae22f2163c76907d561b2a487d3ed2ab459c5703fa8e077cc3e1f156a895d7ef9078af91e8

diff --git a/net-mail/isync/isync-1.3.6.ebuild b/net-mail/isync/isync-1.3.6.ebuild
new file mode 100644
index 00000000000..9525e6613cd
--- /dev/null
+++ b/net-mail/isync/isync-1.3.6.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="MailDir mailbox synchronizer"
+HOMEPAGE="http://isync.sourceforge.net/"
+LICENSE="GPL-2"
+SLOT="0"
+
+if [[ ${PV} == 9999 ]]; then
+	EGIT_REPO_URI="https://git.code.sf.net/p/${PN}/${PN}"
+	inherit git-r3 autotools
+else
+	SRC_URI="mirror://sourceforge/${PN}/${PN}/${PV}/${P}.tar.gz"
+	KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+fi
+
+IUSE="sasl ssl zlib"
+
+RDEPEND="
+	>=sys-libs/db-4.2:=
+	sasl?	( dev-libs/cyrus-sasl )
+	ssl?	( >=dev-libs/openssl-0.9.6:0= )
+	zlib?	( sys-libs/zlib:0= )
+"
+DEPEND=${RDEPEND}
+BDEPEND="
+	dev-lang/perl
+"
+
+src_prepare() {
+	default
+	[[ ${PV} == 9999 ]] && eautoreconf
+}
+
+src_configure() {
+	econf \
+		$(use_with ssl) \
+		$(use_with sasl) \
+		$(use_with zlib)
+}


             reply	other threads:[~2021-06-07 16:05 UTC|newest]

Thread overview: 56+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-07 16:04 Sam James [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-10-17 22:58 [gentoo-commits] repo/gentoo:master commit in: net-mail/isync/ Yixun Lan
2024-10-17 22:58 Yixun Lan
2023-06-27 19:56 Sam James
2023-06-27 19:54 Sam James
2023-06-27 19:54 Sam James
2023-06-27 19:54 Sam James
2023-04-07 12:48 Andreas K. Hüttel
2022-11-15  6:39 Sam James
2022-03-03 15:14 Yixun Lan
2022-02-28 23:17 Andreas K. Hüttel
2021-12-08  9:18 Sam James
2021-12-08  9:18 Sam James
2021-12-08  6:17 Sam James
2021-12-07  6:22 Agostino Sarubbo
2021-12-06 18:38 Sam James
2021-12-06 18:38 Sam James
2021-07-24  6:19 Georgy Yakovlev
2021-07-24  6:03 Georgy Yakovlev
2021-06-08  6:58 Agostino Sarubbo
2021-06-07 23:10 Sam James
2021-06-07 16:04 Sam James
2021-05-27 16:58 Georgy Yakovlev
2021-05-27 16:58 Georgy Yakovlev
2021-05-27 16:58 Georgy Yakovlev
2021-05-02 14:51 Mikle Kolyada
2021-03-25 21:32 Sam James
2021-03-25 21:29 Sam James
2021-03-12 22:51 Andreas K. Hüttel
2021-02-28 20:58 Andreas K. Hüttel
2021-01-20  9:29 Sam James
2021-01-20  0:33 Sam James
2020-10-16 17:37 Andreas K. Hüttel
2020-07-10 12:09 Sam James
2020-05-20 22:25 Georgy Yakovlev
2020-05-20 22:25 Georgy Yakovlev
2020-01-28  5:01 Andreas K. Hüttel
2020-01-26 20:55 Thomas Deutschmann
2020-01-24 15:57 Agostino Sarubbo
2019-09-07 20:59 Andreas K. Hüttel
2019-05-29 10:03 Michał Górny
2018-06-30 17:34 Tim Harder
2018-06-10 19:42 Aaron Bauman
2018-06-10 18:46 Thomas Deutschmann
2017-10-13  9:14 Andreas Hüttel
2017-10-13  9:14 Andreas Hüttel
2017-10-11 16:55 Tim Harder
2017-08-27  3:52 Tim Harder
2017-08-27  3:52 Tim Harder
2016-12-18 15:57 Agostino Sarubbo
2016-12-18 15:44 Agostino Sarubbo
2016-01-10 20:43 Patrice Clement
2015-11-11  9:12 Agostino Sarubbo
2015-11-09 10:31 Agostino Sarubbo
2015-10-03  7:58 Markus Meier
2015-08-27  8:07 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=1623050035.953ae581d25b29bc8fbf8f7c8c1139f67a74ceef.sam@gentoo \
    --to=sam@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