From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C4294158042 for ; Thu, 17 Oct 2024 22:58:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DCC68E0973; Thu, 17 Oct 2024 22:58:15 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C770EE0973 for ; Thu, 17 Oct 2024 22:58:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D38ED343093 for ; Thu, 17 Oct 2024 22:58:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E85ABEA0 for ; Thu, 17 Oct 2024 22:58:12 +0000 (UTC) From: "Yixun Lan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Yixun Lan" Message-ID: <1729205474.2a874c28215bcd0a0ae9178fc0d3e34fe927e282.dlan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/isync/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-mail/isync/isync-1.4.4.ebuild X-VCS-Directories: net-mail/isync/ X-VCS-Committer: dlan X-VCS-Committer-Name: Yixun Lan X-VCS-Revision: 2a874c28215bcd0a0ae9178fc0d3e34fe927e282 X-VCS-Branch: master Date: Thu, 17 Oct 2024 22:58:12 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 5b32b796-761d-4aee-a228-0cc980db19a4 X-Archives-Hash: 0471bdf0c9aa74c83b2cbf280f5b2709 commit: 2a874c28215bcd0a0ae9178fc0d3e34fe927e282 Author: Allen-Kristjan Päll fst ee> AuthorDate: Wed Sep 18 20:24:46 2024 +0000 Commit: Yixun Lan gentoo org> CommitDate: Thu Oct 17 22:51:14 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a874c28 net-mail/isync: drop 1.4.4 Signed-off-by: Allen-Kristjan Päll fst.ee> Signed-off-by: Yixun Lan gentoo.org> net-mail/isync/isync-1.4.4.ebuild | 44 --------------------------------------- 1 file changed, 44 deletions(-) diff --git a/net-mail/isync/isync-1.4.4.ebuild b/net-mail/isync/isync-1.4.4.ebuild deleted file mode 100644 index 77a6d8a72fc6..000000000000 --- a/net-mail/isync/isync-1.4.4.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="MailDir mailbox synchronizer" -HOMEPAGE="https://isync.sourceforge.io/" -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="https://downloads.sourceforge.net/${PN}/${PN}/${PV}/${P}.tar.gz" - KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 ~riscv x86" -fi - -IUSE="berkdb sasl ssl zlib" - -RDEPEND=" - berkdb? ( >=sys-libs/db-4.2:= ) - sasl? ( dev-libs/cyrus-sasl ) - ssl? ( >=dev-libs/openssl-0.9.6:0= ) - zlib? ( sys-libs/zlib:0= ) - !sci-chemistry/mdtraj -" -DEPEND=${RDEPEND} -BDEPEND=" - dev-lang/perl -" - -src_prepare() { - default - [[ ${PV} == 9999 ]] && eautoreconf -} - -src_configure() { - use berkdb || export ac_cv_berkdb4=no - econf \ - $(use_with ssl) \ - $(use_with sasl) \ - $(use_with zlib) -}