forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
net-mail/isync: version bump to 1.2.2
- Loading branch information
Showing
2 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
DIST isync-1.0.6.tar.gz 188572 SHA256 e543767a5e36574256e8c25ba43acd6666df060fdf5f6a7029b127560d87632f SHA512 d22d45445396742f34b249837f46e61caa6d55933b0dd1ae74272d6baea5cce520adaed59ed3b34be5ca43b8793e0002b8db43b64cf47698abca1194db4da5d3 WHIRLPOOL a3533275f5fb2b1a16ccc8929d505f1a93b0884629d8b9653b5b486564986779e811b641399aca4c0144ff247dfef9039ce02f660051fbaac571ccbca488d7f9 | ||
DIST isync-1.2.0.tar.gz 278536 SHA256 833878de1647d403cb56984757cc416094ee037c5388a0f1d1f74084f6e60e59 SHA512 5e31220138df61ecb6694082d39af0450b03d7dcebc4052489742bebb0436b8361d7ea6d85490450b99959b4b1e9faa76bffa8b403178e18f732ff8f179ff56e WHIRLPOOL 39940471ec0ad1d6297c0042362891aaf88485169671ad0802dedbd810c591d433e1ebd4230a992a7419ad64b47e1a4c4ef776a52c77b83952900ee185505944 | ||
DIST isync-1.2.1.tar.gz 281990 SHA256 e716de28c9a08e624a035caae3902fcf3b511553be5d61517a133e03aa3532ae SHA512 706379e602cdcef3a1ca7eaf2301cfea15b9bbb5ee46c8f598308ad68a48725c6a4d13a2e73cc4633efec34fda1dbcb89bdd0e4c2e06993fa24db69cce9ff50b WHIRLPOOL 16f68d7cd7f97f157035005e3fc369d0fec0fc4cdbb28a6eec63137911235292b3f77b57fd0831f0144fecfc4e61657c8f251e70c1df4ab387dea1f05bef4cbd | ||
DIST isync-1.2.2.tar.gz 285745 SHA256 d9197e27bfe77e3d8971f4fcb25ec37b2506827c4bc9439b72376caa091ce877 SHA512 246dcf0704c0afaad7c402a5fc304ccfd533dc084cd775df4d8d2cb53e69f5236a603d56a54f63b389049a556e23c0dfafb80a4ba929e1b4cffb90200eaf65d6 WHIRLPOOL 2fe3864bbffc2191622395ac1ae1d54493e45e6c5220913fdb70d2cf6fb0dc0961afa32c00fb41f74c682f5525e0209cb011c64c0e68e315a33b2e419b1515ef |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
DESCRIPTION="MailDir mailbox synchronizer" | ||
HOMEPAGE="http://isync.sourceforge.net/" | ||
SRC_URI="mirror://sourceforge/${PN}/${PN}/${PV}/${P}.tar.gz" | ||
|
||
LICENSE="GPL-2" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~arm ~ppc ~x86" | ||
IUSE="compat sasl libressl ssl zlib" | ||
|
||
DEPEND=">=sys-libs/db-4.2:* | ||
zlib? ( sys-libs/zlib ) | ||
sasl? ( dev-libs/cyrus-sasl ) | ||
ssl? ( | ||
!libressl? ( >=dev-libs/openssl-0.9.6:* ) | ||
libressl? ( dev-libs/libressl ) | ||
)" | ||
RDEPEND="${DEPEND}" | ||
|
||
src_configure() { | ||
econf \ | ||
--docdir="/usr/share/doc/${PF}" \ | ||
$(use_with ssl) \ | ||
$(use_with sasl) \ | ||
$(use_with zlib) \ | ||
$(use_enable compat) | ||
} |